0
votes
2answers
7 views
CheckTokenMembership in VB6
Hello All,
I'm having a hard time converting this C++ code to VB6 code. I've search the net and haven't found anything. PInvoke.net only has reference to VB.NET code. Here's the code from MSDN:
BOOL …
0
votes
1answer
27 views
Invalid use of property in vb6
Hi,
I Have recordset rc1 that reads values from txt file. The fields are rtn, amt, name. Now I get the data from table t_rec and assigned it to another recordset rc2. and compare with the recordset …
0
votes
1answer
11 views
compare two record sets in vb6
HI,
I have two recordsets rs1 and rs2 in vb6. i want to compare each record in rs1 with each record in rs2. If rtn(column) in rs1 is same as in rtn in rs2.then set date = now and claim = c.
This is …
0
votes
2answers
73 views
different numbers from 1 to 10 using vb6
i want to generate 10 different numbers from a range of 0-9. the desired output may look like this, 9 0 8 6 5 3 2 4 1 7
Dim arraynum(9) As Integer
Dim crmd As Boolean
Dim rmd as integer
For i = 0 To …
1
vote
8answers
97 views
Technology choice for redesigning an old VisualBasic-Application
Completely unexpectedly, I (a webdeveloper, with a decent knowledge in OO), am tasked to re-design our old flagship Windows-application and drag it screaming and kicking into the next century.
Here's …
0
votes
1answer
21 views
Collating Sequence Not supported by operating system
I am moving from SQL 2000 to SQL 2008. The SQL 2000 is on a Server 2003. SQL 2008 is on a Server 2008. I have imported my database successfully. I am able to perform queries and they work fine. I use …
0
votes
4answers
81 views
Is there any way to tell if the Windows Directory is writeable without actually writing to it to test?
I have some old vb6 code that checks to see if the Windows directory is writeable by WRITING to it then reading a value back.
But... we have a virus scanner that's viewing that as suspicious behavior …
1
vote
1answer
32 views
Where do I download : VBRun60sp6.exe (which installs Visual Basic 6.0 SP6 run-time files) ?
When I go to the MS web page describing the latest VB Runtime Files list it directs me to what looks like the right download for VBRun60sp6.exe but when I actually download it it's …
0
votes
2answers
18 views
assign table values to recordset and update with another recordset using vb6.
HI,
I want to assign database table columns to recordset in vb6. And i want update them with the values that i have in my another recordset. Is that possible? Any idea or example code will be …
1
vote
4answers
40 views
Control Properties in Visual Basic 6
Is there a way to ask for a control property in a loop??
I need somethig like this:
For each p in control.properties
if p = "Value" then
msgbox "I Have Value Property"
elseif p = …
1
vote
2answers
15 views
GetTokenInformation in Visual Basic 6
Hello,
I am using GetTokenInformation as a part of the code that determines if the current thread is running as an Administrator.
Anyway, I have a structure for TOKEN INFORMATION that looks like …
0
votes
0answers
15 views
ActiveX component for SMTP proxy
Hi all,
i'm looking for an activeX component which works as proxy and allows reading/manipulating smtp traffic. any ideas?
thx
0
votes
1answer
27 views
Is it possible to modify the settings from an .frm file in the executable?
I have a compiled VB6 application without access to the source. Is it possible to modify certain settings made in the .frm file in the executable? In my case I want to change the color of a control.
…
0
votes
3answers
41 views
Make child window transparent to user input
Is there a way to make input "pass through" a child window and reach its parent? My problem is this: I'm making custom control with a label that can be formatted. So, rather than trying to re-invent …
0
votes
0answers
13 views
Windows 7: Automatic Logon Policy not working for winhttp API VB6 activeX control
I'm using WinHttp to do POSTs in a VB6 activeX control as follows
Set WinHttpReq = New WinHttpRequest
WinHttpReq.Open "POST", strUrl, False
WinHttpReq.SetAutoLogonPolicy …
