Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
BobRodes said:So, does Windows expose the text box control(s) that VB uses as part of the opsys, or do they come from somewhere like MFC? Also, are we saying that VB wanted to preserve backward compatibility with applications written with older versions of VB, and hence around the 16 bit control, so they subclassed the 32 bit control to apply the old limitations?VB superclasses a number of system global window classes. The Textbox (Classname = ThunderTextBox) is a superclass of the Windows edit control (Classname = Edit).
And yes, they failed to update a number of controls that used Integer parameters when VB transitioned to 32-bit (almost certainly because they wanted programs written under 16-bit VB4 to be easily ported to 32-bit VB4 without any further intervention, and have not bothered really updating the core controls since that time ...)
All VB form and control classes are superclasses of the VBBubbleRT6 class, which is also a superclass of the ThunderRT6Main class.
Dim fso, tso, tmp
Set fso = CreateObject("Scripting.FileSystemObject")
filename="[here goes the full path to your file]"
Set tso = fso.OpenTextFile(filename,1,false,0)
[b]tmp=tso.readall
tmp=replace(tmp, chr(10),"")
tso.Write(tmp)[/b]
tso.Close
set tso=nothing
set fso=nothing