- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Re: Note: Not all systems have the VB6 Runtime Installed... *IF* The VB6 Runtime is *NOT* installed and you are *NOT* using an installer you must install the VB6 Runtime for the VB6 .exe to work. Many system already have the VB6 Runtime installed as part of another package, such as … | |
I have a form from which I can launch various Test Modules. The Form has 16 PushButtons, one for each of the possible Modules. I need to disable Button_2 through Button_11 until the Modules that are connected to Button_1 and Button_0 are succesfully completed. The Buttons are on a pyQT … | |
| Re: I do a lot of stuff with the MSFlexGrid... I usually get real lazy when it comes to importing data into Excel. What I normally do is export the grid and Tab Delimit the fields into a text file. Then "Open With" Excel, after which I can save as a … |
The documentation for the textEdited signal shows the use of a required parameter const QString& void textEdited (const QString&) I am unable to get the Signal to work. Perhaps because I do not understand how to use the "const QString&" Is this a literal copy into the parameter or is … | |
Re: Which Version of VB or Visual Studio are you using? Secondly, did you install the MSDN that came with your software? The VB Help files are usually included in the MSDN install... Learn what Active-X means to you in this context. In the Documentation under Controls Reference it covers "Intrinsic … | |
Re: Could really use some more inforation... :) Basically, the question is, search what? A ComboBox, pretty much follows your keystrokes as you enter text. You can simulate that action by using a Textbox for your text entry and intercepting each keystroke as entered, create a new search term at each … | |
After a month of study on wxPython the vender finally admitted they were actually using pyQT... There are enough differences to make pyQT a *real* pain. So, I was wondering if there were *any* people on this Forum who were fairly well versed on pyQT? | |
I have begun to wonder whether frequenting this Board and trying to answer pleas for assistance is worthwhile... I have posted several working solutions and there is no evidence that the requestor has even looked at them... If a "possible" solution isn't what you were looking for at least clarify … | |
Re: What is the largest number you need to convert? Will you also need to convert fractional numbers? Or, Decimal Numbers like Ten Point Four? What are the variant in input text? Will you accept the above entry as well as Ten dot 4? Or, One Hundred and 4 vs One … | |
Re: What method are you using to "Open" the file in Question? I have a Form I copy into my project space when I want to access files... Copy the code below into a text file and then rename it FN.frm Because the FN form can be thought of as a … | |
Re: The code looks like you are entering 20 numbers. But, it is not clear what you are doing with a Two by Two FlexGrid... But, that last section is where you get into trouble because you are changing your loop variable "i" within the loop in a way that will … | |
Re: You can use an Image Control or Picture Box to load and display a .GIF file (among others) An Image Control allows stretching the .GIF to fit. See the attached .zip for some ways to "play" with Images. What "ViewIt" does is allows you to open a supported graphics file, … | |
Re: This should work for DAO (and ADO, I believe)... If you are doing SQL... Then I can't help you... You have to use rst.Update to actually update the database record You have to use rst.Edit to change fields in the record Basically, once you open a RecordSet you have to … | |
Re: Take a look at the form (code) I placed on thread: [url]http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/379911[/url] It uses a DirListBox, (shows up on the left side of the form). Copy the entire code section and paste into a text file, then rename the text file FN.frm Add that .frm file to your VB project. … | |
Re: If all you want is to save your own passwords. That is, not create an app for someone else... I strongly recommend AI Roboform. The Trial/Free version only saves 10 Passwords, but, the last version I got also saves an unlimited number of secure notes. I've purchased two desktop licenses … | |
Re: Actually, IIRC, [CTRL]+[Print Screen] captures the whole screen And, [ALT]+[Print Screen] captures the only the active window. There is also a free program I (also) use called "ScreenHunter Free" which will allow you to capture any given area of the display you want... | |
Re: I'd be interested in knowing this as well. :) But, depending upon what security protocols your client has placed on thier computer your upgrade may be as simple as writing an AutoRun that overwrites the existing files. The exe would be in the install directory and the ocx is probably … | |
Re: Here's some code I use to Create a delay... [code] Sub delay(timeout As Long) Dim OldCap As String Dim OldFont As Long ' Here I am saving the Button Caption and Font OldCap = MN.cmdRun.Caption OldFont = MN.cmdRun.FontSize MN.cmdRun.FontSize = 14 ' timeout is Delay Time in tenths of a … | |
Re: Are these Cells in an Excel instance or a MSFlexGrid Instance? | |
OK, I have a Class for a Frame that is basically 24 labels in a stack like an old terminal Screen. There are two Functions included in the Class: AddLine and Clear (Will add "Exit") I want to launch an instance of this Class in it's own Thread and Pass … | |
Re: I am not sure what you are trying to do... But, you might try adding a List Box to display the sub-items from the Combo-Box Selection. In other words, only populate the ComboBox with the primary selections... Then when a selection is made in the ComboBox, use its text Field … | |
Re: There really isn't any super quick way to do what you want... If the file is line based then you either have to scan through the file sequentially using LineInput Or, open the the file, I believe in binary mode, and SEEK to a given position. Here's the problem, using … | |
Re: here's a few links: [url]http://www.ehow.com/how_8334194_check-file-exists-vb6.html[/url] [url]http://www.vb6.us/tutorials/working-file-system-vb6[/url] | |
Re: What you are describing is "non-trivial"... Look at the <project> <components> for anything connected with Internet and research them... Microsoft HTML Object Library Microsoft Internet Control Microsift Internet Transfer Control I haven't done this, so all I can do is point you to where I would start my search. :) … | |
Re: Agreed, though I have done most work in DAO not ADO or SQL... This error, though not as bad as the illegal "Null" error, usually requires a type conversion when going into the RecordSet. And, sometimes when retrieving, as well. | |
Re: The other thing to do is combine the variables as strings before writing to the file... [code] Write #1, var1 & var2 [/code] Of course if either variable is not a String you'll need to do Conversion and/or formatting. If the above doesn't work as I remember, try combining the … | |
Re: It was so much easier in the good old DOS Days... You had direct control of the hardware and didn't have to fight with the Hardware Abstraction Layer... In <Project> <Components> you can add the "Windows Media Player" Control and this will give you control of MP3; WMA; and .WAV … | |
Re: Honestly, this sounds more like a database Program than a Dictionary. IIRC Dictionaries are really structured lists that have a Key:Value What you seem to be asking is for something with a third part to it, "Pictures Appeared In" This could be done, possibly by restructuring your dictionary so that … | |
Re: Well, you can scan through the string using a loop creating a new temporary string... Try This [code] function StripNewLine(q as string) as string dim x as string dim n as long for n = 1 to len(q) if mid(q,n,1) <> vbcrlf then x = x & mid(q,n,1) end if … | |
Re: Copyrights are a Courtesy and Convenience if you do not legally Copyright with the Patent and Copyright Office. You can use Prior Work and First Use in some cases. But, it is getting harder and harder and more and more expensive to get a genuine legally enforceable Copyright. Then it … |