Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #12.3K
Ranked #2K
~3K People Reached
Favorite Tags

12 Posted Topics

Member Avatar for dspnhn

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.

Member Avatar for johnly
0
102
Member Avatar for sackymatt

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 …

Member Avatar for sackymatt
0
212
Member Avatar for abu taher

[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 = …

Member Avatar for jhai_salvador
0
121
Member Avatar for brieghz23
Member Avatar for renu_kj

[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 …

Member Avatar for johnly
0
361
Member Avatar for kinger29

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 …

Member Avatar for johnly
0
151
Member Avatar for abu taher

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 …

Member Avatar for johnly
0
99
Member Avatar for gingank
Member Avatar for anuj_sharma

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.

Member Avatar for johnly
0
119
Member Avatar for manoj_dabs

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,

Member Avatar for johnly
0
1K
Member Avatar for shivani15j

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. …

Member Avatar for ardeezstyle
0
127
Member Avatar for rooparaj

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 …

Member Avatar for johnly
0
334

The End.