This code worked on the dev pc with vs2005. Since migrating to vs2008 it no longer works. Now a dialog screen appears requesting login information when the Viewer is run. Here is the code snippet.......
I am migrating an old vb6 app to a Windows 7 Pro (32) PC, until the app gets rewrittten with newer technology. Everything works fine except the following CreateObject(MSSOAP.SoapClient) which fails...
2 scenarios on same form that I can't figure out.
1) I have 2 text boxes on initial form, txtUPC1 and txtWT1. User keys information into the boxes, then can click button to add 2 more text boxes,...
I used the walkthroughs provided by MS to create a new app, and have a problem that is not addressed in the docs.
I created an XML Web service as in the walkthoughs to access/edit a table in...
Creating a web services to act as the middle tier to an MS-SQL2000 .NET app, much like MS has shown in their walkthroughs. Does anyone know if there are any limits to the number of datasets we can...
I have to convert an in-process DLL made in VB6 to an ActiveX EXE. Can I simply reference the DLL from within the EXE and make calls to it (adding needed events), or should I rewrite the DLL from...
I have an ActiveX .dll created in VB6 that we are converting to .NET. We are investigating moveing to web services. So...
Should we re-create the .dll as a class library, then tie a web service to...
I have a COM dll that returns a variant multidimensional array.
For example ..data type shown in ()
aR(0,0) = COMPANY NAME (string)
aR(0,1) = COMPANY ADDRESS (string)
aR(0,3) = YTD REVENUE...
Can someone advise proper syntax to use STRUCTURE for vb.net?
Can't find anything in help.
vb6 code
PUBLIC TYPE fw_Reginfo
fwrCLientLoaded as Boolean
fwrClientName as String
END TYPE
12 fields in the rs.
code reads;
.
with rsTmp
.Sort = "COST" ' FieldType double, want it in ascending order
.Filter = "COST > 0" ' Do not return records with 0 in COST
end with
....
The answer to this question may be really easy, but my brain is turning to mush with the learning curve moving to .NET.
.
We are moving a vb6 COM dll to vb.net. There is a LARGE amount of dynamic,...
Finally getting into VB.net and tried converting an existing vb6 app. Going through the upgrade report, one thing sticks out...GOTO <label>. The code would read something like this:
I checked both the ADODB and ADODX libs and there doesnt seem to be anything, yet in MS-ACCESS the description field shows in listview, so MS must have a property to cover this field. Can't even seem...
Is there a way through VB to view the "Description" of a field in an Access table? ie in table design, you can view/edit Field Name, Field Type and Field Description. Cannot find any source that...
I have an text file with 700,000+ records. When I imported into Access all the accented characters were changed, but if I import into MS-SQL they remain the same. For example É shows up as Φ in...
Wonder if someone already has some code. I want to control when a user can access a bound combo's drop down list, similar to the TextBox Locked Property only via API. Not interested in using the...