2,951 Posted Topics
Re: How do you expect us to help you without having any detail idea of what is happening at your side and what exactly is your requirment. | |
Re: Can you post a sample code to create a Screen saver in this thread please. | |
Re: Do u have any difault printer on the pc. You better consult the person who made the changes. | |
Re: That is quiet simple but too vast to expalin over here. Please follow a good book for the same. You also find a lot of related topic / code here by using the search utility in this forum itself. | |
Re: How do you expect the application to open the database without knowing its location. It never happens that application will run without knowing the location of an access database . You have the option of asking the user to specify the database location initially at the start of the application. | |
Re: Why don't you use database for the purpose. It will be very simple with that option. | |
Re: I don't think this question has anything to do with database designing. | |
Re: Check wheather thers is any lock on the table . Use indexes to increa the performance. | |
Re: Why don't you go for database connection instead of storing all that in Excel files. By using databse you will have better data security and reporting options. | |
Re: try using rs.movelast and then use rs.RecordCount | |
Re: What do you mean by created database with ms .You are using MS Access or MS Sql Server ? | |
Re: You can specify the size of data thast you need to retrive in the Sql squery. | |
Re: That might be cecause of the resource is busy and it is taking too long to establish the connection with database. | |
Re: To succeed the most import thing is how you design your database and of course you have to use LIKE search. | |
Re: Once the report is filled with data the report will be automatically shown. | |
Re: capture the username and password from input and compare with database. Try to use COUNT through SQL. If that returns 1 then login is successful. | |
Re: There is no problem with access 97 if mutilple users looking, printing data. That is no way going to create any problem for you. There can be any number of users looking at the same record at the same time. so far as other databses are concerned ,you can connect … | |
Re: Try this sample connection string. [code=vb] oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=c:\somepath\mydb.mdb;" & _ "Jet OLEDB:Database Password=MyDbPassword", _ "myUsername", "myPassword" [/code] | |
Re: Yout post is bit confusing, please post your question clearly about your requirment. | |
Re: Try to incluse and use Microsift Scripting Runtime from project ---> References. Make use of FileSystemObject . | |
Re: I don't think that is anyway related to VB 6.0. | |
Re: What do you mean by form contain ? If want to save the data in the form use database connection for the purpose. | |
Re: Try to create the view using simple where clause for checking the PurchaseDescription field and change the other fields accordingly. ![]() | |
Re: Please pass few more details . It is very difficult to suggest anything based on the very little info passed by you. | |
| |
Re: What exactly you are trying to do ? Are you trying to play the sound files ? | |
Re: That is because both the variables P_ID and P_NAME are IN type variables. So you cant asign value to a In type variable in a select into statment. | |
Re: What is the type of connection that you are using. | |
Re: Kindly mention what is the databse you are using and how you are trying to connect the control to the database. | |
Re: after creating the connection object establish the connection to the database. Right click on connection and add a command object .Right click on the command object and select sqlstatment in the general tab in properties . add the sql statment that you want. Hope that solves your problem. | |
Re: If you are not using the form itself to show the picture then trry to use a image control stretch the image and resize the control to the size of the form. | |
Re: If you are trying to store value retrived from database then try to use [B]x=DE.rsPegawai!NmPeg[/B] | |
Re: There is no problem with this piece of code. It is better to close the recordset and connection at the end. | |
Re: Your question is too much theoritical to explain over here. It is beyond the scope of this discussion to expalin all that here. Please go through some good book for the same. You can easily find all that by little web searching. I'd suggest you have a look around the … | |
Re: Don't expect tothers to write code for you . You need to post the code that you have tried so far to get help from experts of the forum. | |
Re: You simply need to add Microsoft Scripting Runtime to your project from Project ---> references. Rest all is fine . Hope that solves your problem. | |
Re: try this sample query [code=oracle]insert into temp values(101,'vijaya''s');[/code] hope that solves your problem. | |
Re: Your question is toomuch throritical to explain here. There are lot of example code here. You only need to spend some time to search for them. | |
Re: Kindly pass few more details . What is the database that you are using and how you are conecting to database. | |
Re: I think one text box for message entry and another Listbox would be better to display the message back to back. But why you need connect to database for that. | |
Re: Are you expecting the complete code with proper documentation. | |
| |
Re: [quote=vidyahajare;461160]hi folks, i want some help with dlls i want to create dll which will take image file path as input string do some processing, and five different strings as output. how to use it. can anyone give sample code thanks[/quote] What exactly is your requirment ? What is the … | |
Re: Actually ADO and DAO are totally different technologies. DAO is much older in comparision to ADO,which is the best technilogy as per performance and security that is available in VB 6.0. theya re not compartible with each other. so if you wna to change your cod efrom DAO to ADO … | |
Re: Then u need to do the same from your frontend application. For encription or decription u can use any logic that is more suitable to your project. | |
Re: The logic is so simple .This can be implemented at the database level it self by using SQL statments. When the user tries to login check for existance of such an user with the corresponding password . If the user exists then go further. To check for existance try to … |
The End.