Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
AnswerRe: Flash swfs in c#? Pin
Meysam Mahfouzi3-Feb-04 17:07
Meysam Mahfouzi3-Feb-04 17:07 
GeneralRe: Flash swfs in c#? Pin
krishna_goluguri8-Jul-10 0:16
krishna_goluguri8-Jul-10 0:16 
Questiondate format converter? Pin
visiontec3-Feb-04 11:58
visiontec3-Feb-04 11:58 
AnswerRe: date format converter? Pin
Dmitriy Kostovetskiy3-Feb-04 15:59
Dmitriy Kostovetskiy3-Feb-04 15:59 
AnswerRe: date format converter? Pin
Heath Stewart3-Feb-04 20:07
protectorHeath Stewart3-Feb-04 20:07 
GeneralHide Start Button Pin
johnstacey3-Feb-04 11:53
johnstacey3-Feb-04 11:53 
GeneralRe: Hide Start Button Pin
Heath Stewart3-Feb-04 19:58
protectorHeath Stewart3-Feb-04 19:58 
GeneralRe: Hide Start Button Pin
johnstacey4-Feb-04 4:59
johnstacey4-Feb-04 4:59 
Hi,
thanks for the reply. But I have found the following VB code to do the job. It just hides the Start Button (true/false values passed). It doesnt disable it as you can still press the windows button on the keyboard, but thats not a problem. Is there anyone who knows how to implement this code is C#, or can I place it in the C# project as is an call it someway??

#####################################
'
' Paste this into a Code Mode (BAS)
'
option Explicit
'
private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (byval hWnd1 as Long, byval hWnd2 as Long, byval lpsz1 as string, byval lpsz2 as string) as Long
'
private Declare Function EnableWindow Lib "user32" (byval hwnd as Long, byval fEnable as Long) as Long

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
'
#####################################

Thanks Again,

John
GeneralRe: Hide Start Button Pin
Heath Stewart4-Feb-04 5:04
protectorHeath Stewart4-Feb-04 5:04 
Questionstatus bar from child forms? Pin
visiontec3-Feb-04 11:44
visiontec3-Feb-04 11:44 
AnswerRe: status bar from child forms? Pin
Heath Stewart3-Feb-04 20:02
protectorHeath Stewart3-Feb-04 20:02 
GeneralC# Pipes Pin
Anonymous3-Feb-04 9:42
Anonymous3-Feb-04 9:42 
GeneralRe: C# Pipes Pin
occcy4-Feb-04 0:18
occcy4-Feb-04 0:18 
GeneralRe: C# Pipes Pin
ronboy4-Feb-04 3:32
ronboy4-Feb-04 3:32 
GeneralRe: C# Pipes Pin
ronboy5-Feb-04 2:27
ronboy5-Feb-04 2:27 
GeneralEncrypting data not files... Pin
Manster3-Feb-04 6:07
Manster3-Feb-04 6:07 
GeneralRe: Encrypting data not files... Pin
Heath Stewart3-Feb-04 6:13
protectorHeath Stewart3-Feb-04 6:13 
QuestionNet framework needed?? Pin
Anonymous3-Feb-04 5:46
Anonymous3-Feb-04 5:46 
AnswerRe: Net framework needed?? Pin
Heath Stewart3-Feb-04 6:06
protectorHeath Stewart3-Feb-04 6:06 
AnswerRe: Net framework needed?? Pin
Judah Gabriel Himango3-Feb-04 6:08
sponsorJudah Gabriel Himango3-Feb-04 6:08 
GeneralRe: Net framework needed?? Pin
Anonymous3-Feb-04 6:43
Anonymous3-Feb-04 6:43 
GeneralRe: Net framework needed?? Pin
Heath Stewart3-Feb-04 8:55
protectorHeath Stewart3-Feb-04 8:55 
QuestionHow to draw X and Y axis? Pin
Member 18556083-Feb-04 3:06
Member 18556083-Feb-04 3:06 
AnswerRe: How to draw X and Y axis? Pin
Heath Stewart3-Feb-04 3:58
protectorHeath Stewart3-Feb-04 3:58 
GeneralRun .NET executable without the framework installed Pin
jvbragt3-Feb-04 2:51
jvbragt3-Feb-04 2:51 

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.