Click here to Skip to main content
15,903,175 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Coding help with status bar in browser Pin
JoeySmith21-May-05 12:22
JoeySmith21-May-05 12:22 
GeneralImplementing CommonDialog::RunDialog() Pin
zorifila20-May-05 12:28
zorifila20-May-05 12:28 
GeneralConverting binary data bytes to usable numbers Pin
Scott Page20-May-05 5:54
professionalScott Page20-May-05 5:54 
GeneralRe: Converting binary data bytes to usable numbers Pin
Robert Rohde20-May-05 23:09
Robert Rohde20-May-05 23:09 
GeneralRe: Converting binary data bytes to usable numbers Pin
Scott Page22-May-05 14:13
professionalScott Page22-May-05 14:13 
Generalcode for connect to ISP with DSL in vb.net Pin
jlart20-May-05 5:51
jlart20-May-05 5:51 
Generalnewbie VB question Pin
Tom Wright20-May-05 5:33
Tom Wright20-May-05 5:33 
GeneralRe: newbie VB question Pin
Fernando Soto20-May-05 6:58
Fernando Soto20-May-05 6:58 
In Visual Basic you will have to do the following.

Let say you have an integer
Dim myInt As Integer = 715
Dim myStr As String

myStr = "0x" & Format(myInt, "x4")

myStr will have the value 0x02cb. If you replace x4 above with X4 then myStr will have the value 0x02CB. The 4 in X4 is a field width, it will pad zeros to fill the field.

Another way to do the same thing

myStr = "0x" & HexVal.ToString("X4")



GeneralConverting from C# to VB.net Pin
macca2420-May-05 3:36
macca2420-May-05 3:36 
GeneralRe: Converting from C# to VB.net Pin
toxcct20-May-05 4:25
toxcct20-May-05 4:25 
GeneralRe: Converting from C# to VB.net Pin
macca2420-May-05 5:04
macca2420-May-05 5:04 
GeneralRe: Converting from C# to VB.net Pin
Kevin McFarlane20-May-05 13:06
Kevin McFarlane20-May-05 13:06 
GeneralRe: Converting from C# to VB.net Pin
Dave Doknjas20-May-05 14:53
Dave Doknjas20-May-05 14:53 
GeneralRe: Converting from C# to VB.net Pin
Kevin McFarlane21-May-05 1:54
Kevin McFarlane21-May-05 1:54 
GeneralRe: Converting from C# to VB.net Pin
Dave Doknjas20-May-05 14:46
Dave Doknjas20-May-05 14:46 
GeneralRe: Converting from C# to VB.net Pin
macca2422-May-05 22:38
macca2422-May-05 22:38 
GeneralRe: Converting from C# to VB.net Pin
Dave Doknjas23-May-05 6:00
Dave Doknjas23-May-05 6:00 
GeneralCreating Setup in VB.NET Pin
meetaqadir19-May-05 23:56
meetaqadir19-May-05 23:56 
GeneralRe: Creating Setup in VB.NET Pin
rudy.net21-May-05 20:41
rudy.net21-May-05 20:41 
GeneralAccessing word CustomDocumentProperties from VB.NET Pin
raph-it19-May-05 23:37
raph-it19-May-05 23:37 
Generalproblem in progamming microsoft word Pin
IvanChang19-May-05 22:04
IvanChang19-May-05 22:04 
GeneralRe: problem in progamming microsoft word Pin
niansah20-May-05 4:21
niansah20-May-05 4:21 
GeneralRe: problem in progamming microsoft word Pin
IvanChang20-May-05 14:28
IvanChang20-May-05 14:28 
GeneralRe: problem in progamming microsoft word Pin
IvanChang20-May-05 17:35
IvanChang20-May-05 17:35 
Generalproblem with data reports in vb Pin
Member 197900819-May-05 21:03
Member 197900819-May-05 21:03 

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.