Click here to Skip to main content
15,893,722 members
Home / Discussions / C#
   

C#

 
QuestionColoring ProgressBar Pin
eyalbi00716-Mar-09 3:01
eyalbi00716-Mar-09 3:01 
AnswerRe: Coloring ProgressBar Pin
harold aptroot16-Mar-09 3:11
harold aptroot16-Mar-09 3:11 
GeneralRe: Coloring ProgressBar Pin
musefan16-Mar-09 3:17
musefan16-Mar-09 3:17 
GeneralRe: Coloring ProgressBar Pin
eyalbi00716-Mar-09 3:35
eyalbi00716-Mar-09 3:35 
GeneralRe: Coloring ProgressBar Pin
harold aptroot16-Mar-09 3:40
harold aptroot16-Mar-09 3:40 
GeneralRe: Coloring ProgressBar Pin
eyalbi00716-Mar-09 3:55
eyalbi00716-Mar-09 3:55 
GeneralRe: Coloring ProgressBar Pin
harold aptroot16-Mar-09 3:57
harold aptroot16-Mar-09 3:57 
GeneralRe: Coloring ProgressBar Pin
eyalbi00716-Mar-09 4:48
eyalbi00716-Mar-09 4:48 
GeneralRe: Coloring ProgressBar Pin
harold aptroot16-Mar-09 4:53
harold aptroot16-Mar-09 4:53 
AnswerRe: Coloring ProgressBar Pin
musefan16-Mar-09 3:12
musefan16-Mar-09 3:12 
Answeris not working Pin
Luc Pattyn16-Mar-09 4:19
sitebuilderLuc Pattyn16-Mar-09 4:19 
QuestionAssign Color to text in Rich Textbox Pin
Sajjad Leo16-Mar-09 1:58
Sajjad Leo16-Mar-09 1:58 
AnswerRe: Assign Color to text in Rich Textbox Pin
Blue_Boy16-Mar-09 2:08
Blue_Boy16-Mar-09 2:08 
AnswerRe: Assign Color to text in Rich Textbox Pin
AB777116-Mar-09 2:10
AB777116-Mar-09 2:10 
Questionhow to Merge two datatables in a dataset Pin
Nitin K16-Mar-09 1:40
Nitin K16-Mar-09 1:40 
AnswerRe: how to Merge two datatables in a dataset Pin
Russell Jones16-Mar-09 1:42
Russell Jones16-Mar-09 1:42 
GeneralRe: how to Merge two datatables in a dataset Pin
Nitin K16-Mar-09 1:51
Nitin K16-Mar-09 1:51 
GeneralRe: how to Merge two datatables in a dataset Pin
Russell Jones16-Mar-09 1:56
Russell Jones16-Mar-09 1:56 
QuestionAny idea why this error appears (SEH Exception) Pin
Matjaz-xyz16-Mar-09 1:31
Matjaz-xyz16-Mar-09 1:31 
I get http://www.postimage.org/image.php?v=Pq1N1qmr[^] <- this error on one of the computers.

Dont know why.

this is the code:

try
            {
                label12.ForeColor = Color.Black;
                string dbConnComm = "INSERT INTO Vnosi ([Dostava],[Skatla],[Barkoda],[Oznaka],[Skener],[Operater],[Datum],[PosnetkiV3],[PosnetkiM3],[Opombe]) VALUES ("
                + cmbDostava.Text + ", "
                + cmbSkatla.Text + ", '"
                + cmbBarkoda.Text + "', '"
                + cmbEnota.Text + "', '"
                + cmbSkener.Text + "', '"
                + cmbOperater.Text + "', '"
                + cmbDatum.Text + "', "
                + txtVA3.Text + ", "
                + txtMA3.Text + ", '"
                + txtOpombe.Text + "')";


                SqlConnection dbConn = new SqlConnection(sqlConnection);
                dbConn.Open();

                SqlCommand dbComm = new SqlCommand(dbConnComm, dbConn);
                dbComm.ExecuteNonQuery();
                dbConn.Close();
                label12.Text = "Uspešno vnešeno";
            }
            catch(Exception ex)
            {
                label12.ForeColor = Color.Red;
                label12.Text = "Napaka pri vnosu";

                MessageBox.Show("Napaka: " + ex.ToString());
            }


PC has framework 2.0 and 1.1
AnswerRe: Any idea why this error appears (SEH Exception) Pin
Michael Bookatz16-Mar-09 1:38
Michael Bookatz16-Mar-09 1:38 
AnswerRe: Any idea why this error appears (SEH Exception) Pin
Giorgi Dalakishvili16-Mar-09 2:29
mentorGiorgi Dalakishvili16-Mar-09 2:29 
GeneralRe: Any idea why this error appears (SEH Exception) Pin
Matjaz-xyz17-Mar-09 3:35
Matjaz-xyz17-Mar-09 3:35 
QuestionApplication.Idle Event Pin
saksp16-Mar-09 0:02
saksp16-Mar-09 0:02 
AnswerRe: Application.Idle Event Pin
DaveyM6916-Mar-09 0:20
professionalDaveyM6916-Mar-09 0:20 
AnswerRe: Application.Idle Event Pin
#realJSOP16-Mar-09 2:34
mve#realJSOP16-Mar-09 2:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.