2,155 Posted Topics
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: I'll get to this tomorrow morning...:) | |
Re: This is a vb.Net question. I have asked the mods to move it to vb.Net from here (VB4/5/6).:) | |
Re: [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. | |
Re: 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? | |
Re: [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". … | |
Re: Show me the code you are using for the printing. It seems that you need to refresh before the next page prints.... | |
Re: 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.:) | |
Re: Show me the code you have used to set the grids datasource etc. | |
Re: 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" | |
Re: Try thye following to load data into the msflexgrid control - [CODE]Set MSFlexGrid1.Datasource = Data1.Recordsource[/CODE] | |
Re: 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 = … | |
Re: 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 … | |
Re: a Lot of answers and no solved thread? Thats why I refuse to answer certain members questions. | |
Re: @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.;) | |
Re: Try the following - [CODE]Text1.Text = dtPicker1.Value rsAddNew.AddNew rsAddNew!Date = Text1.Text rsAddNew.Update[/CODE] | |
Re: 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] | |
Re: 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 … | |
Re: 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. … | |
Re: Neo, I'm not sure what you need here. Please explain this in a more simple way, thanks. | |
Re: [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 … | |
Re: 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] | |
Re: 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 … | |
Re: There is no such thing as vb6.setitemdata. You need to give us more information on what you mean.:) | |
Re: 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. | |
Re: 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?" … | |
Re: 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.:) | |
Re: 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 … | |
Re: 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 … | |
Re: [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 … | |
Re: 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.:) | |
Re: In a timer with say an interval of 1000, the following - [CODE]mnuPopup.Visible = False[/CODE] | |
Re: 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] | |
Re: 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.:) | |
Re: Very cool. I like frogboys version. totally brain blowing.:) | |
Re: Old, lame, stupid post. Can't believe it is still around. Maybe someone can make it "disappear"! | |
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 … | |
Re: 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. | |
Re: You forgot to add the Add new part first.:) [CODE]Adodc4.Recordset.AddNew Adodc4.Recordset.Fields(cmbMonth.Text) = txtLecturesattended.Text Adodc4.Recordset.Update[/CODE] | |
Re: You need to read into the text before the "*", using the left function with how many characters you need to read into. | |
Re: 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... | |
Re: [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. | |
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 … | |
Re: [CODE]Private Sub List1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyDown Then List1.ToolTipText = List1.Text End If End Sub[/CODE] |
The End.