Click here to Skip to main content
15,900,108 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Need Help Accessing Functions in a DLL Pin
rjlohman23-May-06 4:57
rjlohman23-May-06 4:57 
QuestionParent/Child Forms Pin
jaded_angel11-May-06 9:28
jaded_angel11-May-06 9:28 
AnswerRe: Parent/Child Forms Pin
Dave Kreskowiak11-May-06 15:26
mveDave Kreskowiak11-May-06 15:26 
QuestionSSL FTP Pin
eagertolearn11-May-06 9:14
eagertolearn11-May-06 9:14 
QuestionPrinting on preprinted forms from different printers. Pin
nighttimeinar11-May-06 8:44
nighttimeinar11-May-06 8:44 
AnswerRe: Printing on preprinted forms from different printers. Pin
Duncan Edwards Jones12-May-06 8:23
professionalDuncan Edwards Jones12-May-06 8:23 
QuestionDecimal Places in a Double Pin
crtwrght_mrk11-May-06 7:50
crtwrght_mrk11-May-06 7:50 
AnswerRe: Decimal Places in a Double Pin
jwakeman11-May-06 8:55
jwakeman11-May-06 8:55 
I think this is what you want. It does not actually reduce the number of decimal places the variable is holding but allows for a reasonable number to be displayed. Create a windows form. add a textbox. use this as the load code.

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />
    Dim dbl As Double<br />
    dbl = 10 / 3<br />
    Me.TextBox1.Text = Format(dbl, "##.##")<br />
End Sub

GeneralRe: Decimal Places in a Double Pin
crtwrght_mrk11-May-06 9:25
crtwrght_mrk11-May-06 9:25 
QuestionOpen/Close Forms VB.Net Pin
Duane L.11-May-06 6:26
Duane L.11-May-06 6:26 
AnswerRe: Open/Close Forms VB.Net Pin
Jared Parsons11-May-06 10:28
Jared Parsons11-May-06 10:28 
GeneralRe: Open/Close Forms VB.Net Pin
Duane L.11-May-06 10:32
Duane L.11-May-06 10:32 
GeneralRe: Open/Close Forms VB.Net Pin
jwakeman11-May-06 10:43
jwakeman11-May-06 10:43 
GeneralRe: Open/Close Forms VB.Net Pin
Duane L.11-May-06 10:45
Duane L.11-May-06 10:45 
GeneralRe: Open/Close Forms VB.Net Pin
jwakeman11-May-06 11:42
jwakeman11-May-06 11:42 
GeneralRe: Open/Close Forms VB.Net Pin
Jared Parsons11-May-06 14:18
Jared Parsons11-May-06 14:18 
GeneralRe: Open/Close Forms VB.Net Pin
jwakeman12-May-06 3:02
jwakeman12-May-06 3:02 
GeneralRe: Open/Close Forms VB.Net Pin
Duane L.12-May-06 9:34
Duane L.12-May-06 9:34 
GeneralRe: Open/Close Forms VB.Net Pin
jwakeman12-May-06 16:28
jwakeman12-May-06 16:28 
QuestionEquation Editor Interface/Nested Text Boxes? Pin
jwakeman11-May-06 4:30
jwakeman11-May-06 4:30 
QuestionData transfer from excel file to sel server's table Pin
amit__811-May-06 2:15
amit__811-May-06 2:15 
AnswerRe: Data transfer from excel file to sel server's table Pin
chinnasrihari11-May-06 3:24
chinnasrihari11-May-06 3:24 
QuestionDevenv.exe Pin
viji]11-May-06 2:01
viji]11-May-06 2:01 
AnswerRe: Devenv.exe Pin
Dave Kreskowiak11-May-06 3:58
mveDave Kreskowiak11-May-06 3:58 
QuestionIs there any .net control for video capturing that con convert the incoming video frames from a twain compatible video sources into a bitmap image. Pin
varmag11-May-06 1:37
varmag11-May-06 1:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.