|
DAO and Win XP Jack *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! ... 22 Feb 2005 09:34
Adding Controls at the run time Hello, I need to add the redimensioned number of text boxes to the form. I tried: Dim txt() As TextBox and then at Form_Load I tried to do: ReDim txt(20) For i = 0 To 19 Set txt(i) = New TextBox End If but vbasic will not let me do that. What is a proper way? Your thoughts are appreciated,... 22 Feb 2005 09:34
Mouse wheel Hi, VB does not handle the mouse wheel rotation message, right? (WM_MOUSEWHEEL) I saw a article in MSDN from 1997 Programming the IntelliMouse from 32-bit VB by Gary Nelson what is intellimouse? There is a SDK just for the mouse wheel? What if the mouse wheel was clicked. What message is generated? Is... 22 Feb 2005 09:34
Class termination In a standard VB project, I instantiate a class (within the project). I then call a method in the class from Sub Main. The method shows a Form. I have noticed that the class's termination event fires before I have a chance to interact with the Form. This occurs using vbModal or not. Why does the class termin... 23 Feb 2005 17:59
reading from a text file Im reading in from a text file with the following code Open fileIn For Input As #1 Input #1, alltxt Close #1 However it doesnt bring in all of the text from the text file. Once it reaches a comma (,) in the text it stops. Is there a reason for this and any way around it? ... 22 Feb 2005 09:34
Suspending a subroutine in code: VB6 Hello: I have a sub in a standard module that is modeling some data. I want to pause it or suspend it at user control. While the sub is running, controls will not respond. My research seems to indicate that the only solution is to have a timer interrupt the sub's execution, but it is confusing on how t... 22 Feb 2005 09:34
Question about WM_SYSCOMMAND in the folowing software http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=45386&lngWId=1 WM_SYSCOMMAND is used with uCmdType=&hF012. The documentation says the the 2 of F012 is "internal". Any ideas what it does? ... 20 Feb 2005 07:57
List Boxes are great but need over 32KB lines Hi all, I have a list box that displays a text file that I load into it from disk. Users add things to the list one at a time via a separate text box, and they can select one or more items from the list and remove them by clicking a button. The list is alphabetically sorted automatically. Life has been good, but... 22 Feb 2005 13:50
Launching a Webpage from VB6 I'm trying to launch an ASP.NET page from a VB6 dll. The application gathers information from a MailItem (or any object) and passes it as parameters to a URL to launch a webpage in the default browser. The problem is, sometimes the body of the email causes a strange reaction. The URL is changed from . .. . ... 18 Feb 2005 16:47
Opening an IE window with an URL from a VB6 app I'm trying to figure out a way for my VB6 application to open up a specific web page in IE when the user makes a certain selection. Right now, as I'm trying to debug it (this VB6 app is an addin for MS Word, where the user selects an option from a custom menu added to Word), when they select the option to navigat... 18 Feb 2005 11:08 |