Hello again,
I have two questions, one relating directly DesktopX and the other is relative to the syntax of a command
First I have seen that there's a command "Widget.OnTop"
Is there a way to cancel it after this command has been used?
in another words, I would like to put in my cutom right click menu the option to put on top (here no problem) and to cancel it (here problem

)
SecondI have searched 2 days but I can't find a clear article of how to write a SendMessage command
Is this command exists in VBScript? I begin to doubt...
And if yes, what is the syntax? I have searched a lot of websites, I can't find the correct syntax.
What I have found is that:
Code: vb
- SendMessage (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any)
- And the code:
- Dim lNotepadHwnd as long
- Dim lNotepadEdit as long
- Dim sCaption as string
-
- lNotepadHwnd = Findwindow("Notepad",vbnullstring)
- lNotepadEdit = FindWindowEx(lNotepadHwnd,0&,"Edit",vbnullstring)
- sCaption = InputBox("What do you want to say?")
-
- SendMessage lNotepadEdit, WM_SETTEXT, 256, sCaption
and off course... it is not for the VBS of desktopX
I can't even know for what it is... I am totally confused between VBS, VBA, VB, VB for excel, VB for word etc... That is why I have to ask the next question
Important question:Is there a good website that presents clearly the commands we can use in VBScript? Microsoft website (MSDN) is as clear as can be the rock water... and I don't like to have to ask for things for are surely easy to do... if we know where to get informations how to do it....
When I was programming in Php I used a website that was displaying a collection of functions like: ftp_size, ftp_rename, ftp_delete, ftp_site, call_user_func_array etc...
Is there one place on the internet where there's a similar list for the VBScripts commands. So a list like that: MsgBox, Set, Call, On Error Resume Next, SendMessage (if it exists...)
Thank you for any answer...