Click here to Skip to main content
15,792,327 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to BitConverter.GetBytes() return 2 digits only Pin
EngrImad4-Dec-21 2:54
EngrImad4-Dec-21 2:54 
AnswerRe: How to BitConverter.GetBytes() return 2 digits only Pin
Dave Kreskowiak4-Dec-21 4:43
mveDave Kreskowiak4-Dec-21 4:43 
Questionerror 50003 in vb6 in win 10 Pin
Member 110192491-Dec-21 1:10
Member 110192491-Dec-21 1:10 
AnswerRe: error 50003 in vb6 in win 10 Pin
jsc421-Dec-21 1:26
professionaljsc421-Dec-21 1:26 
AnswerRe: error 50003 in vb6 in win 10 Pin
Richard Deeming1-Dec-21 2:08
mveRichard Deeming1-Dec-21 2:08 
QuestionHi How can i print listview with database im using phpmyadmin xampp Pin
Kyooshi29-Nov-21 20:54
Kyooshi29-Nov-21 20:54 
AnswerRe: Hi How can i print listview with database im using phpmyadmin xampp Pin
Richard Deeming29-Nov-21 22:47
mveRichard Deeming29-Nov-21 22:47 
AnswerRe: Hi How can i print listview with database im using phpmyadmin xampp Pin
Richard MacCutchan29-Nov-21 22:56
mveRichard MacCutchan29-Nov-21 22:56 
You are drawing all 10 subitems at the same location on the page. You need to change the X location for each item. The code could be simplified by creating a loop and using a single Font element:
VB
Dim TnrFont as Drawing.Font = New Drawing.Font("Times New Roman", 10)
e.Graphics.DrawString("PRINT", TnrFont, Brushes.Black, 50, H)
For Each Itm As ListViewItem In ListView1.Items
    e.Graphics.DrawString(Itm.Text, TnrFont, Brushes.Black, 50, H)
    Dim Left as Integer = 150
    For subindex as Integer = 0 To 9
        e.Graphics.DrawString(Itm.SubItems(subindex).Text, TnrFont, Brushes.Black, Left, H)
        ' Add the offset of the field size to "Left"
        Left += 100 ' or whatever value to move it to the right on the page
    Next
    H += 20
Next

Questionface identification and recognition with visual Basic 2010 Pin
Member 1535104217-Nov-21 0:20
Member 1535104217-Nov-21 0:20 
AnswerRe: face identification and recognition with visual Basic 2010 Pin
Richard MacCutchan17-Nov-21 0:27
mveRichard MacCutchan17-Nov-21 0:27 
AnswerRe: face identification and recognition with visual Basic 2010 Pin
CHill6024-Nov-21 1:32
mveCHill6024-Nov-21 1:32 
QuestionHOW TO CODE A REFRESH BUTTON IN VB.NET FORM Pin
WAHID ASSOCIATES8-Nov-21 10:09
WAHID ASSOCIATES8-Nov-21 10:09 
AnswerRe: HOW TO CODE A REFRESH BUTTON IN VB.NET FORM Pin
Member 153296138-Nov-21 11:39
Member 153296138-Nov-21 11:39 
AnswerRe: HOW TO CODE A REFRESH BUTTON IN VB.NET FORM Pin
Dave Kreskowiak8-Nov-21 12:38
mveDave Kreskowiak8-Nov-21 12:38 
AnswerRe: HOW TO CODE A REFRESH BUTTON IN VB.NET FORM Pin
Mycroft Holmes8-Nov-21 12:50
professionalMycroft Holmes8-Nov-21 12:50 
GeneralRe: HOW TO CODE A REFRESH BUTTON IN VB.NET FORM Pin
den2k888-Nov-21 22:49
professionalden2k888-Nov-21 22:49 
GeneralRe: HOW TO CODE A REFRESH BUTTON IN VB.NET FORM Pin
Eddy Vluggen10-Nov-21 6:44
professionalEddy Vluggen10-Nov-21 6:44 
QuestionSave, Retrieve Image on SQL Database using VB.net Pin
EngrImad6-Nov-21 11:42
EngrImad6-Nov-21 11:42 
AnswerRe: Save, Retrieve Image on SQL Database using VB.net Pin
RedDk6-Nov-21 12:10
RedDk6-Nov-21 12:10 
AnswerRe: Save, Retrieve Image on SQL Database using VB.net Pin
Dave Kreskowiak6-Nov-21 13:09
mveDave Kreskowiak6-Nov-21 13:09 
SuggestionRe: Save, Retrieve Image on SQL Database using VB.net Pin
Richard Deeming8-Nov-21 22:48
mveRichard Deeming8-Nov-21 22:48 
QuestionGot a problem with the ffmpeg.exe Pin
meaeg26-Oct-21 9:48
meaeg26-Oct-21 9:48 
AnswerRe: Got a problem with the ffmpeg.exe Pin
meaeg26-Oct-21 15:43
meaeg26-Oct-21 15:43 
QuestionPrevent hacking of connection string over the internet Pin
Member 1537744030-Sep-21 7:37
Member 1537744030-Sep-21 7:37 
AnswerRe: Prevent hacking of connection string over the internet Pin
Dave Kreskowiak30-Sep-21 9:06
mveDave Kreskowiak30-Sep-21 9:06 

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.