11,868 Topics

Member Avatar for
Member Avatar for ng5

I was wondering if i would be able have the saved items as a way to "login" to my program. in the first form (form1) i have a masked textbox and a button. you type your "pin" into the masked textbox and click the button to enter. i would like …

Member Avatar for Gé48
0
119
Member Avatar for jakeevans

Hello Everyone, I hope this is the right place i'm posting this, basically I need some help with Visual Basic 2008. We've been set a task to build a really basic web browser with one advanced function. I've done the web browser with the basic functionality, but this advanced feature …

Member Avatar for jakeevans
0
237
Member Avatar for MaryApple

[CODE]Private Sub txtProvince_Change() If txtProvince.Text = "" Then txtProvince.SetFocus MsgBox "Specify first the field" End If End Sub Private Sub txtRegNo_Click() If txtRegNo.Text = "" Then txtRegNo.SetFocus MsgBox "Entry must have value", vbInformation, "" Else txtRegNo.Locked = True End If rs.AddNew End Sub[/CODE]

Member Avatar for Jx_Man
0
44
Member Avatar for razamughal67

Hello everybody please tell me How to select costum index in a list in vb6 i have a listbox & a command botton & textbox example: we add some items in a listbox list1.additem = "google.com" list1.additem = "Gmail.com" list1.additem = "myspace.com" list1.additem = "youtube.com" list1.additem = "facebook.com" list1.additem = …

Member Avatar for razamughal67
0
1K
Member Avatar for raheel88

Hi all, How can I make the items in a standard values collection identical to the items contained in a previously defined (dynamic) array of strings? Here's a snippet; [CODE] Public Class ElementList : Inherits StringConverter Public Overloads Overrides Function GetStandardValuesSupported(ByVal context As ITypeDescriptorContext) As Boolean Return True End Function …

0
90
Member Avatar for SeniorAlexandro

Alright, I have a Webbrowser which has a page opened. I want it to select a specific Option from the Combobox. How can I do that in VB ? HTML Code: [CODE]<select name="Protected"> <option value="NC"></option> <option value="ON">ON (protected)</option> <option value="OFF">OFF (unprotected)</option> </select>[/CODE] VB Code: [CODE]For Each element As HtmlElement In …

Member Avatar for AndreRet
0
286
Member Avatar for skatamatic

How do you set the Z order on a control in VB6? There doesn't seem to be a property for it... It seems as though I have no control over which control takes the foreground :( I suspect it is based on the order they are declared in the .frm …

Member Avatar for skatamatic
0
282
Member Avatar for scaiferw

Working in Word 2010, I have a long document with many formatting changes to be made. To start with, throughout the document I'd like to replace "Click OK" with "Click [B]OK[/B]", so the OK will be bold but not "Click". I also need it to be case insensitive, as some …

0
118
Member Avatar for Cyre
Member Avatar for Jx_Man
0
86
Member Avatar for Fess

Me and my team are working with arduino devices for a project and we need a way to talk and respond from arduino to visual studios. any coding out there to work on this because i can not seem to find any myself

0
144
Member Avatar for az_master
Member Avatar for ChrisPadgham
0
218
Member Avatar for raheel88

I have a dynamic form, which contains an empty listbox and a button at first. When the button is clicked, an item is added to the listbox and a new PropertyGrid is created associated with that item. What I want to be able to do is change the name of …

0
91
Member Avatar for horizondesai

Hi everyone, I am new to RichTextBox control in VB6 I wanted to select the entire line/row in the RichTextBox, where currently the cursor is. How should I do it ? The code should be paste in command button 'cmdSelect' Thanks in advance :)

Member Avatar for horizondesai
0
3K
Member Avatar for judithSampathwa

hi there, i have a datagridview in the desktop application that i made and one of the columns in that is the telephone number. the telephone number is valid if the user type in (630) 345-2532. so everywhere the user hast to type in the paranthasis and then the numbers …

Member Avatar for sathiyapriya.M
0
1K
Member Avatar for belber

hey all, i wan't ask , how to connect sms gateway to vb6..??? and then i sen't sms with vb6... help plizzz...,

Member Avatar for belber
0
225
Member Avatar for Shadizon

Hello all , I'm designing a Database which is for students & Their degrees I have Two Tables One for students one for their Degrees & 2 forms Main One & Sub form . What ever I want to make a way to search for a student name like the …

