Click here to Skip to main content
15,899,679 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: TextBox with Hyperlink Text Pin
Johan Hakkesteegt23-Apr-09 20:35
Johan Hakkesteegt23-Apr-09 20:35 
GeneralRe: TextBox with Hyperlink Text Pin
ormonds23-Apr-09 21:22
ormonds23-Apr-09 21:22 
QuestionHow to put file in file? [Not Compress] Pin
Stylus VB23-Apr-09 11:17
Stylus VB23-Apr-09 11:17 
AnswerRe: How to put file in file? [Not Compress] Pin
Colin Angus Mackay23-Apr-09 12:39
Colin Angus Mackay23-Apr-09 12:39 
GeneralRe: How to put file in file? [Not Compress] Pin
Stylus VB23-Apr-09 23:29
Stylus VB23-Apr-09 23:29 
GeneralRe: How to put file in file? [Not Compress] Pin
Johan Hakkesteegt23-Apr-09 23:56
Johan Hakkesteegt23-Apr-09 23:56 
GeneralRe: How to put file in file? [Not Compress] Pin
Stylus VB24-Apr-09 0:46
Stylus VB24-Apr-09 0:46 
GeneralRe: How to put file in file? [Not Compress] Pin
Johan Hakkesteegt24-Apr-09 1:02
Johan Hakkesteegt24-Apr-09 1:02 
Stylus VB wrote:
i have to create my data file to temp location then i gotta zip it. this means 400 mb hdd space instead of 200 mb. if i could give a path like this C:\file.zipx\data.ktt file will be directly saved under that.


Let us assume for a moment that you managed to do what you are trying to do with a simple File.Move("C:\Data.ktt", "C:\YourContainerFile.cnt\Data.ktt").
Here is what would actually happen:
1. C:\Data.ktt (disc usage 200 mb)
2. Copying Data.ktt to C:\YourContainerFile.cnt\ (disc usage 400 mb)
3. Deleting C:\Data.ktt (disc usage 200 mb again.)

You can create the zip file at run time, and write to it at run time. In the end you would use your system memory and hdd space to the exact same extent.

Think about it, what you are trying to accomplish in the end is a file containing another file. Or in other words, you want a folder that acts like a file. That is exactly what a zip file is.

My advice is free, and you may get what you paid for.

QuestionNeeded help on setting withevents property for combobox. Pin
the_amol23-Apr-09 4:54
the_amol23-Apr-09 4:54 
AnswerRe: Needed help on setting withevents property for combobox. Pin
Henry Minute23-Apr-09 12:09
Henry Minute23-Apr-09 12:09 
GeneralRe: Needed help on setting withevents property for combobox. Pin
the_amol23-Apr-09 22:44
the_amol23-Apr-09 22:44 
QuestionQuerying Access back end database with wildcard Pin
Solo123-Apr-09 4:49
Solo123-Apr-09 4:49 
AnswerRe: Querying Access back end database with wildcard Pin
Eddy Vluggen23-Apr-09 4:58
professionalEddy Vluggen23-Apr-09 4:58 
GeneralRe: Querying Access back end database with wildcard Pin
Alex Tory23-Apr-09 5:57
Alex Tory23-Apr-09 5:57 
GeneralRe: Querying Access back end database with wildcard Pin
Eddy Vluggen23-Apr-09 6:07
professionalEddy Vluggen23-Apr-09 6:07 
GeneralRe: Querying Access back end database with wildcard Pin
Solo123-Apr-09 11:41
Solo123-Apr-09 11:41 
AnswerRe: Querying Access back end database with wildcard Pin
Kschuler23-Apr-09 6:14
Kschuler23-Apr-09 6:14 
GeneralRe: Querying Access back end database with wildcard Pin
Solo123-Apr-09 11:36
Solo123-Apr-09 11:36 
QuestionHow can i use printf() o cout in MFC Pin
johnjitu23-Apr-09 4:33
johnjitu23-Apr-09 4:33 
AnswerRe: How can i use printf() o cout in MFC Pin
Eddy Vluggen23-Apr-09 4:44
professionalEddy Vluggen23-Apr-09 4:44 
AnswerRe: How can i use printf() o cout in MFC Pin
Yusuf23-Apr-09 5:07
Yusuf23-Apr-09 5:07 
AnswerRe: How can i use printf() o cout in MFC Pin
Christian Graus23-Apr-09 10:24
protectorChristian Graus23-Apr-09 10:24 
GeneralRe: How can i use printf() o cout in MFC Pin
Luc Pattyn23-Apr-09 10:47
sitebuilderLuc Pattyn23-Apr-09 10:47 
GeneralRe: How can i use printf() o cout in MFC Pin
Johan Hakkesteegt23-Apr-09 23:04
Johan Hakkesteegt23-Apr-09 23:04 
QuestionPictureBox Imgage Processing Pin
M_Naeem22-Apr-09 19:43
M_Naeem22-Apr-09 19:43 

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.