11,868 Topics

Member Avatar for
Member Avatar for bro3886

i want to develop a program using vb to lock the wondows which needs a user id and a password to logon. the user ids and passwords will be stored in a server machine's database. the clients requires the user id and password to logon the client m/c. so i …

Member Avatar for AndreRet
0
250
Member Avatar for Noorul Ariff

Dear friends... I need a urgent HELP... I applied for a job... They asked me to do a PROJECT, vb with access... In that they asked me to create INSTALLER file with 32bit & 64 bit support. I don't know how to do this... i have to finish it and …

Member Avatar for AndreRet
-1
416
Member Avatar for Smithers

What is the fasted way to delete rows based on a condition in Column A using VBA? Anybody have an example? Thanks.

Member Avatar for Smithers
0
145
Member Avatar for JD69

Hi im trying to write a program to automate a process but i cant get my program to click on this website's button Here's the website's button code: [CODE]<input type="button" class="w10pt" style="width:136px;display:block;font-weight:700;" value="Login" onclick="location.href='/start/login.htm?arg1=1'">[/CODE] i tried: [CODE] theElementCollection = WebBrowser1.Document.GetElementsByTagName("input") For Each curElement As HtmlElement In theElementCollection If curElement.GetAttribute("value").Equals("Login") Then …

Member Avatar for AndreRet
0
87
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
146
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
137
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
180
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
116
Member Avatar for D.Twomey

Hi guys/girls, I have an exe that has been written in C# using visual studio Is there a was I can de-compile it back into the C# code - It seems to be some what protected exe files I've created myself using Visual Studio and C# I can see the …

Member Avatar for Momerath
0
756
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
497
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
221
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
97
Member Avatar for junjun61991
Member Avatar for debasisdas
0
147
Member Avatar for Jade_me
Member Avatar for AndreRet
0
300
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
82
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
96
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
142
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
144
Member Avatar for baldwindc

I am taking a data structures class and we are using the standard gcc compiler on a unix system. This is fine and I have no troubles using it, but I would like to begin using an IDE for my labs. I am trying Visual Studio 2010 Professional with my …

Member Avatar for baldwindc
0
241
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
190
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
57
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
97
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
82
Member Avatar for croker10

Hi All, Hopefully someone has had this problem in the past and can point me in the right direction. In the last couple days the ASP.NET development server has slowed down to nearly a halt when starting and stopping debugging, by that I mean anywhere from 5-7 minutes before the …

Member Avatar for croker10
0
197
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
134

The End.