2,155 Posted Topics

Member Avatar for vinothmca

To the left of your window where all the standard controls is situated, right click. Select "Components". In the list form that appears, scroll down to the component you need - Microsoft Comm Control 6.0. Select the check box (tickbox) and click on "Apply". This will load the component to …

Member Avatar for AndreRet
0
63
Member Avatar for martin11ph

There is a much easier way. Set your splash screen AND Main form properties as such - MaxButton = False MinButton = False Moveable = False Now add the following code that will disable the "x"/close button. This way the splash will show and can not be minimised, closed, moved …

Member Avatar for AndreRet
0
248
Member Avatar for pmark019

This can be achieved by using ten small picture boxes. Load the default pics, blank star, blue star and gold star, to an image control. Use the mouse move events to load the different pics from your image control. When the form loads, check a database table for a user/item …

Member Avatar for AndreRet
0
429
Member Avatar for Jaseem Ahmed

You have two options here, MoveNext and MovePrevious, as in your code, will ONLY move to the next or the previous record, ONE at a time until the BOF or the EOF is reached. Option two, which I think is what you are looking for, is to move directly to …

Member Avatar for Jaseem Ahmed
0
2K
Member Avatar for TheDocterd

I am at a loss here with all this code. xList is loading correctly, so your problem is hiding somewhere else.:) Mail me your form, code and sample text files (don't need the original, just sample text added) AGAIN so I can test ALL the code without me re-creating everything …

Member Avatar for AndreRet
0
133
Member Avatar for TheDocterd
Member Avatar for tshudyb

This is a vb.Net question. I have asked the mods to move it to vb.Net from here (VB4/5/6).:)

Member Avatar for AndreRet
0
269
Member Avatar for satti

[QUOTE]item cannot be found in the collection corresponding to your request.and error it show the error at !Expense3 = txtExpense3...i have pointed the error[/QUOTE] Double check your spelling. The error is because the field does not exist in the database table. If it does exist, the spelling is incorrect.

Member Avatar for AndreRet
0
194
Member Avatar for Jaseem Ahmed

Jaseem, we can not keep on showing you all the code. You have to start showing some effort from your side. What code do you have so far?

Member Avatar for debasisdas
0
305
Member Avatar for ben25x

[QUOTE]For vb6 questions, please use this forum.[/QUOTE] Ahhhh, this is the vb4/5/6 forum... :) You can not use the print function in your form load event. If you really want to, use a timer and set its interval to 1 (=0.001 seconds), which will then load the required print "3". …

Member Avatar for AndreRet
0
734
Member Avatar for aparnesh

Show me the code you are using for the printing. It seems that you need to refresh before the next page prints....

Member Avatar for aparnesh
0
240
Member Avatar for Jaseem Ahmed

The load of the form on a second time around happened to me as well. There is just way too much code to work through. Use a flex/data grid control, it will cut your code down 10 times, and are much easier to work with.:)

Member Avatar for AndreRet
0
96
Member Avatar for alleybye
Member Avatar for KeerthigaN

Please read our posting rules. "Help Me" as a title will scare most other readers that could have helped. Use some obvious words for your title, say like - "Ideas for time table management"

Member Avatar for AndreRet
0
62
Member Avatar for satti

Try thye following to load data into the msflexgrid control - [CODE]Set MSFlexGrid1.Datasource = Data1.Recordsource[/CODE]

Member Avatar for AndreRet
0
1K
Member Avatar for abelingaw

Your textbox will not show the decimal values because the first 10 values is already used. You need to determine that if there is a decimal value, increase the max length to 13 to allow the "." and the two decimal characters "00". [CODE]If MyNumber > 10 Then txtRate.MaxLength = …

Member Avatar for AndreRet
0
491
Member Avatar for deadelgabar

Visual Basic, .net, web based application. There are way too many to mention, all depends on what is required within the users criteria. Databases, same thing. Access is too small for more than 5 users, which leaves you with MySql, Oracle, MS Sql. MySql is freeware, the most used db …

Member Avatar for debasisdas
0
77
Member Avatar for critznikkian

a Lot of answers and no solved thread? Thats why I refuse to answer certain members questions.

Member Avatar for AndreRet
0
308
Member Avatar for critznikkian

