11,868 Topics

Member Avatar for
Member Avatar for suneel kar

i am new to visual basics.plz tell me how to read data from databasr and write to text file recordwise .if any book which will gide me though this . thanx reply soon suneel

Member Avatar for suneel kar
0
116
Member Avatar for paodzy
Member Avatar for guru511

hi, can u plz tell me how to slpit a string using a delimeter... exp: my string is like guru\text now i want it to be splitted into guru text any 1 plz tell me...

Member Avatar for QVeen72
0
151
Member Avatar for coco86

something is not right with these code the [COLOR="red"]Is True Then , pls help me to correct it.... [/COLOR] If isEmpty(Mfgno) Is True Then lbl1.Caption = "Error" Else lbl1.Caption = "NoError" End If Debug.Print (Mfgno)

Member Avatar for coco86
0
87
Member Avatar for marlon ng

Hello. The code below is for a program that uses the classis Access sample database called Biblio.mdb . The controls on the form are: 1 commmand button, 1 Datagrid control, 1 textbox, and 1 ADO Data Control. [code] Option Explicit Private Sub Form_Load() txtUserQuery.Text = Adodc1.RecordSource Adodc1.Caption = Adodc1.RecordSource End …

Member Avatar for debasisdas
0
108
Member Avatar for coco86

Please help me!!! i've done somecode but it doesnt seems to match... error Out of stack space.. Public Function isEmpty() Dim MyVar As String, MyCheck As String MyCheck = isEmpty(MyVar) ' Returns True. MyVar = Null ' Assign Null. MyCheck = isEmpty(MyVar) ' Returns False. MyVar = Empty ' Assign …

0
73
Member Avatar for lasherz2

Hi, i got a datagrid that has its gets records from a table in the db.Its workin perfectly well but i want to have a textbox to search and display the records in the datagrid.I guess the change event will come in handy.I really dont know how to go about …

Member Avatar for tscpb
0
153
Member Avatar for jaasaria

this is my first letter here in daniweb.plsss help... actually Im only a beginner in VB. i would like to make a form that can browse picture and text file that will be display in my form... I have a sample here but there are so many error. pleaseee kindly …

0
38
Member Avatar for jaasaria

this is my first letter here in daniweb.plsss help... actually Im only a beginner in VB. i would like to make a form that can browse picture and text file that will be display in my form... I have a sample here but there are so many error. pleaseee kindly …

0
124
Member Avatar for jatinder_44

I have used 2 combo box ,how can i enable 1st combobox when i click on 2nd combobox viceversa .if i am entering a data in 1 of the combobox then another should be disable ,but after entering data in the any 1 of combobox ,again clicking on the another …

Member Avatar for jaasaria
0
144
Member Avatar for tgifgemini

Hello everyone, I am having a problem completing my outlook email setup through VB. I am gettin Run-time error 424 - Object required: Actually someone got me to this point, but I'm bumming out on this line: "[B][U]lvw.ListItems.Add , , OutlookAddressEntry.Name"[/U][/B] - basically all the lines that have the prefix …

Member Avatar for planethax
0
195
Member Avatar for coco86

let's say i want to read the substring and compare so i make a function Public Function tracingFNHdr(h As String) Left(h, 2) = Spid Mid(h, 3, 5) = Loc Mid(h, 6, 6) = TermType Mid(h, 7, 8) = TermNo Mid(h, 9, 13) = BatchNo Mid(h, 14, 15) = BatchType Mid(h, …

0
73
Member Avatar for Mr.Wobbles

The button changes an ugly peach color, which doesn't go well with a green theme, when they are clicked. I can't seem to find where to change this color. Any help is appreciated!

Member Avatar for jireh
0
101
Member Avatar for tscpb

I am completing the coding of a utility that reads data from a database and writes the returnset to a text file. The writing to the .txt file is performed by the client. The text file can range in size from 1 line to 20 million lines. When a file …

0
65
Member Avatar for tgifgemini

