Posts by Arthur Menezes • 2,210 points
58 posts
-
5
votes1
answer187
viewsA: Button is triggered even disabled, what to do?
You need to disable Onclientclick also in the same place where you place Enabled = false. if (lkExcluir.OnClientClick != null) { lkExcluir.OnClientClick = null; }
-
1
votes1
answer63
viewsA: Calling a page with Redirect is giving error
Request.Redirect(url, false); Use false in endResponse parameter!
c#answered Arthur Menezes 2,210 -
3
votes1
answer2554
viewsA: How to change column header for a gridview
gridView.Columns[0].HeaderText = "Nome da Coluna";
-
1
votes1
answer1009
viewsQ: How to make an x64 application connect to a 32bit ODBC driver?
I have an x64 application written in C# with .Net Framework 4 you need to connect to the Microsoft ODBC for Oracle driver. When using this driver with the application in x86 mode, this connection…
-
1
votes1
answer236
viewsA: Compare Crystal report text
1:Right click on the column and go to "Format Object" 2:Frame Tab Frame 3:Color section, where has the Background option, click the button next Formula 4:Use the following formula below: If…
c#answered Arthur Menezes 2,210 -
2
votes2
answers2337
viewsA: How to make "Replace" replace all occurrences of a word without taking uppercase or lowercase?
Use like this: str = Regex.Replace(str, "l", "EL", RegexOptions.IgnoreCase);
-
6
votes1
answer5859
viewsQ: Windows Service - ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
I have 2 projects (Webforms and Windows Services) in . Netframework 4 that connects to Oracle base via Obdcconnection. In the Web project I can successfully open the connection... But in Windows…
-
1
votes2
answers3813
viewsA: How to change the border color of a Groupbox
Create the event below... private void groupBox1_Paint(object sender, PaintEventArgs e) { GroupBox box = sender as GroupBox; DrawGroupBox(box, e.Graphics, Color.Red, Color.Blue, Collor.Yellow); }…