Click here to Skip to main content
15,888,454 members
Home / Discussions / C#
   

C#

 
GeneralRe: Just for fun - what's the output of this? Pin
MNantu8-Apr-09 6:15
MNantu8-Apr-09 6:15 
QuestionSelected row in data grid Pin
mrkeivan8-Apr-09 5:08
mrkeivan8-Apr-09 5:08 
AnswerRe: Selected row in data grid Pin
he.david88-Apr-09 6:09
he.david88-Apr-09 6:09 
AnswerRe: Selected row in data grid Pin
Henry Minute8-Apr-09 11:07
Henry Minute8-Apr-09 11:07 
AnswerFound it ! Pin
mrkeivan9-Apr-09 7:28
mrkeivan9-Apr-09 7:28 
QuestionHow to check if a file is encrypted Pin
Russell Napier8-Apr-09 4:49
Russell Napier8-Apr-09 4:49 
AnswerRe: How to check if a file is encrypted Pin
Xmen Real 8-Apr-09 5:01
professional Xmen Real 8-Apr-09 5:01 
AnswerRe: How to check if a file is encrypted Pin
0x3c08-Apr-09 5:02
0x3c08-Apr-09 5:02 
GeneralRe: How to check if a file is encrypted Pin
Russell Napier8-Apr-09 5:10
Russell Napier8-Apr-09 5:10 
GeneralRe: How to check if a file is encrypted Pin
Dan Neely8-Apr-09 5:50
Dan Neely8-Apr-09 5:50 
GeneralRe: How to check if a file is encrypted Pin
Le centriste8-Apr-09 5:55
Le centriste8-Apr-09 5:55 
AnswerRe: How to check if a file is encrypted Pin
Luc Pattyn8-Apr-09 5:15
sitebuilderLuc Pattyn8-Apr-09 5:15 
GeneralRe: How to check if a file is encrypted Pin
Russell Napier8-Apr-09 5:19
Russell Napier8-Apr-09 5:19 
GeneralRe: How to check if a file is encrypted Pin
Luc Pattyn8-Apr-09 5:32
sitebuilderLuc Pattyn8-Apr-09 5:32 
AnswerRe: How to check if a file is encrypted Pin
Dave Kreskowiak8-Apr-09 5:23
mveDave Kreskowiak8-Apr-09 5:23 
GeneralRe: How to check if a file is encrypted Pin
Russell Napier8-Apr-09 5:26
Russell Napier8-Apr-09 5:26 
GeneralRe: How to check if a file is encrypted Pin
Luc Pattyn8-Apr-09 5:33
sitebuilderLuc Pattyn8-Apr-09 5:33 
GeneralRe: How to check if a file is encrypted Pin
Russell Napier8-Apr-09 5:36
Russell Napier8-Apr-09 5:36 
GeneralRe: How to check if a file is encrypted Pin
Dan Neely8-Apr-09 5:52
Dan Neely8-Apr-09 5:52 
QuestionPicture compression Pin
yasa8-Apr-09 4:33
yasa8-Apr-09 4:33 
AnswerRe: Picture compression Pin
Luc Pattyn8-Apr-09 5:29
sitebuilderLuc Pattyn8-Apr-09 5:29 
QuestionClient Server Pin
mrithula88-Apr-09 4:23
mrithula88-Apr-09 4:23 
QuestionProblem with SQL-Server Date Query Pin
der.flori8-Apr-09 4:08
der.flori8-Apr-09 4:08 
AnswerRe: Problem with SQL-Server Date Query Pin
Dino Mulahusic8-Apr-09 4:12
professionalDino Mulahusic8-Apr-09 4:12 
How are your dates stored?
If they are stored with time (3/3/2009 11:12:13) then you wont get any results.

try entering your query in sql server and see what you get

you can also try something like this

string str_Verlaufdate = "'" + p.Verlauf_date.Month + "/" + p.Verlauf_date.Day + "/" + p.Verlauf_date.Year + "%'";

DataRow[] dr2 = this.dataNet.Tables["Verlauf"].Select("BehID = '"+v[0].ToString()+"' and Date LIKE "+str_Verlaufdate);

GeneralRe: Problem with SQL-Server Date Query Pin
der.flori8-Apr-09 4:21
der.flori8-Apr-09 4:21 

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.