Coli Software programmers i need help in visual basic

street heat

merchant of death
Joined
Jun 15, 2012
Messages
12,209
Reputation
-2,926
Daps
29,647
Reppin
NULL
i just want to make a button that will copy text from a text bar to clipboard when clicked.

what command do i need to enter in ?
 

street heat

merchant of death
Joined
Jun 15, 2012
Messages
12,209
Reputation
-2,926
Daps
29,647
Reppin
NULL
ok i figured that out. now i would like to make a save button, so every time the program is opened what ever you typed is still there.
 

Kid-Wave

Pro
Joined
May 20, 2012
Messages
515
Reputation
110
Daps
533
Reppin
NULL
Been a while since I coded anything...but basically you need it to create a file, probly just a text file, to write whatever input you have and have that save whenever the program closes....you know about input/output streams, parsing stuff and the like?
 

street heat

merchant of death
Joined
Jun 15, 2012
Messages
12,209
Reputation
-2,926
Daps
29,647
Reppin
NULL
Been a while since I coded anything...but basically you need it to create a file, probly just a text file, to write whatever input you have and have that save whenever the program closes....you know about input/output streams, parsing stuff and the like?

nope. ive only taken an intro to visual basic class, and that was like 6 years ago. i would like to be able to save all the info i enter into the textboxes each time i open the program. also be able save multiple "profiles" with different info.
 

gho3st

plata or plomo
Joined
Oct 27, 2012
Messages
34,504
Reputation
2,740
Daps
82,838
Reppin
2016
nope. ive only taken an intro to visual basic class, and that was like 6 years ago. i would like to be able to save all the info i enter into the textboxes each time i open the program. also be able save multiple "profiles" with different info.
every button you create is an object. Once you start seeing it that way, it should be easier to code and have it do what you want.
Coding is rooted in logic, you should think on what you want to do step by step and translate it into programming language.
 
Top