Click here to Skip to main content
15,908,931 members
Home / Discussions / C#
   

C#

 
GeneralRe: controlling the AND gate with c# Pin
PIEBALDconsult7-May-11 19:35
mvePIEBALDconsult7-May-11 19:35 
GeneralRe: controlling the AND gate with c# Pin
shivamkalra7-May-11 7:13
shivamkalra7-May-11 7:13 
GeneralRe: controlling the AND gate with c# Pin
Luc Pattyn7-May-11 4:27
sitebuilderLuc Pattyn7-May-11 4:27 
GeneralRe: controlling the AND gate with c# Pin
PIEBALDconsult7-May-11 4:56
mvePIEBALDconsult7-May-11 4:56 
GeneralRe: controlling the AND gate with c# Pin
shivamkalra7-May-11 7:14
shivamkalra7-May-11 7:14 
QuestionGet name of system folder [using C#] Pin
shivamkalra6-May-11 18:51
shivamkalra6-May-11 18:51 
AnswerRe: Get name of system folder [using C#] Pin
Luc Pattyn6-May-11 19:07
sitebuilderLuc Pattyn6-May-11 19:07 
GeneralRe: Get name of system folder [using C#] Pin
DaveAuld6-May-11 21:00
professionalDaveAuld6-May-11 21:00 
GeneralRe: Get name of system folder [using C#] Pin
DaveyM696-May-11 21:07
professionalDaveyM696-May-11 21:07 
GeneralRe: Get name of system folder [using C#] Pin
DaveAuld6-May-11 21:10
professionalDaveAuld6-May-11 21:10 
GeneralRe: Get name of system folder [using C#] Pin
DaveyM696-May-11 21:27
professionalDaveyM696-May-11 21:27 
GeneralRe: Get name of system folder [using C#] Pin
shivamkalra7-May-11 5:22
shivamkalra7-May-11 5:22 
GeneralRe: Get name of system folder [using C#] Pin
Luc Pattyn7-May-11 5:30
sitebuilderLuc Pattyn7-May-11 5:30 
GeneralRe: Get name of system folder [using C#] Pin
shivamkalra7-May-11 6:20
shivamkalra7-May-11 6:20 
AnswerRe: Get name of system folder [using C#] Pin
Luc Pattyn7-May-11 6:45
sitebuilderLuc Pattyn7-May-11 6:45 
GeneralRe: Get name of system folder [using C#] Pin
shivamkalra7-May-11 6:58
shivamkalra7-May-11 6:58 
GeneralRe: Get name of system folder [using C#] Pin
Luc Pattyn7-May-11 7:10
sitebuilderLuc Pattyn7-May-11 7:10 
GeneralRe: Get name of system folder [using C#] Pin
shivamkalra7-May-11 17:30
shivamkalra7-May-11 17:30 
AnswerRe: Get name of system folder [using C#] Pin
DaveyM696-May-11 20:52
professionalDaveyM696-May-11 20:52 
AnswerRe: Get name of system folder [using C#] Pin
DaveyM696-May-11 21:25
professionalDaveyM696-May-11 21:25 
QuestionCan't publish a project even though no build errors Pin
Nathan D Cook6-May-11 9:31
Nathan D Cook6-May-11 9:31 
AnswerRe: Can't publish a project even though no build errors Pin
AspDotNetDev6-May-11 9:39
protectorAspDotNetDev6-May-11 9:39 
Questionpass a Size object to sendmessage Pin
manchukuo6-May-11 7:37
manchukuo6-May-11 7:37 
AnswerRe: pass a Size object to sendmessage Pin
DaveyM696-May-11 8:05
professionalDaveyM696-May-11 8:05 
GeneralRe: pass a Size object to sendmessage Pin
manchukuo6-May-11 8:12
manchukuo6-May-11 8:12 
ok i change from this

[DllImport("user32.dll")]
public static extern int SendMessage(
IntPtr hWnd,
int Msg,
int wParam,
int lParam);

to this

[DllImport("user32.dll")]
public static extern int SendMessage(
IntPtr hWnd,
int Msg,
IntPtr wParam,
IntPtr lParam);

but now i am getting errors in wparam where i am passing a int, how can i pass the int now and about the part to declare as ref Size i can't because i might use another type in there in the future

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.