Click here to Skip to main content
15,888,527 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: String$ function Pin
garfield18529-Jun-09 5:46
garfield18529-Jun-09 5:46 
GeneralRe: String$ function Pin
Luc Pattyn29-Jun-09 7:00
sitebuilderLuc Pattyn29-Jun-09 7:00 
Questioncrystal report problem in after installation ? Pin
JC.KaNNaN29-Jun-09 4:44
JC.KaNNaN29-Jun-09 4:44 
AnswerRe: crystal report problem in after installation ? Pin
EliottA29-Jun-09 5:08
EliottA29-Jun-09 5:08 
QuestionHow to chek file is in Progress Pin
Anubhava Dimri29-Jun-09 0:46
Anubhava Dimri29-Jun-09 0:46 
QuestionRe: How to chek file is in Progress Pin
Steven J Jowett29-Jun-09 1:24
Steven J Jowett29-Jun-09 1:24 
AnswerRe: How to chek file is in Progress Pin
Anubhava Dimri29-Jun-09 18:55
Anubhava Dimri29-Jun-09 18:55 
GeneralRe: How to chek file is in Progress Pin
Steven J Jowett29-Jun-09 22:38
Steven J Jowett29-Jun-09 22:38 
You are getting the error because the file is still open/being written too, therefore your program cannot gain access.

What you need to do is keep checking the state of the file until it has been released and the perform whatever tasks you need for example :-

Dim OK As Boolean
Do

Try
 'Open file and perform tasks here
  OK = True
Catch
  OK = False
End Try

Until OK


Steve Jowett
-------------------------
Real programmers don't comment their code. If it was hard to write, it should be hard to read.

GeneralRe: How to chek file is in Progress Pin
Anubhava Dimri29-Jun-09 23:15
Anubhava Dimri29-Jun-09 23:15 
GeneralRe: How to chek file is in Progress Pin
Dave Kreskowiak30-Jun-09 1:33
mveDave Kreskowiak30-Jun-09 1:33 
AnswerRe: How to chek file is in Progress Pin
Anoop Brijmohun29-Jun-09 1:25
Anoop Brijmohun29-Jun-09 1:25 
QuestionDefault image in vb.net [modified] Pin
mirzamujib28-Jun-09 22:10
mirzamujib28-Jun-09 22:10 
AnswerRe: Default image in vb.net Pin
Christian Graus28-Jun-09 23:22
protectorChristian Graus28-Jun-09 23:22 
GeneralRe: Default image in vb.net Pin
mirzamujib29-Jun-09 2:06
mirzamujib29-Jun-09 2:06 
GeneralRe: Default image in vb.net Pin
Christian Graus29-Jun-09 10:33
protectorChristian Graus29-Jun-09 10:33 
QuestionFill FormName in ComboBox Pin
hamed200928-Jun-09 19:50
hamed200928-Jun-09 19:50 
AnswerRe: Fill FormName in ComboBox Pin
Christian Graus28-Jun-09 20:07
protectorChristian Graus28-Jun-09 20:07 
QuestionNull values vb6 + access97 [modified] Pin
spruha36928-Jun-09 18:02
spruha36928-Jun-09 18:02 
AnswerRe: Null values vb6 + access97 Pin
Rajesh Anuhya28-Jun-09 18:21
professionalRajesh Anuhya28-Jun-09 18:21 
GeneralRe: Null values vb6 + access97 [modified] Pin
spruha36928-Jun-09 20:58
spruha36928-Jun-09 20:58 
GeneralRe: Null values vb6 + access97 Pin
Nagy Vilmos29-Jun-09 3:06
professionalNagy Vilmos29-Jun-09 3:06 
AnswerRe: Null values vb6 + access97 Pin
Steven J Jowett29-Jun-09 1:27
Steven J Jowett29-Jun-09 1:27 
AnswerRe: Null values vb6 + access97 Pin
Thomas Krojer29-Jun-09 2:14
Thomas Krojer29-Jun-09 2:14 
AnswerRe: Null values vb6 + access97 Pin
paas29-Jun-09 2:43
paas29-Jun-09 2:43 
AnswerRe: Null values vb6 + access97 Pin
spruha36929-Jun-09 2:56
spruha36929-Jun-09 2:56 

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.