Click here to Skip to main content
15,900,725 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Impersonate using credentials of currently logged on user. Pin
jdkulkarni3-May-07 1:55
jdkulkarni3-May-07 1:55 
Questionclient script to validate empty Listbox Pin
aransiola29-Apr-07 22:29
aransiola29-Apr-07 22:29 
AnswerRe: client script to validate empty Listbox Pin
Chetan Ranpariya29-Apr-07 23:02
Chetan Ranpariya29-Apr-07 23:02 
QuestionUrgent !!! Unable to add table adapter in asp.net2 Pin
Deepml29-Apr-07 21:55
Deepml29-Apr-07 21:55 
AnswerRe: Urgent !!! Unable to add table adapter in asp.net2 Pin
Andy *M*30-Apr-07 0:05
Andy *M*30-Apr-07 0:05 
GeneralRe: Urgent !!! Unable to add table adapter in asp.net2 Pin
Christian Graus30-Apr-07 1:08
protectorChristian Graus30-Apr-07 1:08 
GeneralRe: Urgent !!! Unable to add table adapter in asp.net2 Pin
Colin Angus Mackay30-Apr-07 5:25
Colin Angus Mackay30-Apr-07 5:25 
Questionhelp about hide destop icon and task bar and startup button Pin
Suhail Shahab29-Apr-07 21:32
Suhail Shahab29-Apr-07 21:32 
Pleas any body help me in converting this vb code in vb.net

Private Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
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 SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Const SWP_HIDEWINDOW = &H80
Const SWP_SHOWWINDOW = &H40
Public Sub StartButton(ByVal show As Boolean)
Dim primo As Long
Dim ultimo As Long

primo = FindWindow("Shell_TrayWnd", "")
ultimo = FindWindowEx(primo, 0, "Button", vbNullString)
If show = True Then
ShowWindow(ultimo, 5) 'show start button
Else
ShowWindow(ultimo, 0) 'hide start button
End If
End Sub
Public Sub taskbar(ByVal show As Boolean)
Dim primo As Long
primo = FindWindow("Shell_traywnd", "")
If show = True Then
SetWindowPos(primo, 0, 0, 0, 0, 0, SWP_SHOWWINDOW) 'show taskbar
Else
SetWindowPos(primo, 0, 0, 0, 0, 0, SWP_HIDEWINDOW) 'hide taskbar
End If
End Sub
Public Sub deskicon(ByVal show As Boolean)
Dim primo As Long
primo = FindWindowEx(0&, 0&, "Progman", vbNullString)
If show = True Then
ShowWindow(primo, 5) 'show desktop icon
Else
ShowWindow(primo, 0) 'hide desktop icon
End If
End Sub

suhail
AnswerRe: help about hide destop icon and task bar and startup button Pin
San0229-Apr-07 21:36
San0229-Apr-07 21:36 
GeneralRe: help about hide destop icon and task bar and startup button Pin
Suhail Shahab29-Apr-07 22:10
Suhail Shahab29-Apr-07 22:10 
QuestionHow to use SSL in asp.net 2.0 Pin
Imran Khan Pathan29-Apr-07 21:16
Imran Khan Pathan29-Apr-07 21:16 
AnswerRe: How to use SSL in asp.net 2.0 Pin
San0229-Apr-07 21:31
San0229-Apr-07 21:31 
GeneralRe: How to use SSL in asp.net 2.0 Pin
www.Developerof.NET30-Apr-07 3:27
www.Developerof.NET30-Apr-07 3:27 
Questionshow Message box after thread execute successfully...... Pin
imshally8129-Apr-07 21:10
imshally8129-Apr-07 21:10 
AnswerRe: show Message box after thread execute successfully...... Pin
Christian Graus29-Apr-07 22:47
protectorChristian Graus29-Apr-07 22:47 
GeneralRe: show Message box after thread execute successfully...... Pin
imshally8129-Apr-07 23:10
imshally8129-Apr-07 23:10 
Questionhow to open another browser? Pin
neodeaths29-Apr-07 21:01
neodeaths29-Apr-07 21:01 
AnswerRe: how to open another browser? Pin
Christian Graus29-Apr-07 21:09
protectorChristian Graus29-Apr-07 21:09 
GeneralRe: how to open another browser? Pin
neodeaths29-Apr-07 21:23
neodeaths29-Apr-07 21:23 
GeneralRe: how to open another browser? Pin
Christian Graus29-Apr-07 22:30
protectorChristian Graus29-Apr-07 22:30 
AnswerRe: how to open another browser? Pin
San0229-Apr-07 21:17
San0229-Apr-07 21:17 
GeneralRe: how to open another browser? Pin
neodeaths29-Apr-07 21:25
neodeaths29-Apr-07 21:25 
GeneralRe: how to open another browser? Pin
San0229-Apr-07 21:59
San0229-Apr-07 21:59 
GeneralRe: how to open another browser? Pin
neodeaths29-Apr-07 22:10
neodeaths29-Apr-07 22:10 
GeneralRe: how to open another browser? Pin
San0229-Apr-07 22:27
San0229-Apr-07 22:27 

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.