No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
12 Posted Topics
Re: Read this article which explains all about menus in VB6. You can find the solution for displaying a right mouse click menu (context menu) in the end of this article (example 2). [URL="http://www.vb6.us/tutorials/working-menus-vb6"]http://www.vb6.us/tutorials/working-menus-vb6[/URL] Please mark my reply as the solution if it helps you. | |
Re: Place a data control on the form Set the database and recordsource propery of the data control Then place the text boxes to display the values. Select the datasource property of each text box and set it to the data control. Now set the datafield property of each textbox to … | |
Re: [QUOTE=jhai_salvador;917417]You can do this one if you like.. I dunno if the code is correct and this is what you want but you can do this.. Use adodb... Dim cn as ADODB.Connection Dim rc as ADODB.Recordset dim cm as ADODB.Command then.. cn.open "then your connection string" and then... cm.CommandText = … | |
Re: Could you please elaborate your question? | |
Re: [QUOTE=renu_kj;916068]Hi, Is there an option/ or a formula to generate random numbers without duplication...Currently i'm not storing the random generated numbers in the database. Please help me..its quite urgent[/QUOTE] You can use the below function to return a random number Public Function GetRandomNumber(Upper As Integer, Lower As Integer) As Integer … | |
Re: Is this post still active? If not please close this. Anyways, You can write a vb code in an excel macro to read the values from a static webpage. But I think it will be very difficult to write a code to read pages which changes frequently and has a … | |
Re: I have checked your tables. I found that there is no relationships between the table. So this result is expected. You need to create a primary key field in the table1 (lets say name column is primary key) Now you need to create a corresponding foriegn key column in the … | |
Re: How are you trying to attach (open) the .mdf file ? | |
Re: I think you have only installed the SQL Server Client Components, You need the Server components of the SQL Server to be installed for running databases. After installing the SQL Server, you will get the "SQL Server Management Studio" to manage the Databases. | |
Re: You can enable AWStats for your site. This will geve you statistics about the pages viewd and other data like counts of file accessed etc. You can enable this if your hosting supports this. Regards, | |
Re: I will suggest you to change your code like this. [code] <sessionState mode="StateServer" cookieless="false" timeout="900"/>[/code] Here I have changed the session state to a seperate worker process (ASP state management server). It is recommended to move your session into the stateserver or SQL server state management in the production environment. … | |
Re: If your problem is that your page is getting timed out before the timeout value set. Then I will suggest you to change your web.config code like this. [code] <sessionState mode="StateServer" cookieless="false" timeout="30"/>[/code] Here I have changed the session state to a seperate worker process (ASP state management server). It … |
The End.