I have a custom build step in which the Commands are:
mkdir ..\MYPROGRAM\HELP
mkdir ..\MYPROGRAM\DATA
mkdir ..\MYPROGRAM\LOGS
mkdir ..\MYPROGRAM\DEMO
and the Outputs are
..\MYPROGRAM\DEMO
..\MYPROGRAM\DATA
..\MYPROGRAM\HELP
..\MYPROGRAM\LOGS
I assigned this custom build step to 10 of my...
Thank you Zyrenthian and PerFnurt. I had changed the project settings Debug Working directory to C:\MYPROGRAM", and then changed the General Output Files directory to "C:\MYPROGRAM", and then invoked "File01.EXE". When "File01.EXE" was running I called "File02.EXE" from within "File01.EXE" and...
Microsoft Knowledge Base Article - 121556 has some interesting information. The section "Can't set breakpoint in source file when corresponding symbolic information isn't loaded into memory by debugger." has helped me avoid the error " One or more breakpoints cannot be set and have been...
Thank you for the response. I changed the "File02" Project Settings "Executable for debug session:" to C:\MYPROGRAM\FILE01.EXE and the "Working Directory:" is set to C:\MYPROGRAM. After these changes I set a breakpoint in the File02.c source code and pressed the "F5" key to debug the project.
I...
Ok, now the files are built in the C:\MYPROGRAM Directory, and I no longer get the error message about the missing .ini file. I set a breakpoint in the File02.c source at a function definition. File01.exe, calls File02.exe via a WinExec() call. When I execute my main program by pressing F5 I get...
Ok, via the IDE Workspace Window I have selected the Main program's project (File01.exe)and, after right-clicking the project name, chosen "Set as active Project" from the context menu.
The project name is now marked in bold text. I now press the "Ctrl+F5" combination on the keyboard to...
It looks like I'm getting more than I bargained for now. I have now changed each Debug project's "Output Files" path to C:\MYPROGRAM (no file renaming is necessary). For each output file, there are two additional files with extension .ilk and .pdb. What are these? Is there a way to avoid this?
I have a Workspace located in a root directory, with numerous child directories. Within each child directory is a VC++ project that compiles and creates an executable or library within each respective child directory.
Here is an illustration of the directory structure:
(Parent Directory)...
Thank you both for this information. I am using array elements for the textvariables, but I forgot about "array names <array_name>". Using a hash to store name/value pairs is a trick I learned when writing Perl CGI scripts for parsing HTML forms.
Since all entry widgets need to be...
I have an dialog box that appears and asks the user for some information. When the user presses the "SAVE" button, the text is read and stored in an internal data structure. This all works fine.
When the dialog box appears the second time the old text is still visible in the entry...
I'm using ActiveStates Tcl/Tk v8.4. The parser I'm using is Zveno (http://www.zveno.com/) TclXML, a SAX like parser. The utility I'm writing is a personal document management program for use on Windows and Linux. It already works well with my proprietary configuration file. I want to use XML...
Thank you for responding. I know XML can provide a means to eliminate proprietary data formats, but I'm far from understanding how to use XML as a data format for my programs. I think what I should have asked is "Are there any good introductory books about XML usage?". I'm sure that...
I'm interested in converting some programs I've written for personal use to utilize XML as a "configuration file" format. Currently, I'm using delimited text documents to define input records for a project management tool written in Tcl/Tk. The program opens the configuration file...
Thanks for the response. It gave me some insight to the VB string passing quirks. Passing a LPCSTR to wsprintf causes a warning so I didn't use it. I'm now assigning a LPCSTR variable a string value:
LPCSTR myString = "Hello, World!";
and returning the myString to the calling...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.