Click here to Skip to main content
16,010,427 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionNewbie: Arbitrary list order in SQL? Pin
David-grp29-Jan-05 19:33
sussDavid-grp29-Jan-05 19:33 
AnswerAnybody? [n/t] Pin
David-grp30-Jan-05 5:24
sussDavid-grp30-Jan-05 5:24 
AnswerRe: Newbie: Arbitrary list order in SQL? Pin
mtone31-Jan-05 6:59
mtone31-Jan-05 6:59 
GeneralRe: Newbie: Arbitrary list order in SQL? Pin
Anonymous3-Feb-05 11:04
Anonymous3-Feb-05 11:04 
Generalwill speech sdk 5.1 work in vb.net Pin
MLSL29-Jan-05 19:24
MLSL29-Jan-05 19:24 
GeneralRe: will speech sdk 5.1 work in vb.net Pin
Mitch F.30-Jan-05 9:03
Mitch F.30-Jan-05 9:03 
GeneralClosing browser window Pin
Ali Alaradi29-Jan-05 19:01
Ali Alaradi29-Jan-05 19:01 
GeneralRe: Closing browser window Pin
eggie529-Jan-05 19:30
eggie529-Jan-05 19:30 
use platform invoke "pinvoke" the API function FindWindow to get the handle of the specific window you want to close, and then use the API function SendMessage with the parameters as your handle from FindWinow and the WM_CLOSE constant which equals... 0x0010. I did the introp code for you below...

private public const UInt32 WM_CLOSE = 0x0010;
        [DllImport("user32.dll")]
        static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam,
          IntPtr lParam);


I would call it something like this..

SendMessage(handleFromFindWindow, WM_CLOSE, IntPtr.Zero, IntPtr.Zero);


/\ |_ E X E GG
GeneralRe: Closing browser window Pin
Ali Alaradi29-Jan-05 20:51
Ali Alaradi29-Jan-05 20:51 
GeneralRe: Closing browser window Pin
eggie530-Jan-05 18:45
eggie530-Jan-05 18:45 
Generalproggramming problems... Pin
as8129-Jan-05 16:28
as8129-Jan-05 16:28 
GeneralRe: proggramming problems... Pin
Robert Rohde29-Jan-05 21:29
Robert Rohde29-Jan-05 21:29 
Generalclr error Pin
ssskkk29-Jan-05 5:21
ssskkk29-Jan-05 5:21 
GeneralRe: clr error Pin
Robert Rohde29-Jan-05 7:16
Robert Rohde29-Jan-05 7:16 
GeneralRe: clr error Pin
Dave Kreskowiak30-Jan-05 6:35
mveDave Kreskowiak30-Jan-05 6:35 
Questionhow to create animation on Vb Programme Pin
Anonymous28-Jan-05 22:25
Anonymous28-Jan-05 22:25 
AnswerRe: how to create animation on Vb Programme Pin
Delo30-Jan-05 10:18
Delo30-Jan-05 10:18 
QuestionHow do i make a connect to yahoo Pin
Delo28-Jan-05 10:40
Delo28-Jan-05 10:40 
GeneralReturn Structure Name from an Array Pin
korkydn28-Jan-05 10:25
korkydn28-Jan-05 10:25 
GeneralRetrieve info from database and print to txt box Pin
Steele9528-Jan-05 8:50
Steele9528-Jan-05 8:50 
GeneralRe: Retrieve info from database and print to txt box Pin
Delo28-Jan-05 12:06
Delo28-Jan-05 12:06 
GeneralRe: Retrieve info from database and print to txt box Pin
mtone31-Jan-05 7:21
mtone31-Jan-05 7:21 
GeneralSetupDiGetClassDevs fails with -1 Pin
John R. Shaw28-Jan-05 7:26
John R. Shaw28-Jan-05 7:26 
GeneralRe: SetupDiGetClassDevs fails with -1 Pin
Dave Kreskowiak28-Jan-05 10:28
mveDave Kreskowiak28-Jan-05 10:28 
GeneralRe: SetupDiGetClassDevs fails with -1 Pin
John R. Shaw29-Jan-05 9:57
John R. Shaw29-Jan-05 9:57 

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.