Click here to Skip to main content
16,006,845 members
Home / Discussions / C#
   

C#

 
QuestionMdi Child Which Cant Be Dragged Pin
sindhutiwari26-Oct-07 22:25
sindhutiwari26-Oct-07 22:25 
AnswerRe: Mdi Child Which Cant Be Dragged Pin
kornyjohn29-Oct-07 4:42
kornyjohn29-Oct-07 4:42 
Questioncan we deploy console .net application inside IIS? Pin
dhami_naresh26-Oct-07 22:02
dhami_naresh26-Oct-07 22:02 
AnswerRe: can we deploy console .net application inside IIS? Pin
N a v a n e e t h26-Oct-07 22:34
N a v a n e e t h26-Oct-07 22:34 
GeneralRe: can we deploy console .net application inside IIS? Pin
dhami_naresh27-Oct-07 7:56
dhami_naresh27-Oct-07 7:56 
GeneralRe: can we deploy console .net application inside IIS? Pin
dhami_naresh27-Oct-07 7:59
dhami_naresh27-Oct-07 7:59 
QuestionConvert vb code to c# Pin
tahir_makhdoom26-Oct-07 21:53
tahir_makhdoom26-Oct-07 21:53 
AnswerRe: Convert vb code to c# Pin
N a v a n e e t h26-Oct-07 22:01
N a v a n e e t h26-Oct-07 22:01 
tahir_makhdoom wrote:
public Sub EnableStartMenuButton(byval bEnable as Boolean)
'
' Don't forget to re-enable it !
'
Dim lHwnd as Long
'
lHwnd = FindWindowEx(0&, 0&, "Shell_TrayWnd", vbNullString)
lHwnd = FindWindowEx(lHwnd, 0&, "Button", vbNullString)
Call EnableWindow(lHwnd, bEnable)
'
End Sub


public void EnableStartMenuButton(bool bEnable)
{
     //
     // Don't forget to re-enable it !
     //
     long lHwnd;
     //
     lHwnd = FindWindowEx(0l, 0l, "Shell_TrayWnd", Constants.vbNullString);
     lHwnd = FindWindowEx(lHwnd, 0l, "Button", Constants.vbNullString);
     EnableWindow(lHwnd, bEnable);
     //
}

Converted using http://labs.developerfusion.co.uk/convert/vb-to-csharp.aspx[^]


GeneralRe: Convert vb code to c# Pin
tahir_makhdoom27-Oct-07 0:48
tahir_makhdoom27-Oct-07 0:48 
GeneralRe: Convert vb code to c# Pin
mav.northwind27-Oct-07 1:20
mav.northwind27-Oct-07 1:20 
GeneralRe: Convert vb code to c# Pin
tahir_makhdoom27-Oct-07 1:29
tahir_makhdoom27-Oct-07 1:29 
GeneralRe: Convert vb code to c# Pin
karthick.n.mca27-Oct-07 2:23
karthick.n.mca27-Oct-07 2:23 
AnswerRe: Convert vb code to c# Pin
Paul Conrad27-Oct-07 12:19
professionalPaul Conrad27-Oct-07 12:19 
Question*** Problem in Accesing Webservice through Pakcet PC appli**** Pin
D.Madhav26-Oct-07 21:22
D.Madhav26-Oct-07 21:22 
QuestionEnding an Asynchronous call Pin
zafersavas26-Oct-07 21:04
zafersavas26-Oct-07 21:04 
AnswerRe: Ending an Asynchronous call Pin
TJoe27-Oct-07 13:44
TJoe27-Oct-07 13:44 
QuestionSending httpRequest from windows application and receiving httpResponse Pin
D i x y26-Oct-07 19:20
D i x y26-Oct-07 19:20 
AnswerRe: Sending httpRequest from windows application and receiving httpResponse Pin
N a v a n e e t h26-Oct-07 21:32
N a v a n e e t h26-Oct-07 21:32 
QuestionBetter way for Detacting Mouse Movement Pin
Brad Wick26-Oct-07 18:20
Brad Wick26-Oct-07 18:20 
AnswerRe: Better way for Detacting Mouse Movement Pin
mav.northwind26-Oct-07 22:28
mav.northwind26-Oct-07 22:28 
GeneralRe: Better way for Detacting Mouse Movement Pin
Brad Wick27-Oct-07 4:31
Brad Wick27-Oct-07 4:31 
GeneralRe: Better way for Detacting Mouse Movement Pin
mav.northwind27-Oct-07 21:42
mav.northwind27-Oct-07 21:42 
QuestionTo restrict start Menu Pin
tahir_makhdoom26-Oct-07 17:24
tahir_makhdoom26-Oct-07 17:24 
AnswerRe: To restrict start Menu Pin
Arindam Tewary27-Oct-07 0:42
professionalArindam Tewary27-Oct-07 0:42 
GeneralRe: To restrict start Menu Pin
tahir_makhdoom27-Oct-07 0:59
tahir_makhdoom27-Oct-07 0:59 

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.