Fast Questions, Fast Answers..

dualshock03

Well-known member
Joined
Jan 28, 2007
Messages
105
Programming Experience
1-3
[FONT=Verdana,Geneva,Arial,Sans-serif]Hi To ALL Pros! :D
[/FONT]

[FONT=Verdana,Geneva,Arial,Sans-serif]
[/FONT]

[FONT=Geneva,Arial,Sans-serif]Q#! How can i make all textbox's in a GroupBox Control input Float or integers only?
[/FONT]

[FONT=Geneva,Arial,Sans-serif]Im trying to use a Function statement for this.... can u gve me any samples??[/FONT]
[FONT=Geneva,Arial,Sans-serif]
[/FONT]

[FONT=Geneva,Arial,Sans-serif]Q#2 How to code a back button and forward button icon in your application?[/FONT]
[FONT=Geneva,Arial,Sans-serif]
[/FONT]

[FONT=Geneva,Arial,Sans-serif]Q#3 How can i preserve the visual style of my application when i run it to other Operating System? e.g. Win98,Win2000,Linux,MAc...[/FONT]

[FONT=Geneva,Arial,Sans-serif][/FONT]
[FONT=Geneva,Arial,Sans-serif]Q#4 How to compute fields in the datagridview? e.g. column1 + column2....
[/FONT]

[FONT=Geneva,Arial,Sans-serif]
[/FONT]

[FONT=Geneva,Arial,Sans-serif]Q#5 How to incorporate a flash .swf file to Visual Basic Express 2005?[/FONT]

[FONT=Geneva,Arial,Sans-serif][/FONT]
[FONT=Geneva,Arial,Sans-serif]That's all!, thnx, anything will be appreciated..:cool:
[/FONT]

[FONT=Geneva,Arial,Sans-serif]
[/FONT]
 

Attachments

  • bf.GIF
    bf.GIF
    1.5 KB · Views: 58
[FONT=Verdana,Geneva,Arial,Sans-serif]Hi To ALL Pros! :D[/FONT]
[FONT=Geneva,Arial,Sans-serif]Q#! How can i make all textbox's in a GroupBox Control input Float or integers only? [/FONT]

Use NumericUpDown controls instead

[FONT=Geneva,Arial,Sans-serif]
[FONT=Geneva,Arial,Sans-serif]Q#2 How to code a back button and forward button icon in your application?[/FONT]
Depends what you want to go back and forward between

[FONT=Geneva,Arial,Sans-serif]Q#3 How can i preserve the visual style of my application when i run it to other Operating System? e.g. Win98,Win2000,Linux,MAc...[/FONT]
Skin it, or stop worrying about it.. Who is to say that your vision of aesthetic perfection is shared by another? Give it to em vanilla and let them theme it however they ant

[FONT=Geneva,Arial,Sans-serif]Q#4 How to compute fields in the datagridview? e.g. column1 + column2....[/FONT]
Columns hahve an Expression property but you cannot sum across rows unless you are aggregating.
 
Okies Thnx Pros!!

anyway for the datagridview im trying to use this code..




Dim objctflds as object

Set objctflds = MyPay.recordset.fields

objctflds("fldNetpay") = objctflds("fldleave") * objctflds("Monthly")
 
try:
VB.NET:
[COLOR=Blue]Dim[/COLOR] objctflds [COLOR=Blue]as [/COLOR]object = MyPay.recordset.fields

Dim decLeave As Decimal = objctflds([COLOR=Red]"fldleave"[/COLOR])
Dim decMonthly As Decimal = objctflds([COLOR=Red]"Monthly"[/COLOR])
Dim decNetPay As Decimal = decLeave  * decMonthly
 
Back
Top