@Das - [QUOTE]Show some effort before asking for code.[/QUOTE] Thanks, [QUOTE]Private Sub Form_KeyPress(KeyAscii As Integer) MsgBox KeyAscii End Sub[/QUOTE] Jx, tsk, tsk, :). Lets get them to show some effort first dude.;)

Member Avatar for AndreRet
0
861
Member Avatar for Jaseem Ahmed

Try the following - [CODE]Text1.Text = dtPicker1.Value rsAddNew.AddNew rsAddNew!Date = Text1.Text rsAddNew.Update[/CODE]

Member Avatar for AndreRet
0
186
Member Avatar for mhosny

You can use a function like - [CODE]public string GetCurrentPageName() { string sPath = System.Web.HttpContext.Current.Request.Url.AbsolutePath System.IO.FileInfo oInfo = new System.IO.FileInfo(sPath); string sRet = oInfo.Name; return sRet; } [/CODE]

Member Avatar for AndreRet
0
927
Member Avatar for Jaseem Ahmed

Type mismatch refers to the data collected. When you created your table with "Phone" as a field,, what type did you gave it, integer or text? If a user types text, the data will mismatch if the table requires a number. Also, make sure there is no other characters added …

Member Avatar for AndreRet
0
174
Member Avatar for satti

If I read this correctly, your way of thinking is there. It is the execution thereof that you need to work on. You have used 'keypress' as an option with your Splash Screen. Yet you have not identify the ASCii key to unload your screen and load the Main Form. …

Member Avatar for AndreRet
0
238
Member Avatar for neosonic

Neo, I'm not sure what you need here. Please explain this in a more simple way, thanks.

Member Avatar for AndreRet
0
354
Member Avatar for karthiyayiniyp

[QUOTE]sms from free-sms website[/QUOTE] I don't think there is a free sms provider. I am also not that versed in gsm. I am using "Clickatel" which is probably one of the best services available. When you download their drivers and sdk, it gives you 5 free sms's to test your …

Member Avatar for trilok31
0
832
Member Avatar for Flynox
Member Avatar for Elvin3
0
128
Member Avatar for vn412

At the top of you code page - [CODE]Dim strUser As String, strPass As String In the login click event, add the variables to the string. This will be then be saved throughout the forms life strUser = Username 'Whatever you have in your text box[/CODE]

Member Avatar for darkelflemurian
0
711
Member Avatar for TheDocterd

I did not have time to test the code, but it should work fine. I have added a sub to ONLY load the mails AFTER you are done selecting the Items in List 1. Then before the mail call, I have called the sub. Play around with it a bid …

Member Avatar for AndreRet
0
147
Member Avatar for Pgmer

There is no such thing as vb6.setitemdata. You need to give us more information on what you mean.:)

Member Avatar for Jx_Man
0
155
Member Avatar for TheDocterd

Firstly, how are you selecting multiple items in List1? Show me the code or the steps. The same can be used in list 2 by using a similar loop to determine what indexes are selected in list1, then select the same in list2.

Member Avatar for AndreRet
0
262
Member Avatar for Hinnawi

Its like the well known joke below - [QUOTE]Customer Support: "Ridge Hall computer assistant; may I help you?" Caller: "Yes, well, I'm having trouble with WordPerfect." CS: "What sort of trouble?" C: "Well, I was just typing along, and all of a sudden the words went away." CS: "Went away?" …

Member Avatar for AndreRet
0
142
Member Avatar for nizuya

Why not get someone to design it for you. It will be much cheaper. You will not easy find freeware for such a requirement.:) How much would you be prepared to pay, I'll do a web based app for you.:)

Member Avatar for AndreRet
0
209
Member Avatar for TheDocterd

You will have to add the code under the list1_Click/Change event. Declare a variable, at the top of your code form - [CODE]Dim xList As String) 'Under the list1 event, add the following - xList = List2.Text 'Now, in the code you supplied for email - "To" add - .To …

Member Avatar for monarchmk
0
181
Member Avatar for Jaseem Ahmed

You need to break your questions into pieces and open more new posts with them. It will be impossible to cover all here without confusing other readers.:) I'll cover the first part here. The others on your new posts. Also, keep in mind to show us some effort. No one …

