2,951 Posted Topics
Re: and you may not get the elipses for the printer object. | |
Re: if looking for the connection string please find it [URL="http://www.connectionstrings.com/?carrier=sybase"]here[/URL]. and then use ADO in VB for the purpose. | |
Re: ADODB is based on the OLEDB. This is a different architecture from ODBC. ODBC is a different layer itself, it is neither part of front end nor backend. | |
Re: try to use this [code=vb] Dim objOutlook As Object Dim objOutlookMsg As Object Set objOutlook = CreateObject("Outlook.Application") Set objOutlookMsg = objOutlook.CreateItem(0) With objOutlookMsg .To = "myfriend@gmail.com " .Cc = "hisfriend@yahoo.com" .Subject = "Hello Friends (one more time)..." .Body = "This is the body of message" .HTMLBody = "HTML version of … | |
Re: You can refer some good books for the purpose or can find a lot by inesting some quality time in web-seaching. | |
Re: Try to use ADO for the purpose. Then use inbuilt methods of the objects. | |
Re: You need to store the username,pasword and along with that store the secret question and its answer. If the user forgets the password display the question and prompt for the answer. If it matches with stored answer then provide the password or send a mail to his account. | |
Re: How do you connect the mobile to system. Is that a smart phone or PDA ? | |
Re: You can also assign individual keys for each of the positions using the above logic. | |
Re: Try to use the inbuilt login screen of VB 6.0 | |
Re: To find the difference yo simply need to substract. Kindly post what you have tried to solve this. | |
Re: Yes winsock is the solution. You can also try to use MAPI control. | |
Re: try to use [B]LIKE[/B] search and fill the combobox with the recordset. | |
Re: Try to use this sample code To use this sample, please following steps Create a new project in VB6 Pull down the Project menu and choose Components . Select the checkbox next to Microsoft ChartControl 6.0(OLEDB), Click OK. Add a combobox,one Mschart control and one check box tothe existing form. … | |
Re: You can you some third party tools also. | |
Re: Which costs more ? 1. My new car 2. My friends second hand car. | |
Re: try to use this sample code [CODE=vb]Public Function DistanceBetween(ByVal X1 As Single, ByVal Y1 As Single, ByVal X2 As Single, ByVal Y2 As Single) As Single ' Calculate the distance between two points, given their X/Y coordinates. ' The short version... DistanceBetween = Sqr((Abs(X2 - X1) ^ 2) + (Abs(Y2 … | |
Re: if the database is oracle then can use a trigger for the purpose. | |
Re: you might have opened the databsae in readonly mode. | |
Re: You start working on th eproject and post here if you face any problem. We will definately help you. | |
Re: How your card reader is reading from the cards ? Try to use timer. | |
Re: It is always better to store the picture in a LOB field in database after converting the file into a byte stream . It ensures that no data is lost . So you don't have to bother about location of all the files. | |
Re: Try to register the componet with windows before using that in VB. | |
Re: To connect TOAD to oracle you simply need to pass the username ,password and the database name. IF connecting to any other server ,you need to midify the entries in the TNSNAMES.ORA file. | |
Re: This part of the forum is not the right place for all that. Please visit Geek's Lounge for all that. | |
Re: What is the problem with the code ? Is that throwing any error ? | |
Re: To open a form, you need to create an instance of the form object. | |
Re: AND means all the conditon must satisfy. OR means any of the condition should satisfy. | |
Re: There are so many simply ways to be famous. Which one would you prefer ? | |
Re: what do you mean by self running ? If you are trying the program run automatically then create a windows service using .net | |
Re: Whom do you expect to read all that code and solve your problem ? | |
Re: SQL is part of backend database not of VB itself. It always executes in database .Vb has no sql syntax of its own. Even the SQL is not compiled by VB. | |
| |
Re: You need to handle the Change event of the text boxes. | |
Re: Self learning is the best form of learning anything and once you know that you will never forget that. | |
Re: Please specify what is the error message ? Which line is throwing the error ? | |
Re: You need to format the datetime into 24 hrs format . | |
Re: You can also use a counter to accomplish this task. | |
Re: That is a simple but excellent piece of code for beginners. | |
Re: You call the second form in the timer event of timer control .Timer accepts interval in miliseconds . i.e. for 1 second u need to pass 1000. | |
Re: You need to compile a DLL using c code and refer the same from VB. | |
Re: [QUOTE=rajeshkhanna_in;515403]Hi all, Is there a way in which a TSR program could be made in vb6.0. Something like If an EXE of a software written in vb6.0 is run, then this TSR program should load and remain their for as long as it wishes to (the program cannot be stopped … | |
Re: if you are inserting value from VB , you can restrict the entry of single quites by restricting chr(39) in the key press event. But if you dont want to do that replace ' by '' i.e. single quote by 2 single quites . Then there won't be any problem. | |
Re: instead of creating 10 check boxes create an control array and in a loop check the value of all and then finally frame the sql command dynamically. and pass the sql to report. | |
Re: There is no such option for you . | |
Re: You need to store the employee id in a global variable declared in the module so that it stores the value across the form. You easily fetch the record using the same id in form 2. |
The End.