Advertisement

Over 40 Experts attended the first Annual Core Conference! Take a look at what happened throughout the week...

2008 Core Conference

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested VB Controls Solutions: 1 - 25 of 692
 
Hello Experts, I have a report that is generated from a third party application as a text file. I need to read and obtain some specific information contained in this text file. I need the f...
Hi I normally have to program in .NET and i love the substring function, but how do you do it in vb6 (i have to modify some old code) My .NET code is 'Declare Variables Dim i As Inte...
I am a student of VB.  I am trying to figure out how to open an Excel workbook by clicking on a button on my VB form.  I keep getting a message that the method is unsupported and the starred l...
Hi i have an easy question but lol i wasn't able to solve it... i want to change a string to integer...             Dim strTo2 As String       Dim strFrm2 As String       Dim strFrm As In...
Hi Guys, i use vb6 ,Access 2000 Database. my format date is like below. But why diffrence os PC show diffrence format. CqDate = Format(Date, "dd/MM/yyyy") in winxp the date show 12/...
Hi all,  I have a string include spaces, how do I make a split to this string by "&". I used the split function, but this function make a problem with spaces array = Split("aaa sss&eee...
Everytime I try and run my app on another PC I get this error. Am using Visual Studio 6, SP5. Button I click on to get error is "Next form" Private Sub Command1_Click() DBSAR.Show End S...
How do I create a new text file in VB6, so I can then use it with the Open, Write, Input, Output, and Read command? I will be creating this file based off of a serial number generator, so the...
Image Control Array: Image1 (<array 0...>) Event: MouseDown (Right_Click)--activates pop-up menu relative to specific image control array. Question: Do you use a Select Case or If...Then.....
I recently wrote some software in visual basic and I am trying to sell it as shareware. The key generator that I used was also written in visual basic.  The distributor site that I am working ...
I am trying to have VBA open an instance of IE and browse to a specific URL Private Sub DrawingIn_Click()    Set browser = CreateObject("InternetExplorer.Application")    browser.N...
I am trying to write a VBS that will remove a line from a text file if it contains a certain string value.  I've got most of the way through, except for the part about deleting the line.  That...
Howdy I have 12 worksheets, each with 11 columns of data that I need to transfer into 11 other worksheets, one collumn at a time.  The pseudocode below sort of shows what I'm trying to do, ...
Hi- I have a SINGLE list of values that I want to display in a multi-column listbox (i.e. I want to eliminate the vertical scrolling).  I want this multi-column list to display when I click...
In a nutshell, I'm trying to populate a ListBox on a UserForm as follows Dim i as Long Dim ColArray As Variant ColArray = Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L",...
I have a form that contains a picturebox that I've loaded up with an image and added the ability to freehand draw (Pen, Drawpath) in the picturebox.  I used to be able to leverage the SavePict...
I have a Form at Visual Basic 6. I want to provide one pop-up menu by right mouse click on the Form. The options on the menu are 1. Open 2. Close. If user select Open then show frmUser.fr...
In Access, I am calling a report from a parameter form, and passing a parameter with the where clause in the DoCmd.OpenReport method. How do I get the parameter value, which is typed in by the...
Hello, I am trying to find some completed excel VBA code or a macro that allows me to specify a directory and automatically generates a list in Excel of the folders, subfolders and files - ...
Hi, Does anyone know the new codes to operate WMP 9 in VB6? For example, to play a file in my program. Thanks!
Hi there. I want to send a simple E-mail using "Microsoft CDO for NTS 1.2 Library". Here is the code I have thus far. START OF VB CODING ---------------------------------------------...
I have a Windows VB.NET application that needs to be able to detect when a key is pressed REGARDLESS as to what has focus or what forms and user controls are loaded. Is there some sort of glob...
hai all    i am trying to register the CRYSTL32.OCX control .I got an error "Loadlibrary("c:\WINDOWS\System\CRYSTL32.OCX")failed GetLastError returns 0x00000485" anyone knows the so...
In my VBA Excel application, I need to use Internet Explorer to obtain some required data. From my VBA program, I also need to be able to set values in the Internet Explorer within several tex...
Hi, I was wondering if anyone could help me out with quite a simple problem here. I am trying the write a macro the pop-up a combo box on one of my Excel worksheet. The combo box would app...