10,987 Topics

Member Avatar for
Member Avatar for BombAppetit

greetings i'm currently working on my Form in VB6. it has a list box that i use to display table. How do i display table from a different database? i did it before by modifying row source property in VBA, but that only works if the form is part of …

Member Avatar for Comatose
0
133
Member Avatar for INI

I have a question, does anyone know why "Div/0" error comes up in VB? My program reads/writes to several files. On my computer and one of my friends computer, it works perfectly; though there are some desktops machines that I receive that error. When I step through the program to …

Member Avatar for INI
0
172
Member Avatar for rajesh.nich

hello sidekicks, I want a sample code for How to call Crystal report version 11 throubh Visual basic 6.0

Member Avatar for riffazra
0
76
Member Avatar for ykc

Hi, When I run an application written using VB6 and MS Access 2000 in Windows XP and Windows 2003 server,the system will prompt illegal operation (sslstbar.ocx, ssdw3a.ocx and ssdw3b.ocx) and the program will hang. Hope anyone can guide me to resolve this problem soonest possible. Your help are really appreciated. …

Member Avatar for nareshPenneti
0
135
Member Avatar for bang2711

i need some help over here, as i`m quite new to this program. i have some problem over on how to create. i need 1 tab to be on the screen but inside the tag i got 2 button. the button is auto add on whenever i do update on …

Member Avatar for maheshsayani
0
194
Member Avatar for savi_karthika

Hello How to produce daily sales for each item in a month of a shop using dbgrid. It should give how much numbers sold for each item in every day of a month. Pls help

Member Avatar for maheshsayani
0
99
Member Avatar for russell214

I'm using VB6 as my frontend and MSACCESS as backend. I have a field in tblHistory named "payperiod". I have put text in this field. content of payperiod: JANUARY 1 - 15, 2006 JANUARY 16 - 31, 2006 FEBRUARY 1 - 15, 2006 FEBRUARY 16 - 28, 2006 and so …

Member Avatar for maheshsayani
0
205
Member Avatar for propricer

When I put a 'type' statement inside a procedure, it tells me invalid inside procedure. When I move it to the declarations section, it tells me invalid outside procedure. Help ... Where's the middle ???

Member Avatar for Comatose
0
107
Member Avatar for Embeza

Hi every body Can you please fix me errors. Here are my codes and errors incountered #Stage1 I want the user to type in the file path to txtpath.Text and a text input to be appended to that file be written in txtwrite.Text The error: Run Time error ->path not …

Member Avatar for Embeza
0
270
Member Avatar for vbmade2000

Hello All I have problem in database management in vb6 using access database. I have created small code library to store code snippets. When i add new code to database then size of database is increased.This is normal. But whenever i remove some code from my database then size of …

Member Avatar for maheshsayani
0
68
Member Avatar for Maria_19

Hi Every one I need some help with excel macros. I am a beginner so I dont know much about writing my own macros but what i need is a macro that can read a particular cell's contents from an excel sheet then search in the directory tree and retrieve …

Member Avatar for Maria_19
0
222
Member Avatar for s0312001

[CODE] Function CheckWord(ByVal Wrd As String) As String Dim i As Integer Dim Pos As Integer Dim Found As Integer Found = 0 For i = 1 To 26 Pos = InStr((Word(i).ToLower), Wrd.ToLower) If Pos <> 0 Then CheckWord = Word(i) Found = 1 End If Next If Found = …

Member Avatar for Comatose
0
280
Member Avatar for s0312001

Hello...:rolleyes: I know that you have done some work in the speech recognition field,do you know anything about testing for the presence of a sound. This would enable me to do extra processing when it was not recognised. are there facilities to manipulate the sensitivity of the word recognition? i …

Member Avatar for s0312001
0
98
Member Avatar for YASIR IRFAN

Dear All, I have an application witch get real time data and update itself like STOCK MARKET trading terminal. I want to capture real time data and store it in a text file. Please help me in this regard Thanks:sad:

Member Avatar for Comatose
0
216
Member Avatar for bobburney

My goal was to move the software from a Win98 machine to an XP Machine. I attached the 98 hard drive to my laptop and copied several folders over but I was unable to get it to work. When I restarted the 98 machine the dos program gets an error …

0
75
Member Avatar for DarkAlex

Hello. This is a very very basic question about variables in range names. I have quite a few ranges of varying lengths in multiple Excel documents. I want all the ranges standardized and set to the same length, but I don't know what that length will be yet, and it …

Member Avatar for DarkAlex
0
123
Member Avatar for haria_kishore

Hi everyone I have a table with 3 columns pk_itm_code name fk_code The pk_itm_code is taken from another master table. Now my requirement is automatic generation of fk_code fk_code = pk_itm_code + "PT" + random generated no. (startin from 1) If the user selects same pk_itm_code 2 times then the …

Member Avatar for Comatose
0
77
Member Avatar for maheshsayani

hi all i want to learn more about DLL and ActiveX control I Want the link of any site which offers learning about dll and active x in vb with Examples and demo to how to create then in step by step process Please Any one can help me in …

0
53
Member Avatar for maheshsayani

Hi All I Want To Create Semi Transparent Forms I Had done work on Transparent forms but i need semi transparent form which we can see background text/image through this form in vb please send me the solution for this

Member Avatar for maheshsayani
0
121
Member Avatar for INI

Good Morning All, I am having a major issue here; for some reason the line of code below works and sometimes does not work. When it desides not to work, it leaves a mess in my excel sheet. [code] Range("A1").Select ' This just goes to the upper left corner of …

Member Avatar for Comatose
0
167
Member Avatar for INI

Good Morning Guys, I am trying to copy a selected range from worksheet (or copying the whole worksheet) from file A, create a new workbook(name it and rename a worksheet in it). Then paste copied worksheet or range into new workbook. Please let me know what code to use, thanks. …

Member Avatar for INI
0
123
Member Avatar for BombAppetit

erm.. greetings again i have this database system using access and i need to look through another remote computer for files using Remote Administrator 2.2. how do i get started? as in to run the application and searching through folders in remote computer to get a certain txt file.. thats …

Member Avatar for BombAppetit
0
108
Member Avatar for purplegerbil

Hi, A program I am writing has the user entering values into textboxes then clicking an 'Add' button. Once clicked one of the textbox values appears in a list box. e.g Job Number, Data Filename, Unique Code The Unique code is displayed in a listbox. All three values are stored …

Member Avatar for Comatose
0
135
Member Avatar for agrothe

Would anyone know how, if it's possible, to pass a user defined type through a network connection say using winsock? For example: [CODE] type tExpl name as string address as string phone as string end type dim myExpl as tExpl winsock1.send myExpl [/CODE] As far as i know, winsock only …

Member Avatar for Comatose
0
102
Member Avatar for kthompsn

Have been asked to convert a set of programs from QBASIC to VB6. Any real pitfalls that i should watch out for? FWIW, my BASIC experience is mainly GW-BASIC and earlier. And yes, i WILL be RTFMing. tke

Member Avatar for Comatose
0
296
Member Avatar for Embeza

Hi there, I am Embeza from ethiopia,Mekele Here i got a problem! It says " file path not found" while i was working on vb 6.0 in my lab on files the following was my code and can you fix plz [CODE]Option Explicit Dim var as string Dim inputFile as …

Member Avatar for Embeza
0
104
Member Avatar for Zill

Hi, im having trobles with excel how I can chance the color of the text in a specific cell from vb?? any help??

Member Avatar for Comatose
0
139
Member Avatar for SamY

How can one use a Rt box to display formatted text. Imean to display different texts colors,size location and data from records:?:. Even images. Please help. I mean a texbox like this one

Member Avatar for Comatose
0
99
Member Avatar for skpalla

Hi All, Please help me in printing Visual Basic 6.0 form directly to the printer. I am using 'PrintForm' method of the form to print a form. I took the height of the form in pixels i.e. 17000 pixels, normally the default size of a form will be 9000 pixels. …

Member Avatar for Comatose
0
97
Member Avatar for jchaike

:?: Hi, I am wondering how to create a mini-program in visual basic that will place an icon in the task bar(where the startup icons are.) :?: Thanks for the help :!: jchaike

Member Avatar for Comatose
-1
140

The End.