On CHOW: How to tip at a restaurant
18 Resources for

vb6

  • Subscribe to this listing via:
  • RSS
  • Email
Did you mean Microsoft Visual Basic 6.0 (357 results)

TechRepublic Resources

how to store data to MS Access2003 from visual Basic6?
i am a beginner in VB...i am trying to store data taken in VB to MS Access...and make a database in the access....but am not able to do so...could any one give me tips???
Tags: hel_hev@..., software, vb6, Microsoft Corp.
Discussion threads 2007-02-21
adStoredProcedure Timeout
Hi,I running a stored procedure from VB6 using adStoredProcedure, and it's timing out. it takes a little over a minute for the stored procedure to run Is there a way to set the timeout for longer than the default?Thanks
Tags: safaridog@...
Discussion threads 2007-01-20
Database provider error 3706
i have finish my small program in VB and it has microsoft access 97 databse and my program it works on my computer very well but when i install it to other computer it's give message that tell error 3706 provider can't be found i try to install MDAC 2.7...
Tags: database, kheb1999@..., programming, vb6
Discussion threads 2007-01-17
VB 6,Mysql 5.0 and Crystal Report 10
i have just created an application using vb 6.0, mysql 5.0 as the database and crystal report 10 prof. the system run smothly on the developers machine but when i package and install it on the client's machine, i get a similar error "ActiveX compnent c
Tags: vb6, programming, mysql, salusamuel@..., crystal report 10., Microsoft Visual Basic
Discussion threads 2006-12-20
SPSS and VB6
Is VB6 capable to retrieve data from sqlserver and then export it to SPSS ......YesThere's got to be a better of doing what you want than that though. SPSS will import from an ascii file SQL Server's DTS will export to an ascii file.What is it you actually want to...
Tags: Microsoft Visual Basic 6.0, programming, Silly, SPSS, SPSS Inc., vb6
Discussion threads 2006-01-02
Display a select folder dialog box in VB6
Using BrowserForFolder tipTo get the full path of the selected folder, use...shlFolder.Items.Item.PathLacks detail-very sketchyThe article assumes that the average VB6 programmer will be able to fill in the detailswhich have been missed out.However,if a programmer needs the code given here he will also need more detailed guidance as to where...
Tags: Development tools, shlFolder.Items.Item.Path, Microsoft Visual Basic 6.0, SHELL32
Discussion threads 2005-12-16
HOW-TO: SCHEDULE A JOB OF EXECUTING A DTS PACKAGE FROM WITHIN VB6
Hi,I have recently created a VB6 application that provides a list of available DTS Packages on the SQL Server 2000 database to the user and allows them to execute the package. Although the function works fine, there is a need to have the task schedule to execute at a...
Tags: DTS, dts package, fsanchez@..., job, Microsoft Visual Basic 6.0, Package, programming, sql server job scheduler, vb6
Discussion threads 2005-11-12
Access user submitted data with the Request object
Connectionplz help meiam a vbprogramer i submitted the data in the web but data not save in web sapace plz send the source code in save the data in access database in my web space thanksmy email Add: vbprogramer@msn.com
Tags: Microsoft Access, programming, Request Object, vb6, Vbprogramer@..., Web
Discussion threads 2005-10-28
Keep a VB6 application log
Simplify your lifePut the check for the global flag as the first step inside the subroutine, that way you don't have to code "if logfile then writetologfile" each time you add a logging point in the program - just call WriteToLogFile and let it make the decision whether or not...
Tags: jruby, Microsoft Visual Basic 6.0, permission, programming, security, vb6
Discussion threads 2005-09-27
Get the most out of Variants in VB6
Variants in VB.NETIf you aren't using variants in VB6, don't start now. Either of the tricks mentioned here will cause you fits when you try to convert to VB.NET. Variants are replaced with objects and the conversion will change IsNull to IsDBNull and things probably won't work right....
Tags: etruss@..., Microsoft Visual Basic 6.0, programming, VARIANT, vb.net, vb6
Discussion threads 2005-09-16
Preserve procedure variables with Static in VB6
Real BenefitsThe takeaway of the article says:"Peter Aitken demonstrates the benefits of using Static"but the article is simply a description of how to declare Statics without mentioning any real uses. Thus the description of benefits should read:"Declare a variable as persistent static to make sure that the value persists between...
Tags: aroggeband@..., benefit, examples, Microsoft Visual Basic 6.0, programming, Static, static variables, vb6
Discussion threads 2005-09-12
How do I get Task ID
How do I get my own Task ID in VB6. (I know I can use Shell to start and retrieve one, I just want my own!)Check out the App objectUm... "Task ID"?App.ThreadID returns the thread ID.App.hInstance returns the instance handle. (Not very useful in Win32 - See Dan Appleman's "Visual...
Tags: Task
Discussion threads 2005-09-09
Displaying file properties from within VB6
over my headI liked the concept, but the description was far too deep into geekspeak for it to be usable for me. I don't do heavy programming in VB6, just complex macro work in XL. Would've needed to hold my hand, explaining each piece of the coding, for this to...
Tags: annmarie.cross@..., CStr, file properties, fMask, Long strSQL, lpVerb & vbCr, Microsoft Visual Basic 6.0, nShow, programming, ShellExecuteEx shInfo strSQL, String, String strSQL, strSQL, vb6
Discussion threads 2005-08-19
Make the most of your graphics with VB6's PictureClip control
loadpictureDoes anyone know how to have the loadpicture function load in the backgound? or cancel the image load?i.e. I am displaying an image control and setting the .picture property to the loadpicture function result (Me.imgPic.Picture = LoadPicture("\networkshareimage1.jpg")).The problem is if there is a very large image or the network...
Tags: DrewW, graphics, loadpicture, Microsoft Visual Basic 6.0, programming, vb6
Discussion threads 2005-08-01
Implement a MouseExit event for VB6 controls
Problems with thisIf you use this, test it carefully - I've had problem doing something very similar in the case when the mouse is moved very rapidly off the control - sometimes the surrounding object which detects the mouseexit doesn't trigger the mouse event. In the end I had...
Tags: Mad-H, Microsoft Visual Basic 6.0, mouse, mouseexit, programming, vb6
Discussion threads 2005-07-15
Save time with VB6's Definition command
A quicker wayPress Ctrl-i when over a var or property and you will see the type declaration in a tooltip without leaving the code section.CoolThis is something that I didn't get from any MS VB class. It will be handy in much of my code, thanks. I noticed...
Tags: Cidtek, definition, Microsoft Visual Basic 6.0, programming, vb6
Discussion threads 2005-07-01
Gain data storage flexibility in VB6 with dynamic arrays
too simplifiedThis article should be fuller to show that redimming 2-dim arrays is MUCH more cumbersome and has severe limitations such that the first dimension cannot be redimmed. ( I guess that's why MS put the .GetRows in the recordset to account for that).I do:Dim arData as variantRedim arData(10,1) ...
Tags: data storage, Microsoft Visual Basic 6.0, programming, storage, tjc_tek@..., vb6, vb6 arrays
Discussion threads 2005-07-01
Old MSDN Library for old VB6
Does anyone know where to download the old MSDN library help cds that integrates into VB6 (purchased in 2000)? Updated with SP6.Apparently it needs to be Oct 2001 or older to integrate.The newer versions downloaded from Microsoft don't want to work except stand alone.msdn.microsoft.comIf you are a subscriber to...
Tags: help, library, Microsoft Developer Network, Microsoft Visual Basic 6.0, msdn, programming, vb6, w01@...
Discussion threads 2005-05-26

Additional Resources

Retrieving data from excel using VB6
Hi,I am new to vb6.I have just started programming in vb6. Can you please tell me in detail as to how can i retrive data from an excel spread sheet using vb6.Thanks,manoj
Tags: Development tools, manojgadiyar@..., Microsoft Visual Basic 6.0
Discussion threads 2007-07-06
datareports
i have to print like this using datareports in vb6bill no. amt bill no. amt okbut i dont know how can do it ?tell me plzVB6...
Tags: Development tools, VB6 Language Reference, Microsoft Visual Basic 6.0
Discussion threads 2005-05-24
  • << Previous
  • page 1 of 1
  • Next >>


Quick Guide: Windows Group Policy
One way for help desk technicians and network administrators to reduce help desk calls and protect their networks is to limit the damage curious users ...
Buy Now
TechRepublic's E-mail Usage Policy
Numerous studies indicate that personal e-mail use at work is a leading cause of lost productivity. In addition, personal e-mail use can introduce vir ...
Buy Now

The PC Cracked Open