Click here to Skip to main content
15,867,568 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Using Windows Xbox 360 controller with VB.net Pin
Kulf24-Apr-11 15:08
Kulf24-Apr-11 15:08 
QuestionDuplicate code - Unhandlable error Pin
Phantom71529-Jan-09 4:20
Phantom71529-Jan-09 4:20 
AnswerRe: Duplicate code - Unhandlable error Pin
Jon_Boy29-Jan-09 5:05
Jon_Boy29-Jan-09 5:05 
GeneralRe: Duplicate code - Unhandlable error Pin
Phantom71529-Jan-09 5:23
Phantom71529-Jan-09 5:23 
QuestionMS Access Database Pin
solomondevapaul12328-Jan-09 23:38
solomondevapaul12328-Jan-09 23:38 
AnswerUse linked tables Pin
David Mujica29-Jan-09 4:37
David Mujica29-Jan-09 4:37 
QuestionFile Attribute / Owner of file Pin
pedefetoll28-Jan-09 23:33
pedefetoll28-Jan-09 23:33 
AnswerRe: File Attribute / Owner of file Pin
Nanda_MR29-Jan-09 1:37
Nanda_MR29-Jan-09 1:37 
Try this

Dim ofile As New System.IO.FileInfo("D:\sam.txt")
If ofile.Exists = True Then
    Label1.Text = "Create Time: " & ofile.CreationTime & vbNewLine
    Label1.Text = Label1.Text & "Length: " & ofile.Length.ToString + " bytes" & vbNewLine
    Label1.Text = Label1.Text & "Last Access Date: " & ofile.LastAccessTime & vbNewLine
    Label1.Text = Label1.Text & "Read only: " & ofile.IsReadOnly & vbNewLine
    Label1.Text = Label1.Text & "Last Write Date: " & ofile.LastWriteTime & vbNewLine
Else
    Label1.Text = "File Not Found"
End If

GeneralRe: File Attribute / Owner of file Pin
pedefetoll29-Jan-09 2:19
pedefetoll29-Jan-09 2:19 
AnswerRe: File Attribute / Owner of file Pin
dan!sh 29-Jan-09 3:51
professional dan!sh 29-Jan-09 3:51 
QuestionHow to schudule a click of button(VB .Net) in windows scheduler? Pin
Ramki Sankaran28-Jan-09 23:22
Ramki Sankaran28-Jan-09 23:22 
AnswerRe: How to schudule a click of button(VB .Net) in windows scheduler? Pin
Ashfield29-Jan-09 1:19
Ashfield29-Jan-09 1:19 
AnswerRe: How to schudule a click of button(VB .Net) in windows scheduler? Pin
Dave Kreskowiak29-Jan-09 3:28
mveDave Kreskowiak29-Jan-09 3:28 
GeneralRe: How to schudule a click of button(VB .Net) in windows scheduler? Pin
Jon_Boy29-Jan-09 3:37
Jon_Boy29-Jan-09 3:37 
QuestionLog On screen in VB.Net Pin
vijay248228-Jan-09 22:45
vijay248228-Jan-09 22:45 
AnswerRe: Log On screen in VB.Net Pin
Eddy Vluggen29-Jan-09 0:43
professionalEddy Vluggen29-Jan-09 0:43 
GeneralRe: Log On screen in VB.Net Pin
vijay248229-Jan-09 1:17
vijay248229-Jan-09 1:17 
GeneralRe: Log On screen in VB.Net Pin
Eddy Vluggen29-Jan-09 1:52
professionalEddy Vluggen29-Jan-09 1:52 
AnswerRe: Log On screen in VB.Net Pin
Ashfield29-Jan-09 1:22
Ashfield29-Jan-09 1:22 
AnswerRe: Log On screen in VB.Net Pin
Dave Kreskowiak29-Jan-09 3:25
mveDave Kreskowiak29-Jan-09 3:25 
GeneralRe: Log On screen in VB.Net Pin
vijay248229-Jan-09 4:11
vijay248229-Jan-09 4:11 
QuestionRe: Log On screen in VB.Net Pin
dan!sh 29-Jan-09 4:18
professional dan!sh 29-Jan-09 4:18 
AnswerRe: Log On screen in VB.Net Pin
vijay248229-Jan-09 4:19
vijay248229-Jan-09 4:19 
GeneralRe: Log On screen in VB.Net Pin
Dave Kreskowiak29-Jan-09 18:22
mveDave Kreskowiak29-Jan-09 18:22 
GeneralRe: Log On screen in VB.Net Pin
vijay248229-Jan-09 21:19
vijay248229-Jan-09 21:19 

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.