Click here to Skip to main content
15,901,982 members
Home / Discussions / Visual Basic
   

Visual Basic

 
General[Message Deleted] Pin
ruthvik20-May-08 9:10
ruthvik20-May-08 9:10 
GeneralRe: what is the process for when i click open button the standardfiledialogbox is opend after that i select file from openfile i want to display the name size and date created in textboxesin form [modified] Pin
Smithers-Jones20-May-08 9:25
Smithers-Jones20-May-08 9:25 
GeneralRe: what is the process for when i click open button the standardfiledialogbox is opend after that i select file from openfile i want to display the name size and date created in textboxesin form Pin
ruthvik20-May-08 9:48
ruthvik20-May-08 9:48 
GeneralRe: what is the process for when i click open button the standardfiledialogbox is opend after that i select file from openfile i want to display the name size and date created in textboxesin form Pin
Smithers-Jones20-May-08 10:07
Smithers-Jones20-May-08 10:07 
GeneralRe: what is the process for when i click open button the standardfiledialogbox is opend after that i select file from openfile i want to display the name size and date created in textboxesin form Pin
leckey20-May-08 10:26
leckey20-May-08 10:26 
RantRe: what is the process for when i click open button the standardfiledialogbox is opend after that i select file from openfile i want to display the name size and date created in textboxesin form Pin
helelark12320-May-08 18:35
helelark12320-May-08 18:35 
QuestionHow to display the file name. size date etc in text boxes in Vb.net Pin
ruthvik20-May-08 5:00
ruthvik20-May-08 5:00 
AnswerRe: How to display the file name. size date etc in text boxes in Vb.net Pin
Smithers-Jones20-May-08 5:24
Smithers-Jones20-May-08 5:24 
use fileinfo and have a look at its properties:
If OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
           Dim myfile As New System.IO.FileInfo(OpenFileDialog1.FileName)
           textbox1.text = myfile.Name
           textbox2.text = myfile.Length
           textbox3.text = myfile.CreationTime
           'and so on
 End If


"I love deadlines. I like the whooshing sound they make as they fly by." (DNA)

QuestionDisplaying Trace route information Pin
Aptiva Dave20-May-08 4:44
Aptiva Dave20-May-08 4:44 
AnswerRe: Displaying Trace route information Pin
jzonthemtn20-May-08 7:11
jzonthemtn20-May-08 7:11 
AnswerRe: Displaying Trace route information Pin
Sam Xavier21-May-08 8:21
Sam Xavier21-May-08 8:21 
QuestionReporViewer no longer displays reports that were working for months. Pin
alexvw20-May-08 4:35
alexvw20-May-08 4:35 
AnswerRe: ReporViewer no longer displays reports that were working for months. Pin
Mycroft Holmes20-May-08 17:15
professionalMycroft Holmes20-May-08 17:15 
AnswerRe: ReporViewer no longer displays reports that were working for months. Pin
alexvw21-May-08 2:31
alexvw21-May-08 2:31 
QuestionPlaying movies in .NET Pin
Shack20-May-08 4:04
Shack20-May-08 4:04 
AnswerRe: Playing movies in .NET Pin
helelark12320-May-08 4:14
helelark12320-May-08 4:14 
QuestionNeed to display one phone number,if both land line and mobile no.s are same Pin
subbu.sk20-May-08 3:53
subbu.sk20-May-08 3:53 
AnswerRe: Need to display one phone number,if both land line and mobile no.s are same Pin
Mbire20-May-08 5:01
Mbire20-May-08 5:01 
QuestionProblem With VS 2003 Pin
Vimalsoft(Pty) Ltd20-May-08 2:52
professionalVimalsoft(Pty) Ltd20-May-08 2:52 
AnswerRe: Problem With VS 2003 Pin
Tim Carmichael20-May-08 4:34
Tim Carmichael20-May-08 4:34 
GeneralRe: Problem With VS 2003 Pin
Vimalsoft(Pty) Ltd20-May-08 4:45
professionalVimalsoft(Pty) Ltd20-May-08 4:45 
Questionvisual basic code Pin
Member 226372220-May-08 1:52
Member 226372220-May-08 1:52 
AnswerRe: visual basic code Pin
helelark12320-May-08 2:26
helelark12320-May-08 2:26 
Questionneed to be able to search from the textbox if we leave blank space for one character Pin
subbu.sk20-May-08 0:59
subbu.sk20-May-08 0:59 
AnswerRe: need to be able to search from the textbox if we leave blank space for one character Pin
Mbire20-May-08 1:19
Mbire20-May-08 1: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.