10,987 Topics

Member Avatar for
Member Avatar for blueciel

please help me. anyone know a way to make words from numbers in Access or VB? > Example: 45 = forty five > Example: 167 = one hundred sixty seven > > I would like to have a program that reads the number and turns it into words. I have …

Member Avatar for AndreRet
0
142
Member Avatar for skalra63

i am currently using the following code so that when the cursor is over an object, it displays a description. [CODE]Private Sub txtSearchbox_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) frmeObjectDescription.Visible = True lblSearchCriteria.Visible = True End Sub[/CODE] however, i dont know how to make it …

Member Avatar for AndreRet
0
134
Member Avatar for jeffrey4u

My chat application have icon at the taskbar which displays messages as balloon text for the user when the application is minimized. My problem is when the message contain smiley or emotion like this ':D:D:)' the smiley does not display in the balloon text. Any help on how to add …

Member Avatar for AndreRet
0
179
Member Avatar for JCWatson

Hello, I am new to daniweb. I am a student in my first coding class and I am stuck trying to figure out one of my projects. My teacher wants me to have a text box that you can type a number in, then add it to a list box …

Member Avatar for debasisdas
0
114
Member Avatar for hoong

hello all, i need some help on writing VB6 code to access to a modem API in order to grab the data such as RSSI etc....your concern on this matter is sincerely appreciated, thanks in advance

0
51
Member Avatar for frankge973

My program uses MS Access as DB and Visual Basic 6. I've experienced an issue loading a recordset with about 300000 records, some fields indexed, when I place a SELECT SELECT * from Materials m INNER JOIN Quantity s ON m.code=s.materialcode ORDER BY code in a ADO recordset with the …

Member Avatar for frankge973
0
1K
Member Avatar for mugged ur mom

Hey guys I’m trying to export data from a access form into an excel sheet when it is clicked by a particular button... but the VB code I’m using for the button will not work. Here is my current code: Private Sub Command12_Click() DoCmd.OutputTo acOutputForm, "frmExport", acFormatXLSX, "h:\mydocu~1\exports\F_assignments.xlsx", True End …

Member Avatar for AndreRet
0
495
Member Avatar for Shodow

invalid use of property [CODE] Dim search As String search = Trim(txtSearch.Text) Select Case cmbSearch Case "By: Customer Name": Call DataGrid("select * from list1 where CustomerName like '" & search & "%'") Case "By: Date": Call DataGrid("select * from list1 where Date like '" & search & "%'") Case "By: …

Member Avatar for AndreRet
0
220
Member Avatar for obicerno

hello guys, can any one know how to extract an amount for an instance.. this was in access data. i just picking up some sample.. a given amount to be extracted was 50,000.00 kilos i have to table 1 is the master and the other was the list of pickup …

Member Avatar for AndreRet
0
95
Member Avatar for junjun61991
Member Avatar for debasisdas
0
145
Member Avatar for Jade_me
Member Avatar for AndreRet
0
288
Member Avatar for obicerno

can any one help me about my project.... how to code data from excel export to access..

Member Avatar for AndreRet
0
80
Member Avatar for freedom-impulse

im having a problem in connecting data access with vb 6 enterprise edition i dont know how to connect trough ADO

Member Avatar for AndreRet
0
95
Member Avatar for jeffrey4u

I have chat application which am using webbrowser to display the chat session. I want to give the user the chance to save the chat session so i used the codes below which is working fine but i have realised is that when the webbrowser contain smiley or emotions it …

Member Avatar for AndreRet
0
140
Member Avatar for danattheville

I am trying to write a program that will allow a user to use a button to toggle the color or the text in a text box between blue and green. Any ideas? Here is what I have so far: [Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) …

Member Avatar for danattheville
0
143
Member Avatar for lakewriter

Greetings, I'm new here, and as mentioned, I'm starting to learn to work in FLASH. My background is VB6. I'm mainly using books to learn FLASH, but would love to occasionally have someone live to glance at what I've created, and point out what would work better, or have I …

Member Avatar for AndreRet
0
238
Member Avatar for bjc01010

Ok fairly new to this but the programming i am doing is for a "price list" of sorts, i have 3 buttons with 3 labels which work fine showing the label text when pressed, next i have a group box with one button, 2 radio buttons, and 2 labels, I …

Member Avatar for AndreRet
0
188
Member Avatar for zp18zp18

<sorry for thread hijack> My vb6 application opens the access data base with the vb6 database name property of the Data1 control. How can I change this to open with explicit coding in the vb coding so I can change the path in a single location?

Member Avatar for AndreRet
0
56
Member Avatar for MooGeek
Member Avatar for pmark019

What is wrong with this code of mine? [CODE]Private Sub btnPlus_Click() If counter = 0 Then savedNumber = Val(txtNumber) counter = 1 End If If counter <> 0 Then value = Val(txtNumber) End Sub[/CODE] [CODE]Private Sub btnEquals_Click() result = Val(savedNumber) + Val(value) txtNumber.Text = CStr(result) End Sub[/CODE] [CODE]Private Sub btnThree_Click() …

Member Avatar for AndreRet
0
95
Member Avatar for eukiandfhull

Hi, i have a problem in my database. how to sum the value of row into another value of row?.. i want to compute the total of Hoursworked.... this is my example table for the sum of row by row.. DTR Table EmpID TimeIn TimeOut HoursWorked Date 1 08:30 05:30 …

Member Avatar for eukiandfhull
0
80
Member Avatar for Shodow
Member Avatar for neosonic

Hi, I have a vb6 program who access an 97 access database. everything works fine when I put the database files into the shared harddrive (we put it as Z:\) It is running very very slow... I dunno why is it happening, it works really fine if I put them …

Member Avatar for AndreRet
0
128
Member Avatar for aman rathi

first of all thanks to all for helping me from last 2 years. now a days i am learning Visual basic, i have one book that is for beginner. while studying that book i feel it is insufficient for me. so please can any one tell me a book which …

Member Avatar for debasisdas
1
107
Member Avatar for dnk

how to clear all text box?? i always use this : [CODE]text1.text = "" text2.text = "" text3.text = "" ....[/CODE] but how about if i have many text box? there are an other way to do this??? Please help. ASAP. best regards

Member Avatar for the_h
0
103
Member Avatar for xxxferraxxx

Hi, I need to make "Keygen" that gen text not randomly with two text boxes, i need to use it for "username and "password" gen that i puted to gen. Please help with the code :)

Member Avatar for xxxferraxxx
0
206
Member Avatar for JD69

I have 1 form with the progress bar and 4 buttons with the following code. I would like to create another form that shows the same progress bar with the same progress. Please help Here's my code for progress bar [B]form load code is:[/B] [code] ProgressBar1.Minimum = 0 ProgressBar1.Maximum = …

Member Avatar for codeorder
0
163
Member Avatar for rhyll07

hi...is there anyone help me to make an inventory system using ADODC as a connection for database...MS ACCess. inventory system format: 1. form that can monitor the available stocks 2. form for incoming stocks 3. form for stocks sold 4. form for adding stocks and 5. for product updates. thanks …

Member Avatar for AndreRet
0
91
Member Avatar for abelingaw

Ok, I'm having problem on how to save texts with quotes. Let's say I'm saving a value in a textbox like O'Neil. That's where I receive an error. How do I save names or texts like O'Neil or texts with qoutes? Here's my code for saving: [CODE] With RecSet .Open …

Member Avatar for AndreRet
0
144
Member Avatar for Khliboy_2796

The End.