Click here to Skip to main content
15,898,611 members
Home / Discussions / C#
   

C#

 
GeneralRe: Pop up menu in combobox Pin
Paul Conrad19-Jul-06 20:31
professionalPaul Conrad19-Jul-06 20:31 
GeneralRe: Pop up menu in combobox Pin
Rahul.RK19-Jul-06 20:35
Rahul.RK19-Jul-06 20:35 
GeneralRe: Pop up menu in combobox Pin
Paul Conrad19-Jul-06 20:43
professionalPaul Conrad19-Jul-06 20:43 
GeneralRe: Pop up menu in combobox Pin
AnnnS19-Jul-06 20:50
AnnnS19-Jul-06 20:50 
GeneralRe: Pop up menu in combobox Pin
Paul Conrad19-Jul-06 20:52
professionalPaul Conrad19-Jul-06 20:52 
QuestionVScrollbar within a Panel Pin
John Harrison Paul19-Jul-06 18:21
John Harrison Paul19-Jul-06 18:21 
QuestionCheck to see if table exists Pin
Saamir19-Jul-06 16:07
Saamir19-Jul-06 16:07 
AnswerRe: Check to see if table exists Pin
Stathread19-Jul-06 18:13
Stathread19-Jul-06 18:13 
an easy way would be to use a try and catch and create the table. SQL wont overwrite the table thus if it exist your program will throw the exception which will be caught. Or you could use the following T-SQL

IF (SELECT count(name) FROM sysobjects WHERE type = 'U' and name = 'yourtable') > 0
BEGIN
Print 'Table Exists!!'
END
else Print 'Table Does not Exist!!'
QuestionRe: Check to see if table exists Pin
Saamir20-Jul-06 2:58
Saamir20-Jul-06 2:58 
AnswerRe: Check to see if table exists Pin
Stathread20-Jul-06 16:03
Stathread20-Jul-06 16:03 
GeneralRe: Check to see if table exists Pin
Stathread20-Jul-06 16:07
Stathread20-Jul-06 16:07 
QuestionRestoring control's default properties Pin
xkx3219-Jul-06 15:58
xkx3219-Jul-06 15:58 
AnswerRe: Restoring control's default properties Pin
Super Lloyd19-Jul-06 17:15
Super Lloyd19-Jul-06 17:15 
QuestionGetting HTML source displaying [modified] Pin
James Dufty19-Jul-06 15:38
James Dufty19-Jul-06 15:38 
AnswerRe: Getting HTML source displaying Pin
Stefan Troschuetz19-Jul-06 21:30
Stefan Troschuetz19-Jul-06 21:30 
AnswerRe: Getting HTML source displaying [modified] Pin
Gavin Roberts20-Jul-06 0:23
Gavin Roberts20-Jul-06 0:23 
GeneralRe: Getting HTML source displaying Pin
James Dufty20-Jul-06 15:35
James Dufty20-Jul-06 15:35 
Questionpassing data to a textbox on a form using a method in a class Pin
haz1319-Jul-06 13:32
haz1319-Jul-06 13:32 
AnswerROTFLMAO Pin
Ennis Ray Lynch, Jr.19-Jul-06 13:57
Ennis Ray Lynch, Jr.19-Jul-06 13:57 
QuestionRe: ROTFLMAO Pin
haz1319-Jul-06 14:28
haz1319-Jul-06 14:28 
AnswerRe: ROTFLMAO Pin
Ennis Ray Lynch, Jr.19-Jul-06 14:40
Ennis Ray Lynch, Jr.19-Jul-06 14:40 
AnswerRe: passing data to a textbox on a form using a method in a class Pin
Christian Graus19-Jul-06 19:16
protectorChristian Graus19-Jul-06 19:16 
GeneralRe: passing data to a textbox on a form using a method in a class Pin
AB777119-Jul-06 19:36
AB777119-Jul-06 19:36 
QuestionRe: passing data to a textbox on a form using a method in a class Pin
haz1322-Jul-06 3:05
haz1322-Jul-06 3:05 
GeneralRe: passing data to a textbox on a form using a method in a class Pin
haz1322-Jul-06 5:27
haz1322-Jul-06 5:27 

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.