Click here to Skip to main content
15,914,500 members
Home / Discussions / C#
   

C#

 
AnswerRe: How can I access IVT using C# ? Pin
leppie19-Feb-06 23:38
leppie19-Feb-06 23:38 
AnswerRe: How can I access IVT using C# ? Pin
Super Lloyd20-Feb-06 0:17
Super Lloyd20-Feb-06 0:17 
AnswerRe: How can I access IVT using C# ? Pin
Dave Kreskowiak20-Feb-06 9:32
mveDave Kreskowiak20-Feb-06 9:32 
GeneralRe: How can I access IVT using C# ? Pin
Jijo BP21-Feb-06 3:07
Jijo BP21-Feb-06 3:07 
GeneralRe: How can I access IVT using C# ? Pin
Dave Kreskowiak21-Feb-06 13:27
mveDave Kreskowiak21-Feb-06 13:27 
Questionproperty builder Pin
Rmokkenstorm19-Feb-06 21:14
Rmokkenstorm19-Feb-06 21:14 
QuestionDatabase search Pin
Rmokkenstorm19-Feb-06 21:11
Rmokkenstorm19-Feb-06 21:11 
AnswerRe: Database search Pin
gnjunge19-Feb-06 22:50
gnjunge19-Feb-06 22:50 
Start using if statements to check which parameters to use in your SELECT query.

something like:
StringBuilder sb = new StringBuilder();
sb.Append ("SELECT colom1, colum2, colom3, colom4, colom5 FROM Tabel1 ");
sb.Append ("WHERE ");
if (param2 != string.Empty)
   sb.Append("(Colom1 = :param2)");
if (param3 != string.Empty)
   sb.Append("(Colom2 = :param3)");
if (param4 != string.Empty)
   sb.Append("(Colom3 = :param4)");


or if this is in a stored procedure, make IF statements in your stored procedure.
Questionremoting in c#.net Pin
karunakerreddy19-Feb-06 20:57
karunakerreddy19-Feb-06 20:57 
Questioncan i bring external applications into a .net application Pin
jith - iii19-Feb-06 20:56
jith - iii19-Feb-06 20:56 
AnswerRe: can i bring external applications into a .net application Pin
Neel0719-Feb-06 23:31
Neel0719-Feb-06 23:31 
GeneralRe: can i bring external applications into a .net application Pin
jith - iii20-Feb-06 1:08
jith - iii20-Feb-06 1:08 
QuestionC# Error Pin
JacquesDP19-Feb-06 20:51
JacquesDP19-Feb-06 20:51 
AnswerRe: C# Error Pin
Stefan Troschuetz19-Feb-06 21:36
Stefan Troschuetz19-Feb-06 21:36 
GeneralRe: C# Error Pin
JacquesDP19-Feb-06 21:48
JacquesDP19-Feb-06 21:48 
Questionchange a user's group or account type in c# Pin
am2h19-Feb-06 20:26
am2h19-Feb-06 20:26 
QuestionHow to hide Windows Console Application? Pin
pubududilena19-Feb-06 20:23
pubududilena19-Feb-06 20:23 
AnswerRe: How to hide Windows Console Application? Pin
J. Dunlap19-Feb-06 20:30
J. Dunlap19-Feb-06 20:30 
QuestionFTP Client woes Pin
User 137680019-Feb-06 20:15
User 137680019-Feb-06 20:15 
QuestionUsing Multiple constructors in base and sub class Pin
miftha19-Feb-06 18:17
miftha19-Feb-06 18:17 
GeneralRe: Using Multiple constructors in base and sub class Pin
Guffa19-Feb-06 18:54
Guffa19-Feb-06 18:54 
AnswerRe: Using Multiple constructors in base and sub class Pin
J4amieC19-Feb-06 21:35
J4amieC19-Feb-06 21:35 
AnswerRe: Using Multiple constructors in base and sub class Pin
Guffa19-Feb-06 22:01
Guffa19-Feb-06 22:01 
QuestionColumn Sequence changes when binding Arraylist of Structs to Datagrid Pin
Adarsh Shah19-Feb-06 17:33
Adarsh Shah19-Feb-06 17:33 
QuestionPainting controls... Pin
Kasic Slobodan19-Feb-06 17:24
Kasic Slobodan19-Feb-06 17:24 

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.