2,155 Posted Topics
Re: Welcome to Daniweb and the "mad" crowd.:) | |
Re: Depends whether you are using a data control (see the link in JX's post) or code. You need to supply the password in the connection string as well as the username to successfully log in to the access database. [Edit]If I had looked further at the other posts I would … | |
I have an image on top of my logo image, used for login purposes in my index.html page. The logo code works perfect in loading my index.html page when clicked on. The code - [ICODE]<div id="Logo"> <div id="lmenu5"> <a href="Login.php"><img src="Images/Top Menu/Login.png" alt="Login or register." name="Login" width="130" height="43" id="Login" title="Login … | |
Re: Add a timer 1 and 2 to your form. In your loop add a time factor to a label, something like - [CODE]'Your loop started... Label1.Caption = Label1.Caption + Timer1.Interval Timer1.Enabled = False Timer1.Enabled = True[/CODE] | |
Re: You will have to find out which row was selected first and then update the recordset. Use something like - [CODE]Text1.Text = Datagrid1.TextMatrix(Datagrid1.Row, 1) Text2.Text = Datagrid1.TextMatrix(Datagrid1.Row, 2) Text3.Text = Datagrid1.TextMatrix(Datagrid1.Row, 3) 'and so on...[/CODE]:) | |
Re: And yet another fool rush in, dumb a*#. | |
Re: Thanks for the ban of the member. I agree that we can not just ban a member if he steps on the line. I have found that with a little tap on the fingers most "abusive" members do get back on the straight and narrow, although "spoonlicker" really asked for … | |
Re: No you can not. You need to show that you have put some effort in coding a reservation system. Please read our posting rules, we do not do homework here. Once you show some effort, we will gladly help you get a solution.:) | |
![]() | Re: If I read this (wow, a lot:)) correctly, the combo box should get the focus if it is visible? Try and set the enabled property to true first, then set the focus. It also seems we missed your post, almost.;) ![]() |
Re: I think this is what you are looking for... [CODE]'\ This function will convert only round numbers. Just paste the code as it in a fomr. '\ Place one Textbox named "text1" and one command Button named "Command1" Option Explicit Dim sUnits(0 To 20) As String Dim sTens(1 To 10) … | |
Re: Welcome to Daniweb.:) I have asked the mods to move this post to our web development forums. | |
Re: Try the following - [CODE]Dim count As Integer For count = 0 To Adodc4.Recordset.RecordCount -1 If Adodc.Recordset.EOF = True Then Exit For Else 'All the other code here End If 'An easier way is to use a do while loop Do While Adodc4.Recordset.EOF = False 'All code here Loop[/CODE] | |
Re: You could use something like this in your workbook - [CODE]On Error Goto IsClosed If Not Workbooks("blabla") Is Nothing Then MsgBox "Workbook is open" Exit Sub End If IsClosed: MsgBox "Workbook is not open."[/CODE] Or, You can use a: For Each...Next loop to check the .Name property of all open … | |
Re: If you say "lock the windows", are you talking about Microsoft Windows or a form in your application which needs to be unaccessible until the user logged in? | |
Re: Welcome. As you can see, we do actually read this AND we reply as well.;) | |
Re: Have a look at the following search links - [URL="http://www.google.com/search?q=64bit+installer+file+in+vb6&rls=com.microsoft:en-US:{referrer:source?}&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7WZPA_en"]http://www.google.com/search?q=64bit+installer+file+in+vb6&rls=com.microsoft:en-US:{referrer:source?}&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7WZPA_en[/URL] and [URL="http://www.google.com/search?q=64bit+installer+file+in+vb6&rls=com.microsoft:en-US:{referrer:source?}&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7WZPA_en#sclient=psy&hl=en&rls=com.microsoft:en-US%3A%7Breferrer%3Asource%3F%7D&rlz=1I7WZPA_en&source=hp&q=32bit+installer+file+in+vb6&aq=f&aqi=&aql=&oq=32bit+installer+file+in+vb6&gs_rfai=&fp=634607d52d82d8c1"]http://www.google.com/search?q=64bit+installer+file+in+vb6&rls=com.microsoft:en-US:{referrer:source?}&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7WZPA_en#sclient=psy&hl=en&rls=com.microsoft:en-US%3A%7Breferrer%3Asource%3F%7D&rlz=1I7WZPA_en&source=hp&q=32bit+installer+file+in+vb6&aq=f&aqi=&aql=&oq=32bit+installer+file+in+vb6&gs_rfai=&fp=634607d52d82d8c1[/URL] | |
Re: Welcome to Daniweb Loida.:) I'm sure our Java experts will help where they can in our Java Forum. | |
Re: Try the following - [CODE]WebBrowser1.Document.All("Login").Click[/CODE] | |
Re: Have a look at [URL="http://www.google.com/search?q=access+google+database&rls=com.microsoft:en-US:{referrer:source?}&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7WZPA_en"]this[/URL] link. I am still not sure whether you can access their database though.:) | |
| |
Re: @blueciel, you need to open a new thread with your question about Ascii. Mark this as solved, your question has been answered. We are trying to keep specific questions to specific solutions.:) | |
Re: Computer science is not really walking hand in hand with human resources, so I would say no. Rather go for studies in human resources if thats your forte.:) | |
Re: @Josephbeluan, you should know that hijacking of others threads is not allowed. You need to open your own thread and post your question there. Click [URL="http://www.daniweb.com/forums/newthread.php?do=newthread&f=4"]Here[/URL] to open your OWN thread. | |
Re: @Das, this is a separate thread from the previous, which was saving a smiley. This thread will be handling the display of the said smilies when called from the database into a popup balloon message.:) Jeff, post your code you mailed me, lets see where your problem lies, thanks. | |
Ever wanted to change jobs or wondered what else is out there for the more senior developer. This guy has drawn up some interview questions (supplied by readers and interviewers) for senior software developers that will determine if you will be able to land that new shiny job. Have a … | |
I found this very interesting article about the seven deadly sins of software development. I am sure we all have a sin in there somewhere. It covers all seven, Lust, gluttony, greed, sloth, wrath, envy and pride. The full article can be found [URL="http://www.infoworld.com/d/developer-world/the-7-deadly-sins-software-development-872"]HERE[/URL]. | |
Re: The error means that one of your objects has no reference. You need to make sure that every variable and object has been declared or referenced.:) | |
Re: Firstly, Access over a network with multiple (max 5) users can slow down to a crawl, hence the use of MySql or MS Sql, which has a stacking feature which will run all queries as they arrive, speeding up data transfer considerably. Another culprit might be the LAN connection transfer … | |
Re: Have a look at the attachment, It covers all the code to load to excel, save from excel etc. This was a sample done for another member a while back with the same question. If this is what you were looking for, mark this as solved, found at the bottom … | |
Re: [QUOTE]Suggestion:-- 1. Instead of using Case cmbSearch Case "By: Customer Name": take the value from a combobox instead (use the index in CASE not the text). [/QUOTE] [CODE]Select Case cmbSearch.ListIndex Case Is = 0 'Code here Case Is = 1 'Code Here End Select[/CODE] [QUOTE]2. Don't use like operator on … | |
Re: Are you trying to do a sum of all the weight data (4000 + 40000 + 6000 = 50 000) and then add this to a field in your table? | |
Re: Now you just have to mark this as solved, found at the bottom of this page, thanks:) | |
Re: Follow [URL="http://www.daniweb.com/forums/thread347138.html"]this[/URL] link. It covers the exact same question. Have a look at the attachment which is a small project I did for another member a while back. If the attachment solved your problem, please mark this as solved, found at the bottom of this page.:) | |
Re: @Kimar, please read our posting rules [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]here[/URL]. You have hijacked someone else's post, you have shown no effort, just asking for a project etc. etc. These are against our posting rules. You need to open your OWN thread [URL="http://www.daniweb.com/forums/newthread.php?do=newthread&f=4"]HERE[/URL]. Then show us what code you have so far, we will … | |
Re: Hi Jeff, I received your e-mail. Thanks for posting here. As Debasisdas pointed out, they are all part of key stroke events, i.e - [CODE]:)[/CODE] = :) You need to get the different key combinations for each smiley, save it, and when called, return them to smileys. |
The End.