"I was wondering If there is a way to limit how many times a person can run a .exe created in VB.net?" Keep a running count in the registry. "Is there a way to...
Dear Friends, I have spent three years developing a software in Visual Basic called Banerjeepad. The software is available for download at the following...
I am working on a database program during which i found a problem: I have used Microsoft Tabbed Dialog Control,First time when i clicked on a tab1 "text1 text...
I am having a problem with passing a simple variable between different forms. What I have done was create a logon screen for users and I want to pass the user...
You can do that several ways. One is to make those variable Global. I would advice against this though. I would add a property to the logon form like this: ...
Say you have alogin form FRMLogin another 2 froms FRM_1 and FRM_2 you have to make a "public shared variable" in FRMLogin like public shared Var1 create...
Hello group! I'm new to this group and only slightly less new to .Net programming. My background is as a Microsoft Access developer, with moderate experience...
or you can do the same but no need create an instance of the class. just access the variable using class name for example: if u define var1 in class class1 ...
No you can not access a variable that is part of a class with out creating an instance of that class. You can add a public variable to a .bas Module and...
No Nick i am talking here about "public shared variables" you can access them using class name without instance of class Qais ... From: "Nickolaos Fotopoulos"...
... Define a public variable (username) in standard module and share it in other forms __________________________________ Do you Yahoo!? Yahoo! Mail - Find...
Firstly its not a class, so its not a class name, second you can access it without a module name since its public. If you dimension a variable in a Module and...
Definition of "SHARED" from .NET "The Shared keyword indicates that one or more declared programming elements are shared. Shared elements are not associated...
Thanks SJ. I actually wound up using a hashtable to store references to the individual nodes and it worked great for retrieving them later. Thanks - RH ... ...
Hi all! I just joined and I am not really all that into VBScript. So I was hoping someone could help me. I am trying to run through a lot of folders searching...
Maybe. I don't believe we were talking about .Net though since Qais made no mention of the Shared Keyword or .Net. Creating a class for the purpose of making...
Careful here. You can define a class as global multiuse (in VB6) or define a function or property to be shared (in VB.Net). If you do this you can call a...
First, thats not true either. I just tested this, and even with an Class in an ActiveX project set to Global Multiuse, you still have to do the following to...
From MSDN: Global Objects and Code Libraries See Also You can build libraries of general-purpose procedures in Visual Basic by making the procedures methods of...
Hi, Please help me how to find system idle time in a visual basic. For example if i specify 15mins then that application must be terminated after 15mins. ...
I stand corrected. Thanks for taking the time show me the error of my ways. ;) While testing the global multiuse setting I was attempting to reference the...
Hi everyone, I'm taking correspondence courses thru Education Direct and I need a little help with a project I'm working on. The following is part of the...
Hi, Please help me how to find system idle time in a visual basic. For example if i specify 15mins then that application must be terminated after 15mins. ...
Hi, Please help me how to find system idle time in a visual basic. For example if i specify 15mins then that application must be terminated after 15mins. ...
hi people, need to view an image stored in SQL Server data base -as image field- in crystal report. any help there Qais [Non-text portions of this message have...
If by "system idle time" you are referring to the amount of time since the user last input data via the mouse or keyboard then the following should work. I'm...
I am getting a error message on a file that I have on our server. The acess version is 2003, but the error that I am getting is vtext.dll version 1.0...
vtext.dll is part of Microsoft Speech API v4.0 (SAPI 4). Are you using something that might be making use of Text to Speech? Maybe a MS Agent (those cute...
I would like to know what method u adopted to fix your problem. [using hash table]. Hope u recieved the code i send -Shinejoseph Thanks SJ. I actually wound up...