Does anyone know how to keep the focus on a DIV region if a command button is clicked within an app? Code is below: Option Explicit Dim Str Form1_show ...
Mike, First give the DIV an Id to enable it to be referenced: Sub Create_HTML_File Str="<html>"&VBCRLF Str=Str&"<body>"&VBCRLF Str=Str&"<DIV id='Editor'...
Hi Steve, found a solution just before you posted yours, but without using any DIV Id's. I just used WebBrowser.Document.focus. I've tried it with multiple...
Mike, When creating my Test Creation System for work with my WYSIWYG HTML editors, it required that the individual DIV's be given focus. However, as you have...
The pennys dropped! I can now see why you need the DIV id's in order to get the contents of the DIV - but how do I read in the contents of a DIV to a variable...
Its OK - Figured it out. Print WebBrowser.Document.GetElementById("divid").InnerHTML Regards Mike ... order ... of ... HTML ... the ... michael_newett ... ...
Dim strEditorContents ' Assuming the Id is "Editor" strEditorContents = WebBrowser.Document.All("Editor").innerHTML ________________________________ From:...
After installing the latest/greatest desktop version I looked at the one of the examples to see how it was dealing with the Time object. And, wellllllllll, I...
dear tim, i've dwnldd + tested your sample, but you have the same results i had. i.e. when selecting multiple files - flags multiple select 512 - the filelist...
dear tim, i've dwnldd + tested your sample, but you have the same results i had. i.e. when selecting multiple files - flags multiple select 512 - the filelist...
There is nothing wrong with it or with the Common Dialogue control. This is how the Common Dialogue control is designed to work. The example is for returning a...
maybe my explanation is not so extensive i should. i'm not saying your sample is wrong, of course it does that it should. my question is : if you change flags...
Hi Steve, just wondered if you've got any further with your NSBASIC demo of SpriteCraft? Looking forwards to seeing what it can do. Regards Mike ... the ... ...
Sub OPEN_Click() ' xx Default Error Handler On Error Resume Next Dim varFiles Dim i ' xx Initialize File name as an empty field g_objDialogue.FileName =...
Tim thanks for your help fernando ... From: Tim Markoski To: nsbasic-desktop@yahoogroups.com Sent: Tuesday, July 11, 2006 3:00 AM Subject: [nsbasic-desktop]...
Mike, I was working on converting the space ship shooter example but discovered it would not convert over as easily as I expected and I also found some weird...
Does anyone know how to get the listbox horizontal scrollbar working? I've found the following code that gets it working using the Declare function - but I'm...
I've converted an API from VB to hide the taskbar, but it doesn't work. Can anyone see a mistake? I've included the NSBASIC modified code below, and the...
Michael, as you probably noticed, the statement lngHandle=FindWindow("Shell_TrayWnd", "") doesn't work, it just returns 0. Which window handle do you want? If ...
Hi Thomas, the line 'lngHandle=FindWindow("Shell_TrayWnd", "")' is supposed to get the handle for the 'Start/Taskbar' window at the bottom of the screen. I'm...
Michael, We haven't done any work on this. It's possible that it could be done with the existing product, but it would require some techniques that we have not...