What I would simply make is like the RESTORE command...
Printable View
What I would simply make is like the RESTORE command...
Please be a little more specific - what's the RESTORE command ?
May be you can use the AppActivate.
your application or someone else's?
you could try this:
Code:'Declarations
Declare Function SetActiveWindow Lib "user32.dll" (ByVal hwnd As Long) As Long
Declare Function SetForegroundWindow Lib "user32.dll" (ByVal hwnd As Long) As Long
'Function
Public Function ActivateWindow(hwnd As Integer)
Dim retval As Long
retval = SetForegroundWindow(hwnd)
retval = SetActiveWindow(hwnd)
End Function
'To use
Private Sub Hello_Click()
ActivateWindow Me.Hwnd
End Sub
Hi,
I've tried using setforegroundwindow and setactivewindow APIs but they don't work on Win98.
The problem is: Win98 only flashes your app on the taskbar and does not 'jump' at the user like Win95.
Is there a solution?
Thanks!
-Samseng
i don't know sorry
i use win 98