By using the same rules of distribution for xp and vista...
Good Luck
User Profile
Collapse
-
use a recordset object to execute your stored procedure and since you have not aliased the count, you would use rs.fields(0)
Good LuckLeave a comment:
-
Welcome to the show... Opps, old song rolling around in the head but still let me introduce you to your new best friends (yahoo, google, ask, answers, bing) and here is some hints on what you should be searching for...
vb6 ado turorial
Then, once you have that digested, see http://www.connectionstrings.com for more information on DSN Less connections...
Good LuckLeave a comment:
-
-
vb5prgrmr replied to How do i place a VB control on top of a SWF just like placing a text over image?in Visual BasicLabel and Image controls are "lightweigh t" controls and do not have a handle and thus are place just above the forms graphical methods. Form being the bottom, lightweight controls on top of that, and then those controls that expose their hwnd's on top of that. But then there are those controls that use various API's to create their runtime windows and thus you cannot place a control on top of them... You can however place a mostly transparent...Leave a comment:
-
Use your friends (yahoo, google, ask, answers, bing) search for...
vb6 ado turorial
vb6 automating excel
Good LuckLeave a comment:
-
This really depends upon your code and what you are doing, but, one can accomplish this with the EnumChildWindow s API to look for the msgbox and then use it to find the button handle. Then you can use SendMessage to send WM_MBUTTONDOWN AND WM_MBUTTONUP messages to the button to simulate a click on it...
Good LuckLeave a comment:
-
at the top... all | Business | ID | Development
Hover over development and you should see your forum...
Good LuckLeave a comment:
-
ggeu, in VBA, which the OP states that they are using in the title of this post, there is a .Value property for text boxes as those lovely Form 2.0 controls are what the office products use. Beyond that, good catch on the missing declaration, however, using Val puts a double into the currency variable...
So, if the textbox contains $1,034.34, Val will return zero (0) while ccur, which is the data type one is putting the values...Leave a comment:
-
It might have been moved to the Access VBA forum...
Click on Developement link at top or to the right of your post, scroll down and keep eyes right...
Good LuckLeave a comment:
-
You are going to have to install VB3, 2, or 1 to be able to read those files... You might get lucky if you try http://www.wotsit.org to check the file extensions to see if their format has been published/decoded...
Good LuckLeave a comment:
-
Put the code in form_load and press F8 to walk through... Look at the debug window to see the results...
Good LuckLeave a comment:
-
As on TWO other sites... "Format" it out...
Code:Dim My1stArray() As String, My2ndArray() As String, S As String Dim LB As Integer, UB As Integer, LoopCnt As Integer S = ":25:0186350587,:25:186350587,:25:86350587,:25:6350587,:25:350587,:25:50587,:25:587,:25:87,:25:7" My1stArray = Split(S, ",") LB = LBound(My1stArray) UB = UBound(My1stArray)
Leave a comment:
-
Hmmm... I wonder... What is your growth amount? I'm wondering if you are filling up your db and it needs to grow... thus the slow down as it tries to figure out what to do next... Another thought, how many threads do you allow SQL server to have and how many of your statements execute before it starts to slow down? How much memory do you allow it to have? How much hard drive space do you have on the data drive? How much free space on the OS drive...Leave a comment:
-
Looks like you have been looking at a bunch of .NET code...
You will need to create a function for this in VB6.0...
Something like...
Code:Private Function DoesStringExistInArray(StringToCheckFor, As String, ArrayToCheck() As String) As Boolean On Error GoTo DoesStringExistInArrayError Dim LB As Integer, UB As Integer, LoopCnt As Integer 'Check to see if
Leave a comment:
-
Function = As Something...
Code:Private Function MyFunction (MyInput As String) [B]As String[/B] MyFunction = MyInput End Function
Good LuckLeave a comment:
-
Code:strValToUpdateInsert = Replace(RTB.RTFText, "'", "''")
Good LuckLeave a comment:
-
There should not be that much of a difference between QA and VB6.0. Are you sure you are supplying all the required inputs from VB6.0? Does the SP return records? What else is going on during this processing? How much memory does the system have and are you sure you are not running out? What is it that could be different between QA and VB when it comes to those hash tables? There is so much information missing and I'm not sure that you are in the...Leave a comment:
-
Via the use of a callback function.... How do you exactly do this from within C++ I don't know, but I know it can be done...
Good LuckLeave a comment:
No activity results to display
Show More
Leave a comment: