Click here to Skip to main content
15,916,527 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Help !! Event not Raise in VB.net Pin
OICU81217-Dec-04 5:38
OICU81217-Dec-04 5:38 
GeneralFTP Pin
nitin_ion17-Dec-04 0:27
nitin_ion17-Dec-04 0:27 
GeneralHelp with a script Pin
Anonymous16-Dec-04 22:37
Anonymous16-Dec-04 22:37 
GeneralRe: Help with a script [EDITED] Pin
Dave Kreskowiak17-Dec-04 5:56
mveDave Kreskowiak17-Dec-04 5:56 
GeneralRe: Help with a script [EDITED] Pin
Anonymous23-Dec-04 16:07
Anonymous23-Dec-04 16:07 
GeneralRe: Help with a script [EDITED] Pin
Dave Kreskowiak23-Dec-04 16:17
mveDave Kreskowiak23-Dec-04 16:17 
GeneralColumns in a string in VB.NET Pin
Chaos Machine16-Dec-04 18:11
Chaos Machine16-Dec-04 18:11 
GeneralRe: Columns in a string in VB.NET Pin
OICU81216-Dec-04 18:37
OICU81216-Dec-04 18:37 
I just had that same problem. Here is an example:

<br />
' Draw all font names on form<br />
        Dim gr As Graphics = Me.CreateGraphics<br />
        gr.Clear(Color.White)<br />
<br />
        ' Prepare a message with tabs and carriage returns.<br />
        Dim msg As String = String.Format("{0}Column 1{0}Column 2{0}Column 3{1}" _<br />
            & "Row 1{0}Cell (1,1){0}Cell (1,2){0}Cell (1,3){1}" _<br />
            & "Row 2{0}Cell (2,1){0}Cell (2,2){0}Cell (2,3){1}", _<br />
            ControlChars.Tab, ControlChars.CrLf)<br />
        Dim fnt As New Font("Arial", 12)<br />
<br />
        Dim strFormat As New StringFormat()<br />
        ' Set the tab stops.<br />
        Dim tabStops() As Single = {80, 140, 200}<br />
        strFormat.SetTabStops(0, tabStops)<br />
        ' Draw the text with specified tab stops.<br />
        gr.DrawString(msg, fnt, Brushes.Black, 20, 20, strFormat)<br />
<br />
        fnt.Dispose()<br />
        gr.Dispose()<br />
<br />


Hope that hels you!
GeneralDatabase access through VB.Net Pin
nyjcr16-Dec-04 14:39
nyjcr16-Dec-04 14:39 
GeneralRe: Database access through VB.Net Pin
Chaos Machine16-Dec-04 18:06
Chaos Machine16-Dec-04 18:06 
GeneralRe: Database access through VB.Net Pin
nyjcr17-Dec-04 6:34
nyjcr17-Dec-04 6:34 
GeneralRe: Database access through VB.Net Pin
OICU81216-Dec-04 18:23
OICU81216-Dec-04 18:23 
GeneralRe: Database access through VB.Net Pin
nyjcr17-Dec-04 6:37
nyjcr17-Dec-04 6:37 
GeneralRe: Database access through VB.Net Pin
Anonymous17-Dec-04 8:03
Anonymous17-Dec-04 8:03 
GeneralRe: Database access through VB.Net Pin
OICU81217-Dec-04 19:08
OICU81217-Dec-04 19:08 
GeneralTextBox Alpha blending Pin
Iasonic16-Dec-04 12:53
Iasonic16-Dec-04 12:53 
QuestionMultiple Resource Files? Pin
TAlvord16-Dec-04 12:46
TAlvord16-Dec-04 12:46 
General.DTD write error after modifying XML with XmlDocument Pin
GreenEyes16-Dec-04 10:53
GreenEyes16-Dec-04 10:53 
Generalurgent custom control with collection of controls Pin
ddsmith16-Dec-04 9:33
ddsmith16-Dec-04 9:33 
GeneralRe: DB Connection Question Pin
Dave Kreskowiak16-Dec-04 7:07
mveDave Kreskowiak16-Dec-04 7:07 
GeneralRe: DB Connection Question Pin
marrik16-Dec-04 8:17
marrik16-Dec-04 8:17 
GeneralHide Checkbox in Checkbox VB Pin
shinay16-Dec-04 5:55
shinay16-Dec-04 5:55 
GeneralRe: Hide Checkbox in Checkbox VB Pin
shinay16-Dec-04 5:56
shinay16-Dec-04 5:56 
GeneralRe: Hide Checkbox in Checkbox VB Pin
Wjousts16-Dec-04 6:15
Wjousts16-Dec-04 6:15 
GeneralRe: Hide Checkbox in Checkbox VB Pin
shinay16-Dec-04 6:18
shinay16-Dec-04 6:18 

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.