Click here to Skip to main content
15,894,955 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: kill process Pin
Christian Graus18-Mar-09 20:57
protectorChristian Graus18-Mar-09 20:57 
GeneralRe: kill process Pin
hrishiS18-Mar-09 23:48
hrishiS18-Mar-09 23:48 
GeneralRe: kill process Pin
Christian Graus18-Mar-09 23:53
protectorChristian Graus18-Mar-09 23:53 
GeneralRe: kill process Pin
hrishiS19-Mar-09 0:05
hrishiS19-Mar-09 0:05 
GeneralRe: kill process Pin
Christian Graus19-Mar-09 0:19
protectorChristian Graus19-Mar-09 0:19 
GeneralRe: kill process Pin
hrishiS19-Mar-09 0:48
hrishiS19-Mar-09 0:48 
GeneralRe: kill process Pin
Yusuf19-Mar-09 4:22
Yusuf19-Mar-09 4:22 
GeneralRe: kill process Pin
Yusuf19-Mar-09 0:21
Yusuf19-Mar-09 0:21 
You see there are crap load of people who scream at the top of their tounge to get a solution for problems they have no clue for. You seem to be eager to learn and we are here to help. Next time try to articulate your question and show what you have done and what you need help. That may yeild a better response.

As far as your question it is doable. you would need to learn a bit more about windows programming. with all respect, vb is just piece of crab. if you are looking for such serious application look to C++ as your friend.

Here are couple things to look at. I am not vb programmer, and this is converted from C++. You may have to tweak it to make it work.

Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long<br />
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<br />
<br />
<br />
Dim return As Long<br />
<br />
'get the Window<br />
return = FindWindow("Shell_traywnd", "") <br />
<br />
'hide the taskbar<br />
ShowWindow(return , SW_HIDE);<br />
<br />
'show th taskbar<br />
ShowWindow(return , SW_RESTORE)<br />


Yusuf

Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]

GeneralRe: kill process Pin
hrishiS19-Mar-09 0:50
hrishiS19-Mar-09 0:50 
GeneralRe: kill process Pin
Eytukan19-Mar-09 0:21
Eytukan19-Mar-09 0:21 
GeneralRe: kill process Pin
hrishiS19-Mar-09 0:44
hrishiS19-Mar-09 0:44 
GeneralRe: kill process Pin
Dave Kreskowiak19-Mar-09 2:29
mveDave Kreskowiak19-Mar-09 2:29 
Questiondrawing line Pin
dkosasih18-Mar-09 19:09
dkosasih18-Mar-09 19:09 
AnswerRe: drawing line Pin
dan!sh 18-Mar-09 19:22
professional dan!sh 18-Mar-09 19:22 
AnswerRe: drawing line Pin
Christian Graus18-Mar-09 20:07
protectorChristian Graus18-Mar-09 20:07 
QuestionCannot update or delete access database Pin
hendrikbez18-Mar-09 19:09
hendrikbez18-Mar-09 19:09 
AnswerRe: Cannot update or delete access database Pin
dan!sh 18-Mar-09 19:25
professional dan!sh 18-Mar-09 19:25 
GeneralRe: Cannot update or delete access database Pin
hendrikbez18-Mar-09 19:31
hendrikbez18-Mar-09 19:31 
GeneralRe: Cannot update or delete access database Pin
dan!sh 18-Mar-09 19:32
professional dan!sh 18-Mar-09 19:32 
AnswerRe: Cannot update or delete access database Pin
_Damian S_18-Mar-09 19:55
professional_Damian S_18-Mar-09 19:55 
GeneralRe: Cannot update or delete access database [modified] Pin
hendrikbez18-Mar-09 20:03
hendrikbez18-Mar-09 20:03 
GeneralRe: Cannot update or delete access database Pin
Christian Graus18-Mar-09 20:59
protectorChristian Graus18-Mar-09 20:59 
GeneralRe: Cannot update or delete access database Pin
hendrikbez18-Mar-09 21:07
hendrikbez18-Mar-09 21:07 
GeneralRe: Cannot update or delete access database Pin
Christian Graus18-Mar-09 21:40
protectorChristian Graus18-Mar-09 21:40 
GeneralRe: Cannot update or delete access database Pin
Christian Graus18-Mar-09 22:18
protectorChristian Graus18-Mar-09 22:18 

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.