Hi, i was looking for it to be a console app? if that is possable because i dont know much about the workings of windows yet
Steven Richardson 0
Posts
-
Copy all files in a folder? -
Copy all files in a folder?wont that just copy the file cmd.exe not a folder?
-
Copy all files in a folder?I am looking for some code that will copy all the files in one folder to another some where else?
-
Standard Form prob!i am doing some very large calculations in a RichEdit and it keeps going into standard form like 546E10 is there a way to stop this? P.S i am using Borland C++ 5 and oop
-
password protect folder3rd party software like.....
-
password protect folderI have a folder that i would like to password protect so you double click on it and you get a password box there needs to be one password that shows the folder and one that shows a different folder and anything else you put in stops you opening it? How can this be done?:confused:
-
Assigning a New File Format?i have made a program that uses a file format that i have created called *.sts and i need to make the file (when double clicked) open my program and load the file in?:confused:
-
AnsiString to string w/o changing what is in it?yes i am talking about C++ builder but i dont know about the second bit? i know how to search a string but not an AnsiString?
-
AnsiString searching?is there any way to search a AnsiString?
-
AnsiString to string w/o changing what is in it?i have a Ansistring called Output and i need to search it but find is a string command so i have to convert it to a string: string Oputput; but this changes what is in the AnsiString? any ideas
-
string help whats wrong with this code?Input cannot be made in to a char as it no longer equals what it should so as a AnsiString it equals: save that{ste} and as a char it equals:ÈóI
-
string help whats wrong with this code?you said char *Input; //better alloc some memory here how do i do that? and i know why it is not working! cos as soon as Input becomes a char it screws up and does not equal what it should?
-
string help whats wrong with this code?hang on i know why thanks for your help
-
string help whats wrong with this code?i dont get any errors now it just does not work? HidPass does not equal anything?
-
string help whats wrong with this code?sorry about all this but now it has a problem with HidPass = t+1;//remember the plus one here:(( :((
-
string help whats wrong with this code?i have just got an error wit the line: y=strchr(t,'}'); on running it i changed the code a bit to: char abc[1000]; char *Input; strcpy(abc,Input); char *t,*y; t=strrchr(abc,'{'); y=strchr(t,'}'); if(y) *y=0; cout << t+1; HidPass = t; does this have anything to do with it?
-
string help whats wrong with this code?thanks i just got it!:)
-
string help whats wrong with this code?soory i just got it thatnks a lot!!!!!!!!
-
string help whats wrong with this code?:confused:?????:confused:
-
string help whats wrong with this code?i have this code on a button and it is ment to find the last { and then read the text in front of it and output it to edit4? s = "this would be the text{ste}"; string l = "{"; a = s.rfind(l); Edit3->Text = a; int a; String s; for (int i = a;i<=s.Length();i++){ Output = Output + i; } Edit4->Text = Output; and in the end output should = ste on this example