hi,
how can i put my own button next to minimize, maximize and close?
and question 2:
can i use the '?' button for other use (instead of help)?
thanks..
Printable View
hi,
how can i put my own button next to minimize, maximize and close?
and question 2:
can i use the '?' button for other use (instead of help)?
thanks..
Have a look here:
http://161.58.186.97/showthread.php?threadid=76659
nullus, when I add this code and click on the button, nothing happens:
Looks good though.Code:Public Sub cmdInTitlebar_Click()
MsgBox "now"
Me.WindowState = 1 'minimizes the form
End Sub
Really? Hmm....it works fine for me... :eek:
I think it might be one of the API calls that doesn't like NT. Let me guess, you've got win9x?
does visual basic run different on nt as it does to 9x and millenium
Yeah, I had a feeling you might be using something other than 9x. I'm using win98 ;)
manic_gofar, it means that some API calls are available across all versions of windows and some are not. For example new win32 api functions added with windows 2000 such as animate window, will only work on win 2000.
Quite often there are differences between win9x and NT.
does anyone know how to use dll's in visual basic game programming
got it... thanks...
Quote:
Originally posted by Nucleus
manic_gofar, it means that some API calls are available across all versions of windows and some are not. For example new win32 api functions added with windows 2000 such as animate window, will only work on win 2000.
Quite often there are differences between win9x and NT.
Does anyone know a site details of the Windows 2k specific API calls.