2,155 Posted Topics
Re: Karthik, being on 154 posts, you should know to give us much more information as you did. What exactly do you need? | |
![]() | Re: Might be too late, try the following - [CODE]WebBrowser1.Document.Forms(0).elements("Protected").options(2).Selected = True ''At options(2), get what user selected, add integer then and voila![/CODE] |
Re: What version of windows and outlook are you using? I am also asking to get this moved to Hardware & Software, you will get a higher response from there.:) | |
Re: Have a look at [URL="http://www.vb-helper.com/howto_net_load_listview_from_db.html"]THIS[/URL] link with a code sample.:) | |
Re: Hi Zeb, You can not set the field in your table to auto increment, it will only accept integers type like 1,2,3,4 etc. The way around this is to do the following - [CODE]''Open your recordset.... SELECT * FROM etc... Dim xCount As Integer, strRec As String xCount = rsRecordset.Recordcount … | |
Re: I have been using dw cs5 for the past year and a half without any problems. I remember having the same issues as you are having now, so, I'll start at the beginning and run through it with you to check each step and solve your problem. :) First, have … | |
Re: Firstly, why use a data control. See[URL="http://www.vbrad.com/pf.asp?p=Articles/art_binding_evil.htm"]here[/URL] why it is considered bad practise. :) To solve your problem though, your FindFirst syntax should be like this - [CODE]data1.recordset.findfirst "mod = '405FD0'"[/CODE] You will find ALL functions on the datacontrol [URL="http://www.vb6.us/tutorials/database-access-vb6-data-control-tutorial"]here[/URL]. Happy coding... | |
Re: Try looking [URL="http://search.yahoo.com/search?fr=chr-greentree_gc&ei=utf-8&ilc=12&type=937811&p=using+kinect+serial+cable"]here[/URL], might contain what you need. Search for serial cable... | |
Re: Can you give us some more info on what the site will be about. The more work required, the more money to be spend. :) | |
Re: You'll probably want something as follows - Login form (Student, Lecturer, Moderator/Assessor, Admin) Main form that will take you to all options of the app. Student registration form Courses offered by institution form Institution Data form Lecturer/moderator form Payment Options form Student Form (Edit, delete, reports etc.) Financial form (only … | |
Re: Welcome to Daniweb Mary. :) Just follow the forum you think related, I'm sure you will find all the help you need. | |
Re: You will have to show some effort from your side. We will and can not post an entire working app for you, see our posting rules [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]here[/URL]. | |
Re: Have a look [URL="http://www.sourcecodester.com/visual-basic/using-rfid-vb6.html"]here[/URL] OR [URL="http://www.emondsoft-solutions.com/blogs/1668/using-rfid-in-vb6/"]here[/URL] | |
Re: As JX has mentioned, open your own thread [URL="http://www.daniweb.com/forums/newthread.php?do=newthread&f=4"]here[/URL]. Your code is fine, its all the different drivers and references that is needed. I will gladly answer once you have your own opened. :) | |
Re: We need much more than this from you if you need help. If I read your question as you have posted it, you want to take some text from a textbox and create a picture BOX with, makes no sense at all... | |
Re: As Chris mentioned, we all need stuff in our lives. What have you came up with so far? If you're in your last year already, surely you must have an idea, show us what you have, especially code wise, where there are errors and THEN we will gladly help. We … | |
Re: As Chris has stated, the following - You currently have [QUOTE]in my database. i have created two tables. one for the users which i renamed "userstbl" which includes the ff fields 1. userid (pk) 2. username 3. userpass the second table is called "privtbl" which includes the ff fields. 1. … | |
Re: Sorry newbie, you're in the incorrect forum. Please post your question in the database forum, found [URL="http://www.daniweb.com/web-development/databases/mysql/126"]here[/URL]. | |
Re: Your problem lies within your database table in Sql. When the database was created, you have selected that a value MUST be added into the field, hence your error. Edit the specific field in the table to accept null strings. | |
Re: You can do the following - [CODE]Private Sub Text1_LostFocus() Label1.Caption = Text1.Text End Sub[/CODE] | |
Re: [URL="http://search.yahoo.com/search?fr=chr-greentree_gc&ei=utf-8&ilc=12&type=937811&p=feature+driven+development+methodology"]Here[/URL] is some usefull links to your question BenzZz, happy devoloping. :) | |
Re: Hi Nuclear, [URL="http://search.yahoo.com/search?fr=chr-greentree_gc&ei=utf-8&ilc=12&type=937811&p=game+development"]Here[/URL] are some links that I'm sure you will find usefull. Happy developing. :) | |
Re: Welcome and of course we will help where we can. :) Just post your question in the relevant forum and we will assist where possible. | |
Re: Welcome to Daniweb. :) You might want to post your question in our IT Professional Lounge found [URL="http://www.daniweb.com/community-center/it-professionals-lounge/5"]HERE[/URL]. I'm sure you will find more answers in there. | |
Re: If I read this correctly, you need to specify the value for both fields in the 2 tables - [CODE]VALUES("...","..."[/CODE] I might be wrong though.... | |
I tried to report a duplicate thread in vb6, got this message - [QUOTE]AndreRet, you do not have permission to access this page. This could be due to one of several reasons: Your user account may not have sufficient privileges to access this page. Are you trying to edit someone … | |
Re: Yes it can be done. Use your recordset to search for the criteria, once found, add each field value into its respective textbox. | |
Re: try the following - [CODE]''Change this Dim htmlselect As HtmlElement = WebBrowser1.Document.All.Item("forum_number") to ---- Dim htmlselect As HtmlElement = WebBrowser1.Document.All("forum_number").Value = Combobox1.Text[/CODE] | |
Re: Hi SyncMaster, please mark this as solved to close the thread properly please. :) | |
Re: Nice said Chris. This would have gone on until you ended up designing AND writing the entire project. @MaxRevenge, please adhere to our posting rules found [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]HERE[/URL]. We will always help where we can, we will however not do your work for you. Please show us what you have, we … | |
Re: I am not sure what it is you need here. If you say cover up. with what? Is all the code running from your splash screen or another form? | |
Re: Your problem lies in your declaring a datetime, but you are using CCur (currency) to gte a value. to calculate 2 dates, do the following by using CDate and DateDiff functions - [CODE] ========================================================================= ' Calculate user logged time in and out. ' ========================================================================= ' ssno ===> User social security … | |
Re: Try the following tutorial with sample code - [URL="http://www.dreamincode.net/forums/topic/44150-printing-in-vbnet/"]http://www.dreamincode.net/forums/topic/44150-printing-in-vbnet/[/URL] | |
Re: HAve a look at [URL="http://www.ozgrid.com/VBA/sort-sheets.htm"]THIS[/URL] sample, might solve your problem. |
The End.