2,155 Posted Topics
Re: I have installed vb6 WITH sp6 onto virtual XP and it worked fine. I agree with most that you have to "trick" 7 into thinking that you are running XP, it will respond to your application, only with SP6. Some API's still bombs, look at the install you had to … | |
Re: :twisted::twisted::D:D:icon_lol::icon_exclaim:WTF. There is not enough space here for all the LOL's. How can a peron expect to get ANY money from a site like that. Almost looks like the pop ups "YOU ARE THE 1909874658989387 billionth WINNER TODAY! CLICK HERE" hahaha. | |
Re: [QUOTE]which means there's a swathe of that decade which has just vanished from my memory[/QUOTE] Hehehe, I'm sure the word for this is alzheimers's.;) The well in the eighties.... Sounds like necromancing, not allowed here.:) | |
Re: Welcome to Daniweb Alisa.:) Nice to see that you took the step on joining us, have fun with us.;) | |
Re: Welcome to Daniweb.:) We'll see you around the java forums... | |
Re: Newbee, I've asked that your thread be moved from Comm Intro's to C++. You will get a much better response from there. Happy coding.:) | |
Re: What database are you using, access, MySql, Sql? If you say online, on a local network or the web? Do you have the IP for the server etc.? | |
Re: @Dean, jy sal verbaas wees wat party van die lede hier kan doen! Ek het vir 'n geruime tyd gebruik gemaak van DreamInCode (for all English readers, this is Afrikaans..):), they suck. The forums, help, layout and "difference" is by far better, so don't even compare.:) | |
Re: Welcome to Daniweb Lokesh. Good luck in finding a job soon.:) | |
Re: Use the listindex property - [CODE]Dim strAll As String strAll = List1.ListIndex(0) & " " & List1.ListIndex(2) 'and so on[/CODE] | |
Re: There is no way we can help you with the information given. It's almost as saying "I want to speek german, how do I do it?":) What program do you want to start? What code language - vb6 etc? what database - access, sql, mysql? What will run on the … | |
Re: Have a look at [URL="http://www.codeguru.com/forum/showthread.php?t=493524"]THIS[/URL] post with an attached sample on using the mouse click event with shift or ctrl. The code looks something like - [CODE]Private Declare Sub keybd_event Lib "USER32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long) Private Declare … | |
Re: Try to refresh your listview before it is shown. | |
Re: I can not see a value given for CuntDts, although you are calling a value against it, hence the out of range script. Something can't be true if it does not exist... Add a value to CuntDts and try your code again.:) | |
Re: It seems that you already found a solution [URL="http://social.technet.microsoft.com/Forums/en/ITCG/thread/9f511009-84d3-4b2f-bae0-a70f64031f5a"]HERE[/URL]. Please mark this as solved so it can be closed properly, thank you.:) For future members with the same problem, have a look at the above link for the solution. | |
Re: [QUOTE]Hi I have this form which works well when it is in list box.[/QUOTE] Is this nor suppose to be the other way around, listbox in a form? [CODE]when I change the list box to combo box[/CODE] Have you deleted the listbox and then added a new combobox? [QUOTE]Dim tco, … | |
Re: Divakar, please mark this as solved so it can be closed properly, thanks.:) | |
Re: As far as I know it is possible, see [URL="http://www.freevbcode.com/ShowCode.asp?ID=3492"]MORE[/URL] from this link with code samples... | |
| |
Re: Read [URL="http://visualbasic.freetutes.com/learn-vb6/lesson22.15.html"]THIS[/URL] link for a full on tutorial and sample code on how to create a data report. | |
Re: Welcome to Daniweb.:) I'll ask the moderators to move this to our IT Prof Lounge, you'll get more feedback from there.:) | |
Re: In a module the following - [CODE]'GetAsyncKeyState uses user32.dll. The only parameter it takes 'is a long "vKey", which is a virtual key. It returns a 16 bit 'integer which describes the position of the key at the time the 'function is called, as well as the last time the … | |
Re: Welcome to Daniweb Pavan.:) If you need any help, just open a new thread in the forum you need help with. You will find all the forum menus at the top of the page. | |
Re: Change the following -[QUOTE]For i = 0 To 31[/QUOTE] to [CODE]For i = 0 To 30[/CODE] Your index starts at zero, which is your first counter. You've referenced 31, but are calling 32 loops in your statements, hence the out of range error. | |
Re: No problem. I'll post it today.:) | |
Re: It seems that the reason it takes time before an error occur is because it is trying to connect to the server. It will automatically try and loop through all connections and ports for the server IP. Show me any one of the server connection codes. Your problem is contained … | |
Re: Try the following - [CODE]Adodc1.RecordSource = "Select * from Owner WHERE YourNameFieldNameHere = '" & txtName.Text & "'" 'You can also try the following which will return all names starting with your search criteria... Adodc1.RecordSource = "Select * from Owner WHERE YourNameFieldNameHere LIKE '" & txtName.Text & "%'"[/CODE] | |
Re: Welcome to Daniweb.:) I saw your thread in the vb6 forum, follow the help from there...:) | |
Re: You could use the ".ApproxCount" property of the Datagrid. If it is bound and open then you could use this property to check if there are any rows in the grid. If there are no rows available, exit your sub or disable the grid so no click event can be … | |
Re: Is there data involved? If so, what database, access, sql, mysql? What layout do you have so far? What code do you have so far? Where will the water level be measured from, an external device? You need to give us much more for us to help you. | |
Re: Must have been an ad. We will be stuck with our pc's for quite some time I'm sure. It might change its look and feel, but it will still remain a pc....:) [QUOTE]I do not want to snip a link that would possibly endanger our Community Members.[/QUOTE] Thank you, you … | |
Re: Is the motor spinning? What noises do you hear? | |
Re: You need to break down the minutes from the seconds first, then calculate the seconds. If more than 60, convert to minutes. Calculate the minutes PLUS those carried over from seconds.:) Have a look at [URL="http://forums.devx.com/showthread.php?t=58118"]THIS[/URL] link on how to convert them.... | |
Re: Remove [QUOTE]Set ws = wb.Worksheets(assistants.List(j)) 'Specify your worksheet name[/QUOTE] this part from your code and all that is referencing it. It opens a specific sheet for you. By removing it, you keep to only one sheet. | |
Re: There is a much quicker way to solve this. For all the other postes, please note that it is a bad habit of coding by using the "" quotemarks to refer to an empty string. VB uses the vbNullstring in confirming an empty string - [CODE]'As incorrect ---- Text1.Text = … | |
Re: Welcome to Daniweb.:) Yes, any application that looks, feel and operate better than the ones available will sell. Have a look at our menus at the top of the page. Post a question in the language you would like to develop the application in and give it your best.:) You … |
The End.