Click here to Skip to main content
16,010,268 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: converting windows application to server based application Pin
vijaylumar12-Jul-08 20:05
vijaylumar12-Jul-08 20:05 
GeneralRe: converting windows application to server based application Pin
just3ala212-Jul-08 23:00
just3ala212-Jul-08 23:00 
GeneralRe: converting windows application to server based application Pin
Vimalsoft(Pty) Ltd13-Jul-08 15:21
professionalVimalsoft(Pty) Ltd13-Jul-08 15:21 
GeneralRe: converting windows application to server based application Pin
vijaylumar15-Jul-08 1:58
vijaylumar15-Jul-08 1:58 
GeneralRe: converting windows application to server based application Pin
Vimalsoft(Pty) Ltd15-Jul-08 11:23
professionalVimalsoft(Pty) Ltd15-Jul-08 11:23 
AnswerRe: converting windows application to server based application Pin
Steven J Jowett14-Jul-08 13:18
Steven J Jowett14-Jul-08 13:18 
Questionhow to get system name and user name in vb.net windows application Pin
vijaylumar11-Jul-08 19:25
vijaylumar11-Jul-08 19:25 
AnswerRe: how to get system name and user name in vb.net windows application Pin
~Khatri Mitesh~11-Jul-08 20:18
~Khatri Mitesh~11-Jul-08 20:18 
Hiii
This Sample code returns all OS Detail of system.

Public Structure Env
        Dim strVarName As String
        Dim strValue As String
End Structure

Public Sub Main()
        Dim intCtr, intPos As Integer
        Dim strRetVal As String
        Dim udtEnv As Env

        intCtr = 1
        Do
            strRetVal = Environ(intCtr)
            If strRetVal <> "" Then

                intPos = InStr(1, strRetVal, "=")
                udtEnv.strVarName = Left(strRetVal, intPos - 1)
                udtEnv.strValue = Mid(strRetVal, intPos + 1)
                MsgBox(udtEnv.strVarName & "  " & udtEnv.strValue)
            Else
                Exit Do
            End If
            intCtr = intCtr + 1
        Loop
    End Sub
End Module


May be this solve your problem.
Thanx
~Khatri Mitesh
AnswerRe: how to get system name and user name in vb.net windows application Pin
Rupesh Kumar Swami11-Jul-08 20:23
Rupesh Kumar Swami11-Jul-08 20:23 
AnswerRe: how to get system name and user name in vb.net windows application Pin
Luc Pattyn12-Jul-08 1:03
sitebuilderLuc Pattyn12-Jul-08 1:03 
AnswerRe: how to get system name and user name in vb.net windows application Pin
Vimalsoft(Pty) Ltd12-Jul-08 11:41
professionalVimalsoft(Pty) Ltd12-Jul-08 11:41 
QuestionSTA Error Pin
maksim31011-Jul-08 9:47
maksim31011-Jul-08 9:47 
AnswerRe: STA Error Pin
Luc Pattyn11-Jul-08 10:16
sitebuilderLuc Pattyn11-Jul-08 10:16 
AnswerRe: STA Error [modified] Pin
maksim31011-Jul-08 10:32
maksim31011-Jul-08 10:32 
QuestionParamater name: binding error Pin
AAGTHosting11-Jul-08 8:37
AAGTHosting11-Jul-08 8:37 
AnswerRe: Paramater name: binding error Pin
Kschuler11-Jul-08 9:30
Kschuler11-Jul-08 9:30 
AnswerRe: Paramater name: binding error Pin
Vimalsoft(Pty) Ltd12-Jul-08 11:50
professionalVimalsoft(Pty) Ltd12-Jul-08 11:50 
QuestionReading binary registry key returns "nothing" Pin
Chinners11-Jul-08 2:28
Chinners11-Jul-08 2:28 
AnswerRe: Reading binary registry key returns "nothing" Pin
Luc Pattyn11-Jul-08 3:17
sitebuilderLuc Pattyn11-Jul-08 3:17 
GeneralRe: Reading binary registry key returns "nothing" Pin
Chinners11-Jul-08 3:33
Chinners11-Jul-08 3:33 
GeneralRe: Reading binary registry key returns "nothing" Pin
Luc Pattyn11-Jul-08 3:47
sitebuilderLuc Pattyn11-Jul-08 3:47 
QuestionAdd Controls To Listview in Vs2005 Pin
Anoop Brijmohun11-Jul-08 2:16
Anoop Brijmohun11-Jul-08 2:16 
AnswerRe: Add Controls To Listview in Vs2005 Pin
Thomas Stockwell11-Jul-08 4:03
professionalThomas Stockwell11-Jul-08 4:03 
GeneralRe: Add Controls To Listview in Vs2005 Pin
Anoop Brijmohun11-Jul-08 4:10
Anoop Brijmohun11-Jul-08 4:10 
Questionsending email from asp.net/sqlserver on a particular date Pin
hepsy.i11-Jul-08 1:33
hepsy.i11-Jul-08 1:33 

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.