VB6 - Email attachment not working Hi, I wrote this program to send email through VB. The email is working okay but the attachment I need to attach to the email is not being attached. See my codes below: [code] Set OutlookApp = CreateObject("Outlook.Application") Set OutlookMail = OutlookApp.CreateItem(0) Set NSpace …

Member Avatar for tgifgemini
0
145
Member Avatar for lasherz2

:confused: Hi, i have four tables each capturing data on assets.Each asset is required to have a unique code and serial too.So no entry is supposed to allow a double entry epecially the code and the serial.How can i implement this is in access?Someone knows how to go about it?If …

Member Avatar for lasherz2
0
66
Member Avatar for nuinaifen128

i have a database which is a food menu. i have successfully display on the picture box. However, i cant copy all the content in the picture box to the text box. i hava code but only display the last sentence... hope to getting help here ^_^ here is my …

Member Avatar for nuinaifen128
0
129
Member Avatar for coco86

hello guys... im having trouble to open up the 2 files , i tried so many times , but i can't think what's the right directory should i put at the '??????' .... the purpose is to pass the value of directory so it can read and open up 2 …

Member Avatar for coco86
0
102
Member Avatar for Pmaster

Hi all, Does Visual basic net support inline c or c++ code and if so what keyword method, etc. ,do I use to do this. Thanks in Advance.

Member Avatar for cwood
1
167
Member Avatar for laoli

Can VB6 only link to access97 but not work with accessXP? and can i use vb6 in windowsXP?

Member Avatar for jireh
1
178
Member Avatar for itstar

hi, i m a learner in VB6. I used a control VNC.. and i want to make it on my own.. but i dont know how to start.. i dont have idea abt connectivity to internet with VB.. plz help me..

Member Avatar for jireh
0
41
Member Avatar for ro_10

Hi, i am new to VB and am working on a project to develop simple tool that will be able to monitor the traffic/bandwidth of LAN topology. For VB i just know the basics, like making forms and others. Please, if possible give me guidline and also workable code that …

Member Avatar for AV Manoharan
0
110
Member Avatar for z9maar

Does anyone know?, how can i edit an excel file from visual basic, but without installing excel? Actually, i know how to create or modify an excel document with code in visual basic, but is necessary add a reference to the excel's object library in the project. the trouble is: …

Member Avatar for debasisdas
0
112
Member Avatar for Pastafarian

Hi, I'm just starting out in programming and I'm currently making a small program which shows how Bubble, selection and Insertion sorts work. I've found a small program which bubble sorts a user selected number of integers and shows each step at which these are sorted (each pass). However this …

Member Avatar for Pastafarian
0
164
Member Avatar for tgifgemini

Hi everyone, I have included a "Send mail" module in my vb module, but I want to accept the email address from an input box instead of hard-coding the recipients email address because the recipient may be different each given time. Below is my code: [code] SENDEMAIL: Set OutlookApp = …

Member Avatar for tgifgemini
0
139
Member Avatar for pvozarkar

Hi everybody, I am lookin for a function in vb 6.0 for finding position of a charecter in the string.I know the logic but is there any inbuilt function available ? Please help Thanking You Piyush

Member Avatar for debasisdas
0
58
Member Avatar for masimba

hie, i'm kinda new to this forum and have no experience in these forums,this my first time so please bare with me.I'v got an assignment i'm working on and i"m stuck,could you help? The program is attached [COLOR=#000000] [/COLOR] [COLOR=#000000] [/COLOR]

Member Avatar for choudhuryshouvi
0
100
Member Avatar for coco86

let's say i have a .dat file and .hdr file .... i have to compare both of them .... how can i open both of them at the same time and then compare them ? do you think is it prossible? pls help me? Edit/Delete Message

Member Avatar for AV Manoharan
0
128
Member Avatar for plusplus

I want a certain form to be unloaded only when there is no other form loaded, how do I check if any of the other forms are still loaded

Member Avatar for jireh
0
106
Member Avatar for coco86

lets say i got a few string exp: 11111233NR+0001030 210NNR 99NR+001030 339NNE each substring got dif meaning ....11111 for the ID , NNR for the location. etc do you have any idea how to split them in each substring. pls help me...

Member Avatar for coco86
0
116

The End.