Member Avatar for AndreRet
0
597
Member Avatar for karthiyayiniyp

[QUOTE]accse.Open "Provider=MSDASQL.1;Password=tiger;Persist Security Info=True;User ID=scott;Data Source=facultydetails" rsfdcse.Open "select * from csefacultydetails where name= " & "'&name1.Text '", accse, adOpenDynamic, adLockOptimistic[/QUOTE] is incorrect - [CODE]accse.Open "Provider=MSDASQL.1;Password=tiger;Persist Security Info=True;User ID=scott;Data Source=facultydetails" 'THIS LOOKS LIKE MS SQL AND NOT ORACLE< NOT SURE THOUGH.... Make sure you have the correct connection string.... 'This for …

Member Avatar for AndreRet
0
170
Member Avatar for Jaseem Ahmed

Also note that your other posts using the recordset (rsAddNew) uses the conn as the connection. You need to change that to Con if you use JX's connection because the connection is called Con.:)

Member Avatar for AndreRet
0
129
Member Avatar for P.manidas

In a timer with say an interval of 1000, the following - [CODE]mnuPopup.Visible = False[/CODE]

Member Avatar for AndreRet
0
818
Member Avatar for critznikkian

Try the following - [CODE]If cboSearch.Text = "Student Name" Then Adodc1.RecordSource = "SELECT name, status FROM Login WHERE name LIKE '%" & txtSearch.Text & "%' AND status = 'Instructor'" Adodc1.Refresh[/CODE]

Member Avatar for AndreRet
0
118
Member Avatar for apple12

We will help IF you open your own thread. You can do that by clicking [URL="http://www.daniweb.com/forums/newthread.php?do=newthread&f=4"]here[/URL]. We do not allow the hijacking of other members threads, especially if they are this old.:)

Member Avatar for AndreRet
0
88
Member Avatar for WASDted
Member Avatar for JamieLynnSEO
8
492
Member Avatar for almostbob

Old, lame, stupid post. Can't believe it is still around. Maybe someone can make it "disappear"!

Member Avatar for JamieLynnSEO
-2
501
Member Avatar for minitech
Member Avatar for susheelsundar
0
35
Member Avatar for AndreRet

I have created a string, now I want to add data to the end of the string - [CODE]<p>This is the string</p>[/CODE] I now want to read from MySql from a field and add the data to the end of the string. Something like - [CODE]&Str1 = "This is the …

Member Avatar for AndreRet
0
181
Member Avatar for Joshua Kidd

It all depends on what the connected clients are suppose to do 9in your application. Is it just normal data interaction, other interaction etc? You need to give us some more information please.

Member Avatar for Joshua Kidd
0
79
Member Avatar for prajana

You forgot to add the Add new part first.:) [CODE]Adodc4.Recordset.AddNew Adodc4.Recordset.Fields(cmbMonth.Text) = txtLecturesattended.Text Adodc4.Recordset.Update[/CODE]

Member Avatar for Jx_Man
0
334
Member Avatar for otomatis

You need to read into the text before the "*", using the left function with how many characters you need to read into.

Member Avatar for Jx_Man
0
412
Member Avatar for sash_le

Have you tried - [CODE]'Depending on the option selected TabControl1.Tab=0 'or 1 etc.[/CODE] Not sure if this will help in Dev though...

Member Avatar for Nutzy
0
194
Member Avatar for vbBen

[QUOTE]or is it relatively 'write code, plug, and go'?[/QUOTE] Apart from hardware drivers, yes, it is code, plug and use. You will be interacting with the drivers or "readers to convert the data, so I suggest you read up some more on byte coding, binary, hexadecimal etc coding.

Member Avatar for AndreRet
0
94
Member Avatar for AndreRet

I have a main page where the user will select an image between 32 others. Each image has its own category. I then need to open my Categories php page (no need to have 32 I'm sure), where the image selected will display THAT images categories. I have no idea …

Member Avatar for AndreRet
0
142
Member Avatar for P.manidas

[CODE]Private Sub List1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyDown Then List1.ToolTipText = List1.Text End If End Sub[/CODE]

Member Avatar for AndreRet
0
770

The End.