Member Avatar for ChrisPadgham
0
116
Member Avatar for markee

Hi! I add a time and date with my program [CODE] Private Sub Timer1_Timer() timelbl.Caption=Time datelbl.Caption=Date End Sub [/CODE] but when i run the program.. i got "Compile Error, Cannot find project or library" what's wrong on this? how can i fix this.. help me please thanks..

Member Avatar for BitBlt
0
163
Member Avatar for LFCDay123

I have 2 radio buttons on my form which are both different forms of tax. I have a label which has the amount of money i need to multiply the tax by depending on which radio button the user chooses. 1 radio button has tax of 16.5% and the other …

Member Avatar for Jx_Man
0
119
Member Avatar for Comatose

One of the most important things to understand when automating office, is that it's heavily [search]OOP[/search], and therefore you are forced to work with objects. In order to create an object that is external to your application (for example an office application, whereas a button or textbox would be internal …

Member Avatar for DJ-DOO
2
1K
Member Avatar for Sturdy

Hi all, How i changing the color of label caption dynamically, so it looks like highlight text changing color. Thank you.

Member Avatar for Sturdy
0
267
Member Avatar for markee

Hi! I need help for my program.. I add a search the Adodc in my program with a combo box category, but when i run the program and search... the category "ID" not searching.. this is my codes [CODE] Private Sub Command1_Click() If Text1.Text = "" Then MsgBox "Type To …

Member Avatar for Jx_Man
0
323
Member Avatar for raheel88

I want to add a new PropertyGrid control every time an item is added to a ListBox. I have a ListBox, with an "Add Item" button underneath (and also a "Remove Item" button). Every time an item is added to the list, I want to create a new PropertyGrid corresponding …

Member Avatar for raheel88
0
1K
Member Avatar for apuamy

Can anybody help me in filling an Access database table in one field from a serial port using VB 6.0.Data coming from the serial port can be seen in the VB text box line by line.I want to store every line under a field and can manipulate.How can i use …

Member Avatar for ChrisPadgham
0
469
Member Avatar for complete

Debugging a Web Site using Visual Studio I am studying a web site that caught my eye by making a test site privately. Since the original html and CSS and JavaScript code is on a Windows Server and since I am making a test version on a Linux server, there …

0
60
Member Avatar for ng5

i have a form with a listbox. the listbox can be edited (things added/deleted) and when the form is closed i would like the items in the listbox to be saved when the red "x" in the top right corner is clicked any ideas?

Member Avatar for Phasma
0
128
Member Avatar for rapirap

Hi! Please help me with my search functionality...searching using textbox and retrieving the data into a listview. here is my code: [CODE]openrstJCcaseInfo "select * from JCcaseInfo" If Not rstJCcaseInfo.EOF Then caseinfo.ListItems.Clear Dim m With rstJCcaseInfo While .EOF = False If LCase(txtsearch.Text) = LCase(rstJCcaseInfo.Fields("CaseTitle").Value) Then Set ls = caseinfo.ListItems.Add(, , rstJCcaseInfo.Fields("CaseStatus").Value) …

Member Avatar for Jx_Man
0
286
Member Avatar for Farhan_B

When Creating a query using the sear Criteria Builder . I keep getting the error : " The schema returned by the new query differs from the base query " I no this means that the error is due to the query attempting to return too little columns i have …

Member Avatar for poojavb
0
197
Member Avatar for emxif

please help me on my school project it is called "faculty evaluation system" my project is used to evaluate faculty members,i will use the following softwares, visual basic 2008 editon, ms sql server 2000, and crystal reports, what i want to do is their will be a question and it …

Member Avatar for lolafuertes
0
229
Member Avatar for christophertheo

whenever i run my code it says method or data member not found my code is such Private Sub cmdConnect_Click() Dim lngComPort As Integer Dim lngMachineNum As Integer Dim lngBaudRate As Long Dim bConn As Boolean Me.MousePointer = vbHourglass If cmdConnect.Caption = "Connect" Then DoEvents lblStatus.Caption = "Connecting Device..." lngComPort …

Member Avatar for samangelin
0
973
Member Avatar for tomsc

Hi, I’m looking for a VBA code which would analyze 2 Excel tables from one Sheet and build up a new one in separate Sheet. Basically one table lists folders and groups granting access to those folders; while the other one lists Groups and its Members. Here’s how it looks …

Member Avatar for BitBlt
0
103

The End.