Dim pg As New System.Drawing.Printing.PageSettings() pg.Margins.Top = 0 pg.Margins.Bottom = 0.25 pg.Margins.Left = 0 pg.Margins.Right = 0 Dim size As System.Drawing.Printing.PaperSize = New PaperSize(“custom”, 300, 200) ‘the custom size…
VB.Net
Get All COM Ports in VB.Net
Enumerate COM Ports using VB.net Public…
VB.Net Message Box Modal
MsgBox(“Modal Message”, MsgBoxStyle.SystemModal + MsgBoxStyle.Exclamation, “VB.Net Message Box Modal”)…
How To Embed Windows Media Player In Windows Form Using VB.Net
How To Embed Windows Media Player In Windows Form Using VB.Net1. Go to “Tool Box” pane then right click…
How To Get The Movie Duration Using VB.Net
Function Get…
Get Windows User Full Name in VB 6
Code in getting the windows user’s fullname. Dim strComputer As StringDim strUserName As StringDim objUser As Object strComputer = “ComputerName”strUserName = “UserNameSet objUser = GetObject(“WinNT://” & strComputer & “/” & strUserName)…