Thanks this is exactly what I was looking for asp
AlainStP
Posts
-
I would like to create a textbox where I can input hour and minute. -
Calling all vber’sI agree A lot of people are starting and are using VB for it's ease of use, the enormous snippet, tutorial, documentation and help available out there. Microsoft has spend and still is spending tons of money to make this language more and more sophisticated. Just remember Cobol back in the 80ies where programmer sware that this was the only good language for accounting purposes, where is it today? Dead! VisualBasic has been around since 1991, and is stronger today that it never was. You can use it with all office application, and also autocad, sageaccpac to name a few with the derivative VBA. You may not like pizza but it doesn't mean that pizza lover are idiots. asp
Alain St-Pierre
-
I would like to create a textbox where I can input hour and minute.I am trying to figure out how to create a textbox, or another component where the user can click up and down to change the time (hours and minutes). Like the one we use in windows when we need to change the hour/minute of our OS. Thanks again asp
-
Changing the label text property with code.Thank you all for your help. I know it's probably not the best way to do it, by creating a dictionnary, but since my project is small, it does the job for now. When I get better at coding I will look at other ways to do it. PS I am using Visual Studio 2010 ultimate. I have another question but I will post another thread Again thanks
-
Changing the label text property with code.Ok Thanks for your answer I found how to do it with ctrlDict("label" & i).text
-
Changing the label text property with code.Hi all I am very new at programming anf I would like to do a very basic function, to change the label.text thru some code. The following code does not work but it will give you the basic idea of what I want done
For i = 1 To number Label(i).text = i Next
The reason is that my label will change in function of the day of the month Thank and keep up the good work. asp