Click here to Skip to main content
15,900,570 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Console application Pin
Dave Kreskowiak18-Nov-09 8:35
mveDave Kreskowiak18-Nov-09 8:35 
AnswerRe: Console application Pin
Ian Shlasko18-Nov-09 10:27
Ian Shlasko18-Nov-09 10:27 
AnswerRe: Console application [modified] Pin
DaveAuld18-Nov-09 11:02
professionalDaveAuld18-Nov-09 11:02 
QuestionHow to fire the DropDownList.SelectedIndexChanged event Pin
MacIntyre17-Nov-09 18:46
MacIntyre17-Nov-09 18:46 
AnswerRe: How to fire the DropDownList.SelectedIndexChanged event Pin
Dave Kreskowiak19-Nov-09 3:40
mveDave Kreskowiak19-Nov-09 3:40 
QuestionPermission Denied while Deleting Temporary Files Pin
Nash - ThE cOdE sLiZeR17-Nov-09 17:59
Nash - ThE cOdE sLiZeR17-Nov-09 17:59 
AnswerRe: Permission Denied while Deleting Temporary Files Pin
The Man from U.N.C.L.E.17-Nov-09 20:58
The Man from U.N.C.L.E.17-Nov-09 20:58 
GeneralRe: Permission Denied while Deleting Temporary Files Pin
Nash - ThE cOdE sLiZeR17-Nov-09 21:54
Nash - ThE cOdE sLiZeR17-Nov-09 21:54 
Hey there..

Thanx 4 ur reply..
But the file wasn't in use. I've already checked it many time..

Anyways, I've got my solution.
I used an alternative. I created an console application in C#

The code's as follows: (in C#)

using System;
using System.IO;

namespace DeleteTempFiles
{
    class Program
    {
        static void Main(string[] args)
        {
            DirectoryInfo di = new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory);
            FileInfo[] rgFiles = di.GetFiles("*.tmp");
            foreach (FileInfo fi in rgFiles)
            {
                fi.Delete();
            }
        }
    }
}


It simply deletes the *.tmp files from the application directory.
I'm just running this DeleteTempFiles.exe while unloading the form
using the following code in VB6

Shell(App.Path & "\DeleteTempFiles.exe")

Thanks again..

Nash - ThE CoDe sLiZeR
GeneralRe: Permission Denied while Deleting Temporary Files Pin
Shameel17-Nov-09 22:18
professionalShameel17-Nov-09 22:18 
GeneralRe: Permission Denied while Deleting Temporary Files Pin
Nash - ThE cOdE sLiZeR17-Nov-09 22:42
Nash - ThE cOdE sLiZeR17-Nov-09 22:42 
GeneralRe: Permission Denied while Deleting Temporary Files Pin
Shameel18-Nov-09 7:01
professionalShameel18-Nov-09 7:01 
AnswerRe: Permission Denied while Deleting Temporary Files Pin
Luc Pattyn17-Nov-09 23:30
sitebuilderLuc Pattyn17-Nov-09 23:30 
GeneralRe: Permission Denied while Deleting Temporary Files Pin
Nash - ThE cOdE sLiZeR17-Nov-09 23:34
Nash - ThE cOdE sLiZeR17-Nov-09 23:34 
QuestionDistingush between OleDate and Double while extract the Contents in Excel. Pin
janaswamy uday17-Nov-09 4:27
janaswamy uday17-Nov-09 4:27 
AnswerRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
Dave Kreskowiak17-Nov-09 5:39
mveDave Kreskowiak17-Nov-09 5:39 
GeneralRe: Distingush between OleDate and Double while extract the Contents in Excel. [modified] Pin
janaswamy uday17-Nov-09 6:00
janaswamy uday17-Nov-09 6:00 
GeneralRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
Dave Kreskowiak17-Nov-09 8:31
mveDave Kreskowiak17-Nov-09 8:31 
AnswerRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
Richard MacCutchan17-Nov-09 6:33
mveRichard MacCutchan17-Nov-09 6:33 
GeneralRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
janaswamy uday17-Nov-09 15:37
janaswamy uday17-Nov-09 15:37 
GeneralRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
Dave Kreskowiak17-Nov-09 16:40
mveDave Kreskowiak17-Nov-09 16:40 
GeneralRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
Rudheesh17-Nov-09 18:44
Rudheesh17-Nov-09 18:44 
GeneralRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
Richard MacCutchan17-Nov-09 21:30
mveRichard MacCutchan17-Nov-09 21:30 
GeneralRe: Distingush between OleDate and Double while extract the Contents in Excel. Pin
Dave Kreskowiak18-Nov-09 2:07
mveDave Kreskowiak18-Nov-09 2:07 
QuestionVariable number of loop nesting Pin
cstrader23217-Nov-09 3:33
cstrader23217-Nov-09 3:33 
AnswerRe: Variable number of loop nesting Pin
Luc Pattyn17-Nov-09 3:51
sitebuilderLuc Pattyn17-Nov-09 3:51 

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.