active questions tagged vb6 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T15:22:59Zhttp://stackoverflow.com/feeds/tag/vb6http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821540/does-anyone-know-of-a-vba-6-example-using-getlocaleinfoex0Does anyone know of a VB(A/6) example using GetLocaleInfoEx?Oorang2009-11-30T18:31:06Z2009-12-02T09:39:13Z
<p>I thought I dug most of what I need out of the header files, but I keep crashing out.<br>
Here is the declare I tried using, but I don't think it's just an issue of the declare. I think I'm actually using it wrong.<br></p>
<pre><code>Private Declare Function GetLocaleInfoEx Lib "kernel32" ( _
ByVal lpLocaleName As Long, _
ByVal LCType As Long, _
ByRef lpLCData As Long, _
ByVal cchData As Long _
) As Long
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/dd318103%28VS.85%29.aspx" rel="nofollow">Here</a> is the corresponding documentation.<br>
<strong>EDIT by MarkJ</strong>: Oorang wants to use GetLocaleInfoEx because the MSDN docs say it is preferred on Vista. </p>
http://stackoverflow.com/questions/1827056/how-to-properly-remove-all-connections-to-an-access-database0How to properly remove all connections to an Access DatabaseEverett2009-12-01T15:49:50Z2009-12-02T01:23:39Z
<p>Here's a snippet of VB6 code:</p>
<pre><code>myProjectDaoDB.Close
FileCopy myName, TempFile
</code></pre>
<p>where myName is the path of a database. This database is presumably closed in the first line. It seems that simply closing the database is not enough to properly remove all access to database since when I run the program, I get a run-time error of '70': Permission denied. I know that there are no actual problems with the user permissions. This error only happens after saving to the database, so I'm sure that something isn't being closed properly.</p>
<p>When the database is open, a lock file is created. If I run this code without making any changes to the database, the lock file is deleted after the first line runs. When I make changes to the database, the lock file is not deleted. There are no errors when it tries to close database, so why is it still there?</p>
<p>Update: I've followed the steps <a href="http://support.microsoft.com/kb/186304" rel="nofollow">here</a> to find out who has a connection to the database during the error. According to the results, When I try to close the connection without making changes to the database, it's only my connected. When I make changes, I'm connected <em>twice</em>. It seems then that myProjectDaoDB.Close is not closing all the connections. What gives?</p>
http://stackoverflow.com/questions/1822478/find-the-duplicate-and-write-it-in-log-file0find the duplicate and write it in log file.pbrp2009-11-30T21:23:01Z2009-12-01T19:45:46Z
<p>I have craeted code which reads the acc no, rtn, name and amt from text file and stores in recordset. After that i created sql that stores recordset data into sql server 2005 table.</p>
<p>The problem is In that accno column is primary key. but i have some duplicate accno in my text file. While adding recordset to database, if it finds duplicate accno it is stopping there and not inserting any rows after that duplicate column.</p>
<p>Now i what i want to do is if there is any duplicate column, i want to store that column into log file and skip that column and insert remaining columns into databse. I dont know how to do it. Can anybody help me. like how to check the duplicate column and skip that and insert remaining.</p>
<pre>
' Write records to Database
frmDNELoad.lblStatus.Caption = "Loading data into database......"
Dim lngRecCount As Long
lngRecCount = 0
rcdDNE.MoveFirst
With cmdCommand
.ActiveConnection = objConn
.CommandText = "insert into t_DATA_DneFrc (RTN, AccountNbr, FirstName, MiddleName, LastName, Amount) values ('" & rcdDNE("RTN") & "', '" & rcdDNE("AccountNbr") & "', '" & rcdDNE("FirstName") & "', '" & rcdDNE("MiddleName") & "', '" & rcdDNE("LastName") & "', '" & rcdDNE("Amount") & "')"
.CommandType = adCmdText
End With
Set rcddnefrc = New ADODB.Recordset
With rcddnefrc
.ActiveConnection = objConn
.Source = "SELECT * FROM T_DATA_DNEFRC"
.CursorType = adOpenDynamic
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Open
End With
Do Until rcdDNE.EOF
lngRecCount = lngRecCount + 1
frmDNELoad.lblStatus.Caption = "Adding record " & lngRecCount & " of " & rcdDNE.RecordCount & " to database."
frmDNELoad.Refresh
DoEvents
Call CommitNew
rcdDNE.MoveNext
Loop
frmDNELoad.lblStatus.Caption = "DNE Processing Complete."
frmDNELoad.Refresh
End Function
Sub CommitNew()
' Add records to DneFrc table
With rcddnefrc
.Requery
.AddNew
.Fields![RTN] = rcdDNE.Fields![RTN]
.Fields![AccountNbr] = rcdDNE.Fields![AccountNbr]
.Fields![FirstName] = rcdDNE.Fields![FirstName]
.Fields![MiddleName] = rcdDNE.Fields![MiddleName]
.Fields![LastName] = rcdDNE.Fields![LastName]
.Fields![Amount] = rcdDNE.Fields![Amount]
.Update
End With
End Sub
</pre>
http://stackoverflow.com/questions/632808/why-is-vb6-still-so-widely-used8Why is VB6 still so widely used?Uri2009-03-11T00:17:37Z2009-12-01T19:36:21Z
<p>Note that this question is not meant to start an argument, I am genuinely curious:</p>
<p>Back in the 90s I used to work for a large CPU maker and we were building some debuggers. All our core logic was in C++, but the GUI was made in VB6. We couldn't figure out MFC and it was too much a hassle. We glued together VB6 and C++ using COM which we created via ATL.</p>
<p>Fast forward to 2009, having been mostly in the Java world I am looking at job boards and seeing more VB6 jobs than I expected. I genuinely thought that VB6 was extinct, especially since VB.NET supposedly solved a lot of the problems with the VB6 which at the time felt a lot like a scripting language than a true OOP language. </p>
<p>So what happened? Why is new code still written in it? Isn't there a better way to glue C++ and VB.NET? </p>
<p>Note that I haven't used VB.NET, I just understand that it is a much more "stricter" language than VB6 was. Even with Option Explicit or whatever it was. </p>
http://stackoverflow.com/questions/1705671/converting-a-function-from-visual-basic-6-0-to-c-is-throwing-accessviolationexce0Converting a function from Visual Basic 6.0 to C# is throwing AccessViolationExceptionThaiV2009-11-10T04:47:22Z2009-12-01T18:06:54Z
<p>I'm converting a function from <a href="http://en.wikipedia.org/wiki/Visual%5FBasic" rel="nofollow">Visual Basic 6.0</a> as:</p>
<pre><code>Declare Function RequestOperation Lib "archivedll" (ByVal dth As Long, ByVal searchRequestBuf As String, ByVal buflen As Long, ByVal FieldNum As Long, ByVal OP As Long, ByVal value As String) As Long
</code></pre>
<p>In C#, I'm declare the function as:</p>
<pre><code>[DllImport("archivedll")]
public static extern int RequestOperation(int dth ,StringBuilder searchRequestBuf, int bufferLen, int fieldNum, int op, string value);
</code></pre>
<p>When call RequestOperation from C#, it throws an exception:</p>
<blockquote>
<p>[System.AccessViolationException] =
{"Attempted to read or write protected
memory. This is often an indication
that other memory is corrupt."}</p>
</blockquote>
<p>I have successful in calling many other functions like this, but only this function throws the exception.</p>
http://stackoverflow.com/questions/678088/vs-installer-adds-unidentified-dependency0VS Installer adds unidentified dependencyE Brown2009-03-24T16:03:55Z2009-12-01T13:27:37Z
<p>I am creating an installation package for a VB6 application using Visual Studio Installer from the Visual Studio Installer Enterprise Tools v6.0. My issue is that Installer is adding a strange item under depdendencies, named simply "3". The "Sourcefile" and "Target" properties for this item are also shown as just "3". The "ComponentId" property values shows a GUID of "{EC1441E1-073C-4AD6-886F-1C6C6E998CAD}", which doesn't show up in a search within regedit on my PC. I'm not able to identify anything within the references or components of the VB6 project that would explain a dependency on a file named simply "3".</p>
<p>Has anyone seen this before, or have some insight as to where that dependency might be coming from?</p>
<p>Thanks in advance for any replies.</p>
http://stackoverflow.com/questions/40651/check-if-a-record-exists-in-a-vb6-collection3Check if a record exists in a VB6 collection?zombywuf2008-09-02T21:00:27Z2009-12-01T10:57:21Z
<p>I've inherited a large VB6 app at my current workplace. I'm kinda learning VB6 on the job and there are a number of problems I'm having. The major issue at the moment is I can't figure out how to check if a key exists in a Collection object. Can anyone help?</p>
http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps29Should we select VB.NET or C# when upgrading our legacy apps?Mike Hofer2009-02-03T14:33:07Z2009-12-01T03:19:55Z
<p>At the company where I work, we have a number of legacy apps written in Visual Basic 6.0. Without casting aspersions on the developers who wrote them, suffice it to say we have decided to rewrite the applications from scratch due to several compelling factors:</p>
<p>1.) Lack of documentation.</p>
<p>2.) Lack of exception handling.</p>
<p>3.) Lack of logging.</p>
<p>4.) Lack of extensibility.</p>
<p>Because these applications have a lot of duplicated code shared among them (copy-paste reuse), we want to rewrite it in a way that emphasizes reusability, testability, and extensability. I am therefore considering a move away from VB 6.0 and into .NET. That leaves me with a choice between VB.NET and C#. The development team is open to suggestion. However, they have no familiarity with C#, and are more familiar with Visual Basic (classic). In either case, they'd have to learn .NET. </p>
<p>Teaching is not my issue. I've done it before, and I have no qualms about doing it again.</p>
<p>It bears noting that the source code is going to have to be rewritten, because a redesign is called for. So, at this point, we get to choose which language we want to use. I am personally leaning towards C#, feeling that it enforces more disciplined coding practices (it's a more intrinsically type-safe language and comes with a far stricter compiler). </p>
<p>I am, however, very interested in the thoughts of my peers before I make a decision. So, if you have done this before, or if you have any words of wit or wisdom to impart, I'd really appreciate it. </p>
<p>I suppose, in closing, that the question is, which language would you go with if you had the opportunity to make a clean break from VB6.0 and move to .NET?</p>
<p><strong>UPDATE:</strong> I apologize if anyone thinks that I started this thread for the sole purpose of being argumentative. That was the furthest thing from my mind. Instead, I wanted to make sure that I was making the right decision at a crucial point in our company's decision making procesesses. To do so, I thought it best to seek input from those who had been through the process themselves. Stirring up strife was the last thing I wanted to do.</p>
<p>Thank you all for your input. It was thought provoking and I'll be going over it with my colleagues as we select a language for our future development.</p>
http://stackoverflow.com/questions/1804414/vb6-enabling-mousewheel-for-controls0VB6: enabling mousewheel for controlsFuxi2009-11-26T15:44:42Z2009-11-30T22:09:12Z
<p>hi all,</p>
<p>can someone tell me if there's an easy way to enable mousewheel for controls (in runtime)?
i want to use the wheel for scrolling controls as soon as the mouse is over them.</p>
<p>thx</p>
http://stackoverflow.com/questions/1821310/vb6-openrecordset-has-too-few-parameters0VB6 OpenRecordSet has too few parameters?Everett2009-11-30T17:52:32Z2009-11-30T17:55:58Z
<p>I'm debugging an app with the following code:</p>
<pre><code>sql = myTable
Set datTable.Recordset = myDB.openRecordset(sql, dbOpenDynaset, dbSeeChanges)
</code></pre>
<p>where </p>
<pre><code>sql = "select * from table Order by Precipition,Date/Time"
</code></pre>
<p>An error occurs on the second line saying "Run-time error '3061': Too few parameters. Expected 2". I believe the issue is the with the value of sql. I don't know to much about SQL, so does anyone have any ideas?</p>
http://stackoverflow.com/questions/152319/vba-array-sort-function7VBA array sort function?Mark Nold2008-09-30T09:06:04Z2009-11-30T17:38:43Z
<p>I'm looking for a decent sort implementation for arrays in VBA. A Quicksort would be preferred. Or any other <a href="http://www.cs.ubc.ca/~harrison/Java/sorting-demo.html" rel="nofollow">sort algorithm</a> other than bubble or merge would suffice.</p>
<p>Please note that this is to work with MS Project 2003, so should avoid any of the Excel native functions and anything .net related.</p>
http://stackoverflow.com/questions/1819558/activex-component-cant-create-object0ActiveX Component Can't Create ObjectFurqan2009-11-30T12:33:56Z2009-11-30T13:55:01Z
<p>Hi,</p>
<p>I have VB6 ActiveXDLL called A.dll , I am referencing this DLL into my VB.Net Application.
Now I am calling a function of A.dll in this project. A.dll function is referring to the function of B.dll ,C.dll ,C.dll further referrer to Z.dll and so on.</p>
<p>when I am executing application it gives an error from B.dll that ActiveX component can,t create an object.</p>
<p>Please help me to solve out this problem
waiting for your valuable thoughts</p>
<p>Thanking You </p>
http://stackoverflow.com/questions/1815072/how-to-remove-a-row-item-from-a-vb6-listview-using-a-button0How to remove a row (item) from a VB6 ListView using a button?studentnoob357832009-11-29T09:09:56Z2009-11-29T23:53:59Z
<p>How do I delete a row in a ListView. I need to select the row to be deleted and a command button will delete it with a alert message if you want to delete the row. What will be the code for that?</p>
http://stackoverflow.com/questions/15163/prevent-a-treeview-from-firing-events-in-vb60Prevent a TreeView from firing events in VB6?Matt Dillard2008-08-18T20:11:22Z2009-11-28T19:32:36Z
<p>In some VB6 code, I have a handler for a TreeView's Collapse event:</p>
<pre><code>Private Sub MyTree_Collapse(ByVal Node as MSComCtlLib.Node)
</code></pre>
<p>This is called whenever a node in the tree is collapsed, whether by the user or programmatically. As it turns out, through some roundabout execution, it may happen that this handler will wind up telling a node to collapse, leading to infinite recursion.</p>
<p>I can think of multiple ways to skin this cat, but what seems simplest to me is to tell the TreeView not to raise events for some period of time. I can't find a simple call to let me do this, though. Has anyone successfully done this, or do I need to keep track of state in some other manner so I can respond appropriately when recursive events come along?</p>
http://stackoverflow.com/questions/1811105/windows-7-file-problem1Windows 7 file problemrickdic692009-11-28T00:23:27Z2009-11-28T16:47:59Z
<p>I am using VB6 SP6
This code has work correctly for years but I am now having a problem on a WIN7 to WIN7 network. It also works correctly on an XP to Win7 network.</p>
<pre><code>Open file for random as ChannelNum LEN =90
'the file is on the other computer on the network
RecNum = (LOF(ChannelNum) \ 90) + 2
Put ChannelNum, RecNum, MyAcFile
'(MyAcFile is UDT that is less than 90 long)
.......... other code that does not reference file or RecNum - then
RecNum = (LOF(ChannelNum) \ 90) + 2
Put ChannelNum, RecNum, MyAcFile
Close ChannelNum
</code></pre>
<p>The second record overwrites the first.</p>
<p>We had a similar problem in the past with OpportunisticLocking so we turn that off at install - along with some other keys that cause errors in data in Windows networks.</p>
<p>However we have had no problems like this for years, so I think MS have some new "better" option that they think will "improve" networking.</p>
<p>Thanks for your help</p>
http://stackoverflow.com/questions/1810255/the-connection-cannt-be-used-to-perform-this-operation-it-may-closed-or-not-vali-1the connection cannt be used to perform this operation. It may closed or not valid in this context error in vb6pbrp2009-11-27T19:03:33Z2009-11-27T20:32:51Z
<p>I am trying to execute the query which stores recordset vales in sql db. when I am trying to execute that i am getting error like </p>
<p>the connection cannt be used to perform this operation. It may closed or not valid in this context error in vb6. Please help me to solve this issue.</p>
<pre><code>' Write records to Database
frmDNELoad.lblStatus.Caption = "Loading data into database......"
Call FindServerConnection_NoMsg
Dim lngRecCount As Long
lngRecCount = 0
rcdDNE.MoveFirst
Set rcdReclamation = New ADODB.Recordset
With rcdReclamation
.ActiveConnection = objConn
.Source = "insert into t_DATA_DneFrc (RTN, AccountNbr, FirstName, MiddleName, LastName, Amount) values ('" & rcdDNE("RTN") & "', '" & rcdDNE("AccountNbr") & "', '" & rcdDNE("FirstName") & "', '" & rcdDNE("MiddleName") & "', '" & rcdDNE("LastName") & "', '" & rcdDNE("Amount") & "')"
.CursorType = adOpenDynamic
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Open cmdCommand
End With
Do Until rcdDNE.EOF
lngRecCount = lngRecCount + 1
frmDNELoad.lblStatus.Caption = "Adding record " & lngRecCount & " of " & rcdDNE.RecordCount & " to database."
frmDNELoad.Refresh
DoEvents
Call CommitNew
rcdDNE.MoveNext
Loop
frmDNELoad.lblStatus.Caption = "DNE Processing Complete."
frmDNELoad.Refresh
End Function
Sub CommitNew()
' Add records to DneFrc table
With rcdReclamation
.Requery
.AddNew
.Fields![RTN] = rcdDNE.Fields![RTN]
.Fields![AccountNbr] = rcdDNE.Fields![AccountNbr]
.Fields![FirstName] = rcdDNE.Fields![FirstName]
.Fields![MiddleName] = rcdDNE.Fields![MiddleName]
.Fields![LastName] = rcdDNE.Fields![LastName]
.Fields![Amount] = rcdDNE.Fields![Amount]
.Update
End With
End Sub
</code></pre>
<p>conection code</p>
<pre>
Sub InstantiateCommand_SQLText()
' Creates a command object to be used when executing SQL statements.
Set objCommSQLText = New ADODB.Command
objCommSQLText.ActiveConnection = objConn
objCommSQLText.CommandType = adCmdText
End Sub
Function FindServerConnection_NoMsg() As String
Dim rcdClientPaths As ADODB.Recordset
Dim strDBTemp As String
Const CLIENT_UPDATE_DIR = "\\PSGSPHX02\NORS\Rs\ClientUpdate\"
On Error Resume Next
' If persisted recordset is not there, try and copy one down from
' CLIENT_UPDATE_DIR. If that can't be found, create a blank one
' and ask the user for the server name.
Set rcdClientPaths = New ADODB.Recordset
' Does it already exist locally?
If FileExists_FullPath(App.Path & "\" & "t_PCD_ServerConnectionList.xml") = False Then
' Can it be retrieved from CLIENT_UPDATE_DIR
If Dir(CLIENT_UPDATE_DIR & "t_PCD_ServerConnectionList.xml") "" Then
FileCopy CLIENT_UPDATE_DIR & "t_PCD_ServerConnectionList.xml", App.Path & "\" & "t_PCD_ServerConnectionList.xml"
Else
' Creat a blank one.
With rcdClientPaths
.Fields.Append "ServerConnection", adVarChar, 250
.Fields.Append "Description", adVarChar, 50
.CursorType = adOpenDynamic
.LockType = adLockOptimistic
.CursorLocation = adUseClient
.Open
.Save App.Path & "\" & "t_PCD_ServerConnectionList.xml", adPersistXML
.Close
End With
End If
End If
' Open the recordset
With rcdClientPaths
.CursorType = adOpenDynamic
.LockType = adLockOptimistic
.CursorLocation = adUseClient
.Open App.Path & "\" & "t_PCD_ServerConnectionList.xml", , , , adCmdFile
End With
If rcdClientPaths.RecordCount 0 Then
' try each one listed
rcdClientPaths.MoveFirst
Do Until rcdClientPaths.EOF
strDBTemp = TryConnection_NoMsg(rcdClientPaths.Fields![serverconnection])
If strDBTemp "" Then
FindServerConnection_NoMsg = strDBTemp
Exit Function
End If
rcdClientPaths.MoveNext
Loop
strDBTemp = ""
End If
Do While strDBTemp = ""
If strDBTemp "" Then
strDBTemp = TryConnection_NoMsg(strDBTemp)
If strDBTemp "" Then
With rcdClientPaths
.AddNew
.Fields![serverconnection] = strDBTemp
.Update
.Save
End With
FindServerConnection_NoMsg = strDBTemp
Exit Function
End If
Else
Exit Function
End If
Loop
End Function
Function TryConnection_NoMsg(ByVal SvName As String) As String
On Error GoTo ErrHandle
' If a server was provided, try to open a connection to it.
Screen.MousePointer = vbHourglass
Set objConn = New ADODB.Connection
With objConn
.CommandTimeout = 30
.ConnectionTimeout = 30
.ConnectionString = "Provider=SQLOLEDB.1; Server=" & SvName & "; User ID=RS_Auth; Password=weLcomers_auth; Initial Catalog=NORS" ' Test
.Open
.Close
End With
Set objConn = Nothing
TryConnection_NoMsg = SvName
Screen.MousePointer = vbNormal
Exit Function
ErrHandle:
TryConnection_NoMsg = ""
Set objConn = Nothing
Screen.MousePointer = vbNormal
Exit Function
End Function
</pre>
http://stackoverflow.com/questions/1809829/assign-recordset-to-sql-database-using-vb6-1assign recordset to sql database using vb6pbrp2009-11-27T17:14:57Z2009-11-27T20:07:04Z
<p>HI,</p>
<p>I have created recordset in vb6 and stored values that i read from txt file. when iam trying to execute the sql query which will insert my recordset data into dataase table . I am getting error like<br>
''' either EOF or BOF is true, or the current recoed has been deleted. requested operation requires current record. """</p>
<p>I am just attaching my code can anyone pls help where i am doing wrong. i believe there is mistake in prasing the individual name. But i dont know what it is.</p>
<p>Any help will be appreciated.</p>
<pre><code>Public Function ProcessDNE(ByVal strFileName As String) As Boolean
Dim intFileNbr As Integer
Dim strCurrentLine As String
Dim strRoutingNbr As String
Dim strAcct As String
Dim strIndividualName As String
Dim strAmount As String
Dim curAmount As Currency
Dim strParseString As String
Dim strParseFirstNm As String
Dim strParseMidInit As String
Dim strParseLastNam As String
Dim lngMidInitPos As Long
Dim lngParsePos1 As Long
Dim lngParsePos2 As Long
Dim lngParsePos3 As Long
Dim lngParsePos4 As Long
Dim lngParsePos5 As Long
Dim lngParsePos6 As Long
Dim lngPos As Long
frmDNELoad.lblStatus.Caption = "Reading File..."
frmDNELoad.Refresh
'' # Set up rcdDNE structure
With rcdDNE.Fields
.Append "RTN", adVarChar, 9
.Append "AccountNbr", adVarChar, 17
.Append "IndividualName", adVarChar, 22
.Append "FirstName", adVarChar, 50
.Append "MiddleName", adVarChar, 1
.Append "LastName", adVarChar, 50
.Append "Amount", adCurrency
End With
rcdDNE.Open
intFileNbr = FreeFile(1)
Open strFileName For Input As #intFileNbr Len = 95 '' # Open file for input.
Do While Not EOF(intFileNbr)
Line Input #intFileNbr, strCurrentLine
If Mid(strCurrentLine, 1, 1) = 6 Then
strRoutingNbr = Mid(strCurrentLine, 4, 8)
strAcct = Trim(Mid(strCurrentLine, 13, 17))
strIndividualName = Trim(Mid(strCurrentLine, 55, 22))
strAmount = Trim(Mid(strCurrentLine, 30, 10))
strAmount = Left(strAmount, Len(strAmount) - 1)
curAmount = CCur(strAmount)
'' # Add new record to temporary recordset
With rcdDNE
.AddNew
.Fields![RTN] = strRoutingNbr
.Fields![AccountNbr] = strAcct
.Fields![IndividualName] = strIndividualName
.Fields![Amount] = curAmount
.Update
End With
End If
Loop
Close #intFileNbr
frmDNELoad.lblStatus.Caption = "Formatting Names..."
frmDNELoad.Refresh
DoEvents
'' # Parse the IndividualName field
rcdDNE.MoveFirst
Do Until rcdDNE.EOF
lngMidInitPos = 0
lngParsePos1 = 0
lngParsePos2 = 0
lngParsePos3 = 0
lngParsePos4 = 0
lngParsePos5 = 0
lngParsePos6 = 0
strParseString = ""
strParseFirstNm = ""
strParseMidInit = ""
strParseLastNam = ""
strParseString = Trim(rcdDNE.Fields![IndividualName])
'' # Replace double spaces (" ") with a single space (" ")
lngPos = InStr(1, strParseString, " ")
Do While lngPos
strParseString = Mid(strParseString, 1, lngPos - 1) & Mid(strParseString, lngPos + 1, Len(strParseString))
lngPos = InStr(1, strParseString, " ")
Loop
'' # Locate positions of remaining spaces
lngParsePos1 = InStr(1, strParseString, " ")
If lngParsePos1 = 0 Then
lngParsePos2 = 0
Else
lngParsePos2 = InStr(lngParsePos1 + 1, strParseString, " ")
End If
If lngParsePos2 = 0 Then
lngParsePos3 = 0
Else
lngParsePos3 = InStr(lngParsePos2 + 1, strParseString, " ")
End If
If lngParsePos3 = 0 Then
lngParsePos4 = 0
Else
lngParsePos4 = InStr(lngParsePos3 + 1, strParseString, " ")
End If
If lngParsePos4 = 0 Then
lngParsePos5 = 0
Else
lngParsePos5 = InStr(lngParsePos4 + 1, strParseString, " ")
End If
If lngParsePos5 = 0 Then
lngParsePos6 = 0
Else
lngParsePos6 = InStr(lngParsePos5 + 1, strParseString, " ")
End If
'' # Determine if Middle initial is present
If (lngParsePos3 - lngParsePos2) = 2 Then
lngMidInitPos = lngParsePos2 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos4 - lngParsePos3) = 2 Then
lngMidInitPos = lngParsePos3 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos5 - lngParsePos4) = 2 Then
lngMidInitPos = lngParsePos4 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos6 - lngParsePos5) = 2 Then
lngMidInitPos = lngParsePos5 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos2 - lngParsePos1) = 2 Then
lngMidInitPos = lngParsePos1 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
End If
'' # If there is a middle initial, everything to the left of it goes into the
'' # first name field, and everything to the right of it goes into the last
'' # name field. If there is no middle initial, everything after the first space
'' # goes into the last name field.
If lngMidInitPos <> 0 Then
rcdDNE.Fields![FirstName] = Trim(Left(strParseString, lngMidInitPos - 1))
rcdDNE.Fields![LastName] = Trim(Mid(strParseString, lngMidInitPos + 1, Len(strParseString)))
Else
rcdDNE.Fields![FirstName] = Trim(Left(strParseString, lngParsePos1))
rcdDNE.Fields![LastName] = Trim(Mid(strParseString, lngParsePos1 + 1, Len(strParseString)))
End If
rcdDNE.Update
rcdDNE.MoveNext
Loop
'' # Write records to Database
frmDNELoad.lblStatus.Caption = "Loading data into database......"
Call FindServerConnection_NoMsg
'' # Do Until rcdDNE.EOF
'' # rcdDNE.MoveFirst
'' # cmdCommand.CommandText = "insert into t_DATA_DneFrc (RTN, AccountNbr, FirstName, MiddleName, LastName, Amount) values ('" & rcdDNE("RTN") & "', '" & rcdDNE("AccountNbr") & "', '" & rcdDNE("FirstName") & "', '" & rcdDNE("MiddleName") & "', '" & rcdDNE("LastName") & "', '" & rcdDNE("Amount") & "')"
'' # cmdCommand.Execute ()
'' # rcdDNE.MoveNext
'' # Loop
Dim lngRecCount As Long
lngRecCount = 0
Set rcdReclamation = New ADODB.Recordset
With rcdReclamation
.ActiveConnection = objConn
.Source = "insert into t_DATA_DneFrc (RTN, AccountNbr, FirstName, MiddleName, LastName, Amount) values ('" & rcdDNE("RTN") & "', '" & rcdDNE("AccountNbr") & "', '" & rcdDNE("FirstName") & "', '" & rcdDNE("MiddleName") & "', '" & rcdDNE("LastName") & "', '" & rcdDNE("Amount") & "')"
.CursorType = adOpenDynamic
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Open , , , , adCmdStoredProc
End With
rcdDNE.MoveFirst
Do Until rcdDNE.EOF
lngRecCount = lngRecCount + 1
frmDNELoad.lblStatus.Caption = "Adding record " & lngRecCount & " of " & rcdDNE.RecordCount & " to database."
frmDNELoad.Refresh
DoEvents
Call CommitNew
rcdDNE.MoveNext
Loop
frmDNELoad.lblStatus.Caption = "DNE Processing Complete."
frmDNELoad.Refresh
End Function
</code></pre>
http://stackoverflow.com/questions/1805589/expected-compile-error-in-vb6-while-adding-recordset-to-sql-server-2005-datab-2"Expected:=" compile error in vb6 while adding recordset to SQL Server 2005 databasepbrp2009-11-26T20:49:20Z2009-11-27T16:41:41Z
<p>Here I created recordset in vb6 and store values in that vb6. i want to write that recordset values to database table. while executing that code i am getting compile error like "Expected:=". please see the code below. Please let me know where I am doing wrong. I am getting error in cmdCommand.Execute() </p>
<pre><code>With rcdDNE.Fields
.Append "RTN", adVarChar, 9
.Append "AccountNbr", adVarChar, 17
.Append "IndividualName", adVarChar, 22
.Append "FirstName", adVarChar, 50
.Append "MiddleName", adVarChar, 1
.Append "LastName", adVarChar, 50
.Append "Amount", adCurrency
End With
rcdDNE.Open
intFileNbr = FreeFile(1)
Open strFileName For Input As #intFileNbr Len = 95 ' Open file for input.
Do While Not EOF(intFileNbr)
Line Input #intFileNbr, strCurrentLine
If Mid(strCurrentLine, 1, 1) = 6 Then
strRoutingNbr = Mid(strCurrentLine, 4, 8)
strAcct = Mid(strCurrentLine, 13, 17)
strIndividualName = Trim(Mid(strCurrentLine, 55, 22))
strAmount = Trim(Mid(strCurrentLine, 30, 10))
strAmount = Left(strAmount, Len(strAmount) - 1)
curAmount = CCur(strAmount)
End If
' Add new record to temporary recordset
With rcdDNE
.AddNew
.Fields![RTN] = strRoutingNbr
.Fields![AccountNbr] = strAcct
.Fields![IndividualName] = strIndividualName
.Fields![Amount] = curAmount
.Update
End With
Loop
Close #intFileNbr
frmDNELoad.lblStatus.Caption = "Formatting Names..."
frmDNELoad.Refresh
DoEvents
' Parse the IndividualName field
rcdDNE.MoveFirst
Do Until rcdDNE.EOF
lngMidInitPos = 0
lngParsePos1 = 0
lngParsePos2 = 0
lngParsePos3 = 0
lngParsePos4 = 0
lngParsePos5 = 0
lngParsePos6 = 0
strParseString = ""
strParseFirstNm = ""
strParseMidInit = ""
strParseLastNam = ""
strParseString = Trim(rcdDNE.Fields![IndividualName])
' Replace double spaces (" ") with a single space (" ")
lngPos = InStr(1, strParseString, " ")
Do While lngPos
strParseString = Mid(strParseString, 1, lngPos - 1) & Mid(strParseString, lngPos + 1, Len(strParseString))
lngPos = InStr(1, strParseString, " ")
Loop
' Locate positions of remaining spaces
lngParsePos1 = InStr(1, strParseString, " ")
If lngParsePos1 = 0 Then
lngParsePos2 = 0
Else
lngParsePos2 = InStr(lngParsePos1 + 1, strParseString, " ")
End If
If lngParsePos2 = 0 Then
lngParsePos3 = 0
Else
lngParsePos3 = InStr(lngParsePos2 + 1, strParseString, " ")
End If
If lngParsePos3 = 0 Then
lngParsePos4 = 0
Else
lngParsePos4 = InStr(lngParsePos3 + 1, strParseString, " ")
End If
If lngParsePos4 = 0 Then
lngParsePos5 = 0
Else
lngParsePos5 = InStr(lngParsePos4 + 1, strParseString, " ")
End If
If lngParsePos5 = 0 Then
lngParsePos6 = 0
Else
lngParsePos6 = InStr(lngParsePos5 + 1, strParseString, " ")
End If
' Determine if Middle initial is present
If (lngParsePos3 - lngParsePos2) = 2 Then
lngMidInitPos = lngParsePos2 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos4 - lngParsePos3) = 2 Then
lngMidInitPos = lngParsePos3 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos5 - lngParsePos4) = 2 Then
lngMidInitPos = lngParsePos4 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos6 - lngParsePos5) = 2 Then
lngMidInitPos = lngParsePos5 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
ElseIf (lngParsePos2 - lngParsePos1) = 2 Then
lngMidInitPos = lngParsePos1 + 1
rcdDNE.Fields![MiddleName] = Mid(strParseString, lngMidInitPos, 1)
End If
' If there is a middle initial, everything to the left of it goes into the
' first name field, and everything to the right of it goes into the last
' name field. If there is no middle initial, everything after the first space
' goes into the last name field.
If lngMidInitPos <> 0 Then
rcdDNE.Fields![FirstName] = Trim(Left(strParseString, lngMidInitPos - 1))
rcdDNE.Fields![LastName] = Trim(Mid(strParseString, lngMidInitPos + 1, Len(strParseString)))
Else
rcdDNE.Fields![FirstName] = Trim(Left(strParseString, lngParsePos1))
rcdDNE.Fields![LastName] = Trim(Mid(strParseString, lngParsePos1 + 1, Len(strParseString)))
End If
rcdDNE.Update
rcdDNE.MoveNext
Loop
' Write records to Database
Call FindServerConnection_NoMsg
Dim cmdCommand As New ADODB.Command
If rcdDNE.EOF = False Then
rcdDNE.MoveFirst
cmdCommand.CommandText = "insert into DneFrc (RTN, AccountNbr, FirstName, MiddleName, LastName, Amount) values (RTN, AccountNbr, FirstName, MiddleName, LastName, Amount)"
cmdCommand.Execute()
rcdDNE.MoveNext
Loop Until rcdDNE.EOF = True
</code></pre>
http://stackoverflow.com/questions/727386/making-a-c-kill-event-for-a-vb6-app0Making a C# kill event for a vb6 app?Steve2009-04-07T20:10:16Z2009-11-27T12:33:40Z
<p>I have a VB6 app that processes for a very, very long time. Killing it directly is not feasible, so I would like to set some sort of flag in the VB6 app. If in my C# app I decide to shut it down, I would like to toggle this flag to let the VB6 app know that a shutdown has been requested. Now, I also need something that is named because there will be several of the VB6 apps spun up as activex exes. Does anyone have any idea how to implement something like this? The workflow follows below</p>
<p>C# app - Spin up mulitple VB6 activex.exes in separate threads, Initialize the app with something (henceforth called a flag) I can change in C#, and call the DoStuff command, which takes a very long time to return.</p>
<p>VB6 - Gets the initialize command with the flag. DoStuff gets called. In the DoStuff loop, it checks if the flag is still set.</p>
<p>C# - Kill the project by setting the flag to another state</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/155517/cancelling-a-long-running-process-in-vb6-0-without-doevents7Cancelling a long running process in VB6.0 without DoEvents?Stuart Helwig2008-09-30T23:05:08Z2009-11-27T12:32:42Z
<p>Is it possible to cancel out of a long running process in VB6.0 without using DoEvents?</p>
<p>For example:</p>
<pre><code>for i = 1 to someVeryHighNumber
' Do some work here '
...
if cancel then
exit for
end if
next
Sub btnCancel_Click()
cancel = true
End Sub
</code></pre>
<p>I assume I need a "DoEvents" before the "if cancel then..." is there a better way? It's been awhile...</p>
http://stackoverflow.com/questions/1793102/getting-com-exception-80040154-on-different-machine0Getting COM Exception 80040154 on different machineabc2009-11-24T21:40:21Z2009-11-27T08:48:48Z
<p>Hi All,
I am getting following problem, can someone help please?
I used Tlbimp utility and converted VB6 COM DLL into RCW DLL. From my Visual Studio 2008, I used "Add Reference" and used that DLL in c# class. Everything works fine on my machine.
But if someone else use the same project on his/her machine then on that machine they get following error: "Retrieving the COM class factory for component with CLSID {x} failed due to the following error 80040154". I tried to search for that CLSID GUID on that machine but couldn't find under HKCR/CLSID location.</p>
<p>Does anyone has clue/idea why its giving problem on different machine and what I can try to resolve this problem?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1774952/accessviolationexception-in-com-control-in-net-app1AccessViolationException in COM control in .NET appKrzysztof Koźmic2009-11-21T08:39:03Z2009-11-27T06:26:47Z
<p>I'm working for a client that has a VB6 app in the migration process to .NET.</p>
<p>Currently they have a .NET shell, but host some old VB6 controls in .NET.
There's an error I stumbled upon is logs that happens when they in .NET asynchronously pull some data from the database, and then forward that data to a COM component to display it:</p>
<pre><code>The Undo operation encountered a context that is different from what was applied in the corresponding Set operation. The possible cause is that a context was Set on the thread and not reverted(undone).
Err Source: mscorlib
Err Type: System.InvalidOperationException
ERROR stack trace:
at System.Threading.SynchronizationContextSwitcher.Undo()
at System.Threading.ExecutionContextSwitcher.Undo()
at System.Threading.ExecutionContext.runFinallyCode(Object userData, Boolean exceptionThrown)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteBackoutCodeHelper(Object backoutCode, Object userData, Boolean exceptionThrown)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry tme)
at System.Windows.Forms.Control.InvokeMarshaledCallbacks()
</code></pre>
<p>then the following shows up in the logs:</p>
<pre><code>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
Err Source: mscorlib
Err Type: System.AccessViolationException
ERROR stack trace:
at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData& msgData)
at _Client's component that forwards calls to COM_
</code></pre>
<p>Did anyone ever encounter something like this? How do I approach fixing it?</p>
http://stackoverflow.com/questions/1805514/c-best-approach-for-a-responsive-ui-during-sql-query-using-com-interop0C# Best approach for a responsive UI during SQL query using COM interopLynxy2009-11-26T20:27:15Z2009-11-27T04:57:54Z
<p>I am making a C# DLL plugin for a EXE written in VB6. I do not have access to the source of the EXE. The DLL itself works and communicates fine with the EXE.</p>
<p>Here is the process for a event:</p>
<ol>
<li>User issues command on EXE which then calls a function in the DLL, passing an object as a parameter</li>
<li>DLL processes data which sometimes takes a long time</li>
<li><p>The DLL responds by calling a function of the object that was passed. The DLL function itself does not return anything</p>
<pre><code>public void DoCommand(object CommandSettings)
{
//ObjectVB6 is my custom class to allow easy calling of COM methods and properties
ObjectVB6 CS = new ObjectVB6(CommandSettings);
... //process data
CS.CallMethod("MyReply", args);
}
</code></pre></li>
</ol>
<p>My problem is that during long queries (from the DLL), the EXE's UI freezes.</p>
<p>What is the best way to prevent this? I have tried using asynchronous MySQL queries, which were no good, and tried using multiple threads, which just run into protected memory issues.</p>
<p>Any advice you can provide would be awesome. Been trying to address this issue for days. Thanks.</p>
http://stackoverflow.com/questions/1805196/what-is-requery-in-vb60what is requery in vb6?pbrp2009-11-26T19:00:14Z2009-11-26T19:08:40Z
<p>what is requery in vb6? how to use that one? can anyone help ?</p>
http://stackoverflow.com/questions/1797808/how-do-you-parse-a-string-in-vb61how do you parse a string in vb6?jo2009-11-25T15:44:01Z2009-11-26T10:30:02Z
<p>Some of us unfortunately are still supporting legacy app like vb6
I have forgotten how to parse a string </p>
<p>given a string
dim mystring as string ="1234567890"</p>
<p>how do you loop in vb6 through each character and so something like</p>
<pre><code> for each character in mystring
debug.print character
next
</code></pre>
<p>in c# i would do</p>
<p>char[] myChars = mystring.ToCharArray();
foreach (char c in theChars)
{
//do something with c
}</p>
<p>Any ideas?</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/1801565/code-signing-didnt-complain-when-i-changed-an-exe-file0Code signing didn't complain when I changed an exe file?Tony Toews2009-11-26T04:43:12Z2009-11-26T05:18:52Z
<p>I purchased a code signing certificate and all looks well. When tested inside a clean Virtual PC OS I no longer get the "The Publisher could not be verified" message.</p>
<p>So just for grins, using a hex editor, I change a few constants in the VB6 exe which I see on a form. And the VB 6 exe still runs wihout any error message.</p>
<p>I thought the code signing certificate would tell you if the file had been changed in any way?</p>
http://stackoverflow.com/questions/1797709/how-to-read-txt-file0how to read txt file.?pbrp2009-11-25T15:30:30Z2009-11-25T15:42:23Z
<p>I am reading textfile using vb6 code. My requirements are if the line starts with 6 then i need to read that line otherwise i have to leave that line and goto next line. can anyone help me how to do that?</p>
<pre><code>if ( start pos == 6)
{
//do
}
else
{
//do noting
}
</code></pre>
<p>i need this help in vb6.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1789236/using-stored-procedure-in-crystal-report-8-50Using stored procedure in crystal report 8.5?odiseh2009-11-24T10:38:29Z2009-11-25T13:31:50Z
<p>I have made a new report using Crystal Reports 8.5 (report1) which uses a stored procedure as its data source. The stored procedure has 2 input parameters (@p1 and @p2) and when I enter some test data for @p1 and @p2 within crystal report IDE , every thing is all right. Then, I added the report1 in visual basic 6.0 IDE and added a new form (form1) and a crystal report viewer control on form1. Now please help me: I wanna to show the report1. What codes exactly should I write to show it?How send data user has entered to the stored procedure parameters via application?
I also get this error messsage: the server has not been opened yet"</p>
<p>What's wrong?</p>
http://stackoverflow.com/questions/1193873/which-reasons-could-make-shellexecute-fail2Which reasons could make ShellExecute fail?MicSim2009-07-28T12:47:59Z2009-11-25T13:18:33Z
<p>I have a VB6 application which opens files with their associated application using:</p>
<pre><code>ShellExecute(0, "open", filename, params, vbNullString, vbNormalFocus)
</code></pre>
<p>This works perfectly. </p>
<p>Now I got a customer (running XP with Adobe Reader) who can't open any PDF file using the above command. But the same file is being opened without any problems when double clicking it from Windows Explorer. I also tested the filename/-path combination on my machine to exclude those kind of problems.</p>
<p>I'm searching for any hints on what I could check to make sure <code>ShellExecute</code> is working. Or what can cause ShellExecute to fail this way?</p>
http://stackoverflow.com/questions/1791774/how-to-remove-cookie-with-underscore-in-name-in-vb60How to remove cookie with underscore in name in VB6?Grzegorz Gierlik2009-11-24T17:51:13Z2009-11-25T11:42:34Z
<p>I have VB6 web application and I have to remove cookie. Unfortunately cookie has underscore character in name -- exemplary cookie name looks like that: <code>XXXXXXAAASS_session_key</code>.</p>
<p>When I try to remove it by assign empty value to it:</p>
<pre><code>Response.cookies.Item("XXXXXXAAASS_session_key") = ""
</code></pre>
<p>I've got a new cookie with name <code>`XXXXXXAAASS%5Fsession%5Fkey</code> (underscore in encoded as <code>%5F</code>) as my Firefox browser reported (both in Cookie view somewhere in FF options and in Firebug view of request).</p>
<p>I also tried to clear this cookie from Javascript with code like:</p>
<pre><code>document.cookie = 'XXXXXXAAASS_session_key_session_key=;expires=Thu, 01-Jan-70 00:00:01 GMT;path=/';
</code></pre>
<p>This also didn't work :( -- creates cookies in other domain.</p>
<p>I am afraid I cannot change cookie name.</p>
<p>Now I will try to iterate over <code>cookies</code> collection, but I don't believe it will work :(.</p>
<p>Any idea what I can do wrong?</p>