Is it possible to change the font style of text displayed in user defined textbox in VB? If yes, plz suggest me code for that.
Message Box Help in VB
Collapse
X
-
Oh i'm lateOriginally posted by ShailjaIs it possible to change the font style of text displayed in user defined textbox in VB? If yes, plz suggest me code for that.
what do u mean by user defined text box i.e. textbox drawn naturally or .ocx created by the user? -
-
With general vb code its not possible but i think u can do this with the help of some API else u have to create ur ctrl for custom preferancesOriginally posted by ShailjaMessage Box that displays generally i mean by MsgBox(). Is it possible to alter the font of message box?Comment
-
Shailja, it is very simple to design your own message box, after all it is only a label with a button or 2. Create your own design and make a custom function to call it and get a return value. You can use it for all the code that you write from now on.Originally posted by ShailjaMessage Box that displays generally i mean by MsgBox(). Is it possible to alter the font of message box?Comment
-
Sorry I'm not descouraging .....Originally posted by willakawillShailja, it is very simple to design your own message box, after all it is only a label with a button or 2. Create your own design and make a custom function to call it and get a return value. You can use it for all the code that you write from now on.
but in fact she will face the problem when she like to check the results like
if msgbox1(<someth ing>,,vbyesno)= vbyes then
for such condition she must be fullyprepairedComment
-
Originally posted by vijaydiwakarSorry I'm not descouraging .....
but in fact she will face the problem when she like to check the results like
if msgbox1(<someth ing>,,vbyesno)= vbyes then
for such condition she must be fullyprepaired
No Prob Man,
She can use all kind of commands and let the visible may true or false and the position of that command buttons.Comment
-
yeh........Originally posted by hariharanmcaNo Prob Man,
She can use all kind of commands and let the visible may true or false and the position of that command buttons.
Excatly Visible tru/false , positioning of commands and geting the op is the key factorsComment
-
Originally posted by vijaydiwakarSorry I'm not descouraging .....
but in fact she will face the problem when she like to check the results like
if msgbox1(<someth ing>,,vbyesno)= vbyes then
for such condition she must be fullyprepaired
and we have form.Tag to pass the response of the command that the user had been chousedComment
-
then, what you are looking for....Originally posted by vijaydiwakaryeh........
Excatly Visible tru/false , positioning of commands and geting the op is the key factorsComment
-
hey man , I don't have any problem i've alredy made it & its working fine.Originally posted by hariharanmcathen, what you are looking for....
I'm just leting her what problems she might face..
k.........Comment
-
This is all very basic vb programming. The idea is to encapsulate this in a module and call it in any project. It is also easy to continue to use vb constants with it such as vbYes, vbNo etc. Call it through a function in the module and get the return value from the function. This is a good way to learn about vb because the form is simple and there is no database connectivity to worry about.Originally posted by vijaydiwakarSorry I'm not descouraging .....
but in fact she will face the problem when she like to check the results like
if msgbox1(<someth ing>,,vbyesno)= vbyes then
for such condition she must be fullyprepairedComment
-
[QUOTE=hariharan mca]No Prob Man,
She can use all kind of commands and let the visible may true or false and the position of that command buttons.
HI...
HOW TO MAKE IT VISIBLE FOR THE ACTION EX.YES OR NO....Comment
Comment