2,155 Posted Topics
Re: It seems that the processing speed differs on both desktops, hence the hanging first and then the unresponsive application. Is there any other code running while you connect or interact with the video feed? | |
Re: Nice to see the effort from your side, thank you.:) Please mark this as solved, found at the bottom of this page, thanks. | |
I am loading text from a text file into my page. This all works fine, but it loads the text as one paragraph and not in separate lines, line breaks or paragraphs. How can I achieve the line breaks to load the same as is the text in my text … | |
Re: Incorrect date formats will result in an error. Try the following - [CODE]'.... code.... DateValue('" & DateTimePicker1.Value & "'",[/CODE] | |
Re: That is a lot of questions with no effort shown. Please read our rules, you need to show some effort first please. | |
Re: As far as I know MySql is still MySql. MySqli is just extensions on MySql for PHP. Did the normal MySql setup not work when you have tried? | |
Re: [CODE]MySqlCommand("SELECT * FROM Prescriber WHERE Name = '?Name'") 'Added the " ' " apostrophized character...[/CODE] | |
Re: There are tons of samples available if you search for "Inventory sample in vb6" on google. Once you have the sample code, ask a question if you have any errors etc on the code. Please show some effort before we can assist.:) | |
Re: The length for an integer is limited, hence your error. Change integer to Long or to Double which allows for a much larger result.) | |
Re: Your count usage is correct. You just need to find the amount of rows affected, devide the count into the rows to get a pass/failure average and then base your condition on the result. | |
Re: Nice in solving this yourself. Some "kudos" for your effort. Please mark this as solved, found at the bottom of this page "Is this thread solved?", thanks.:) | |
Re: Have a look at [URL="www.connectionstrings.com"]connectionstrings[/URL] here by using vb.net. | |
Re: @Hellsy, being a new member and all, please have a look at our posting rules [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]HERE[/URL]. You have hijacked TDucks post, which is not allowed.:) @TDuck, we do not share personal information here, you have just opened yourself to spam galore!;) Hellsy, please open a NEW thread if you want … | |
Re: I'm sure the OP has found a solution since 2008, but no harm in adding an answer since there was no solution posted, thanks lhxndd.:) | |
Re: You went the long way around.:) Just change your select statement and show the recordcount. [CODE]rsInventory.Open "SELECT Expiration_Date FROM YourTable WHERE Expiration_Date < DateValue(Date)", conn, adOpenStatic, adLockOptimistic txtExp.Text = rsInventory.Recordcount[/CODE] | |
Re: The rumor is entirely true, unfortunately. Access can only handle up to 5 calls at the same time. If there are more calls to the database, the data will be dropped. All the other databases has a stack feature where all calls gets stacked and added without any data loss. … | |
Re: You can also search google for "rs232 in vb6" which will give tons of sample code. RS232 is the cable connected to the hardware, reading and posting commands to your hardware. | |
Re: Depends on the code you might have. If you have used "App.Path" for instance, it will raise an error because the user paths in xp is different from Vista and Win 7. Have a look at [URL="http://www.daniweb.com/code/snippet313435.html"]this[/URL] link I have posted before on the requirements moving to vista or win7. | |
Re: Age does not count, but the skill that you apply to your applications. Remember that Bill gates was virtually a minor when he developed windows...;) | |
Re: @Stats, you will definitely have to show some more effort. What code do you have so far? The question looks like it has been copied directly from a homework task. We WILL help, if you show some effort. | |
I can validate the captcha successfully, but when I set the button property 'Action' to 'Submit form, the captcha does not work, nor does the validation on username and password. When I set it back to 'None", Captcha works, Data not validated. The code below is quite long, but it … | |
I have the following code that checks for captcha validation in php. If successful it will echo correct etc. [CODE]<? /* This is the back-end PHP file for the How to Create CAPTCHA Protection using PHP and AJAX Tutorial You may use this code in your own projects as long … | |
I have noticed, since last night, that there is fluctuations in the member panel calculations. When checking my daily activity on my panel, I had 126 points. I then continued to the member rank page where it showed 57. I thought it was the daily cut off, but when I … | |
[QUOTE]DaniWeb Message Your submission could not be processed because the token has expired. Please push the back button and reload the previous window.[/QUOTE] I have posted a welcome to a new member last night. This morning I have noticed that it does not show up, so I have reposted the … | |
Re: You've beaten me to this.;) When using date formats, include the "#" character OR as my previous posts, DateValue().:) Well done, some kudos for solving yourself. Please mark this as solved, found at the bottom of this page, thanks. Happy coding.;) | |
Re: What a fool. I believe that he is actually back again, poor students... Damn!!!:D | |
Re: This part from MS - [QUOTE]Allow or correct a circular reference When a formula refers back to its own cell, either directly or indirectly, it is called a circular reference. Microsoft Excel cannot automatically calculate all open workbooks when one of them contains a circular reference. You can remove a … | |
Re: Mmmmm, what exactly do you need? Bubble etc, we need more info.:) Are you by any chance ruudicruise, posting the same question under a different member name? | |
Re: If I understand this correctly, you want user privileges in your application? When adding a user to your database, add a field to state the users "level", Admin can open all, Level2 only some etc. When logging in, get the user level and then enable/disable menus accordingly. | |
Re: @Raniel1314, You need to open your own thread please. We will not reply on this thread, it belongs to another member and it is quite old. Post a new one, I'll answer from there. | |
Re: See your other thread. I have applied there. | |
Re: You went the long way around.:) [CODE]With RecSet .Open "Select * From Users WHERE UserType = 'Administrator'", DBLink, adOpenKeyset, adLockPessimistic If .Recordcount = 1 Then MsgBox "Limit of allowed Admin users is reached. Adding of Admin user is no longer allowed.", vbInformation, "Prompt" End If[/CODE] You can use the same … | |
Re: Seems we missed your post. Your code will be something like like - [CODE]Dim xAdd As Integer For xAdd = 0 To rs.Recordcount - 1 'Rs is your recordset Combo1.AddItem rs!Product rs.Movenext Next xAdd[/CODE] | |
Re: Show us the code. I'm not sure what you need. I understood the same as Jx_Man, unless you are referring to the data on line 3, which will then be something like - [CODE]Me.Combobox1.ListIndex = 3 'Will show the value from the 4th entry, starts at 0...[/CODE] | |
Re: You will have to check before your INSERT statement if the record exist. This can be done by using the BOF or EOF functions. If any of these are true, the record does not exist and you can add the data, else exit the sub. | |
Re: Have a look at [URL="www.connectionstrings.com"]www.connectionstrings.com[/URL] which will have the correct connection code for you to use. There are many ways to connect, depending on your needs like web app, .net, LAN connection or web connection etc. It gives you all the options with the code. | |
Re: It seems that you haev deleted the root user. I went through the exact same thing last week. The eventual solution was to uninstall xampp, mysql file had to be deleted etc. I did a clean install and all worked perfectly after that. | |
Re: The reason you never found any replies is because you did not show any effort from your side. There is a lot of work involved in getting a cpu app to work. I will however help you with this one.;) In a class module - [CODE]Option Explicit Private Declare Function … | |
Re: That would be because the Jet db drivers is not installed on your laptop at home. You need to download the drivers and then retry. Your other problem will also be that the database is non existing (assuming it is:)), which will return more errors. Lets first try and sort … | |
Re: @Das, it seems we have another trawler on our hands. He obviously did not reply back on this, showed no effort and hijacked this thread. He then went and posted on the other thread which we both rated with a remark like "Yeah". I'll keep an eye on him and … | |
Re: Try the following - [CODE]List2.ListIndex = List1.ListIndex List3.ListIndex = List1.ListIndex[/CODE] | |
Re: [QUOTE]A home of wood in a wooded place, but built not by hand. High above the earthen ground, it holds it's pale white gems. What is it?[/QUOTE] a Birds nest :) What is it that you can keep after giving it to someone else? | |
Re: Have a look at the attached zip, way much easier method to get a 100% returned time. You can shorten the code by a lot when using it inside your loops.:) | |
Re: Set the customer id as primary key. In your asset table have a field for the customer id. Every customer and asset will then be "linked" this way. If you wanted code, post what code you have and we will then help with solving errors. | |
I have just started designing, stuck on this. I have a few div tags that I am trying to line next to each other with a 10px spacing between them. I just can't seem to get it to align though. They are contained in another tag (center_container) with the following … | |
Re: Have a look at [URL="http://www.vb6.us/tutorials/using-crystal-reports-vb6-tutorial"]this[/URL] tutorial. You should find everything you need in there. | |
Re: Welcome to Daniweb Roz. Enjoy your stay, oh yeah, and the tacos. |
The End.