Click here to Skip to main content
15,889,862 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionRe: Advice Windows Service with Status Form Pin
ESTAN12-Sep-07 2:16
ESTAN12-Sep-07 2:16 
AnswerRe: Advice Windows Service with Status Form Pin
Dave Kreskowiak12-Sep-07 9:59
mveDave Kreskowiak12-Sep-07 9:59 
GeneralRe: Advice Windows Service with Status Form Pin
ESTAN19-Sep-07 0:40
ESTAN19-Sep-07 0:40 
QuestionResource files and Audio [modified] Pin
Brizee12-Sep-07 0:21
Brizee12-Sep-07 0:21 
AnswerRe: Resource files and Audio Pin
Dave Kreskowiak12-Sep-07 4:14
mveDave Kreskowiak12-Sep-07 4:14 
GeneralRe: Resource files and Audio Pin
Brizee17-Sep-07 3:52
Brizee17-Sep-07 3:52 
Questionhex(number) is not working in VB. Pin
chandu00412-Sep-07 0:13
chandu00412-Sep-07 0:13 
AnswerRe: hex(number) is not working in VB. Pin
ESTAN12-Sep-07 0:27
ESTAN12-Sep-07 0:27 
Maybe you can post the code that you are using. I don't have any experience with VB, but in VB.NET I use the following function:

<br />
    '---------------------------------------------------------------------------<br />
    '<br />
    '  Function:	ToHex()<br />
    '  Input:	x<br />
    '  Return:	out<br />
    '  Purpose:	Converts Integer to Hex<br />
    '		<br />
    '---------------------------------------------------------------------------<br />
    Public Shared Function ToHex(ByVal x) As String<br />
        Dim out As String = Hex(x)<br />
<br />
        If (out.Length < 2) Then<br />
            out = "0" & out<br />
        End If<br />
<br />
        Return out<br />
    End Function<br />

GeneralRe: hex(number) is not working in VB. Pin
chandu00412-Sep-07 2:06
chandu00412-Sep-07 2:06 
AnswerRe: hex(number) is not working in VB. Pin
Dave Kreskowiak12-Sep-07 4:12
mveDave Kreskowiak12-Sep-07 4:12 
QuestionWant to use Xml as Databse [modified] Pin
manuo511-Sep-07 23:36
manuo511-Sep-07 23:36 
AnswerRe: Want to use Xml as Databse Pin
Dave Kreskowiak12-Sep-07 4:11
mveDave Kreskowiak12-Sep-07 4:11 
QuestionPlease help Pin
Dubey Yogendra11-Sep-07 23:19
Dubey Yogendra11-Sep-07 23:19 
AnswerRe: Please help Pin
Paul Conrad30-Sep-07 13:42
professionalPaul Conrad30-Sep-07 13:42 
Questionusing ActiveX in vb.net Pin
samira forooghi11-Sep-07 22:36
samira forooghi11-Sep-07 22:36 
AnswerRe: using ActiveX in vb.net Pin
Dave Kreskowiak12-Sep-07 3:58
mveDave Kreskowiak12-Sep-07 3:58 
Questioncreating an array of subprocedures Pin
wuzzywezzer11-Sep-07 22:00
wuzzywezzer11-Sep-07 22:00 
AnswerRe: creating an array of subprocedures Pin
Dave Kreskowiak12-Sep-07 4:09
mveDave Kreskowiak12-Sep-07 4:09 
GeneralRe: creating an array of subprocedures [modified] Pin
wuzzywezzer12-Sep-07 17:03
wuzzywezzer12-Sep-07 17:03 
GeneralRe: creating an array of subprocedures Pin
Dave Kreskowiak13-Sep-07 4:21
mveDave Kreskowiak13-Sep-07 4:21 
GeneralRe: creating an array of subprocedures Pin
wuzzywezzer13-Sep-07 16:41
wuzzywezzer13-Sep-07 16:41 
Questionwhat is the diff... [modified] Pin
nitin311-Sep-07 21:07
nitin311-Sep-07 21:07 
AnswerRe: what is the diff... Pin
chandu00411-Sep-07 21:16
chandu00411-Sep-07 21:16 
AnswerRe: what is the diff... Pin
Colin Angus Mackay11-Sep-07 21:44
Colin Angus Mackay11-Sep-07 21:44 
AnswerRe: what is the diff... Pin
MohammadAmiry11-Sep-07 21:54
MohammadAmiry11-Sep-07 21:54 

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.