Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~18.0K People Reached
Favorite Tags
Member Avatar for GadiK

Hi guys, I took it upon myself to learn the mysteries of linux. I'm trying to write a shell that can handle more than one pipe. Here's the code: [CODE] typedef struct command_link{ char *command; char *argv[MAX_ARGS]; int argc; struct command_link* next; int isPiped; }command_t; int pipedCommand(command_t *command) { int …

Member Avatar for Riadh_1
0
11K
Member Avatar for GadiK

I have 2 Windows machines. One physical for development and another (virtual) for testing. I want to write a PERL script that would take my compiled files and copy them to predefined locations on the virtual machine (backing up existing files). Before copying the files I need to check for …

Member Avatar for GadiK
0
1K
Member Avatar for LordSnow

Hi all, I'm working on a project with my friends which contains modules that are written in C++,JAVA and C#. This project is currently aimed for Windows and is deployed using an old InstallShield (pretty sure it's older than 2008) based wrapper. I would like to be able to check …

Member Avatar for TrustyTony
0
122
Member Avatar for GadiK

Hi. I'm writing a function for a project that has many authors. I thought it would be nice if there was a tool (VS add-in) that would enable me to insert a comment in the form of a flow chart so that I wouldn't have to write a lot of …

Member Avatar for GadiK
0
96
Member Avatar for GadiK

Hi everyone. I'm diving head first into the fascinating world of Linux network programming. I've read about using sockets to do the networking, however, all the books I've seen so far have talked about IP addresses. My goal is to connect my PC to a development board and make them …

0
106
Member Avatar for GadiK

Hi. I'm trying to debug a program that was written in Aztec C. I would like to use a familiar environment like VS2005. Is there any way to make VS2005 use the Aztec C compiler commands (from Aztec BIN folder)? If not VS2005, is there some way I can debug …

Member Avatar for Tom Gunn
0
182
Member Avatar for u8sand

Hello everyone. This is not really a coding problem as it is more of a compiler problem. I am making an MFC application in Visual Studio 2005. When i open up the icon, i can edit it right there in that editor. But when i do, it works fine in …

Member Avatar for GadiK
0
136
Member Avatar for GadiK

Hello dear forum friends. I know that this subject has been dealt with before. I read the threads about this issue in this forum however I still couldn't make it work. So I'm bringing this up again and hopefully you'll find it in your hearts to forgive and help me. …

Member Avatar for GadiK
0
821
Member Avatar for GadiK

Hi Guys. I wrote a nice MFC application. This app uses a number of threads and is meant to manage rs232 communication with a microcontroller. When I send or receive data Visual Studio informs me of a [B]Memory Leak[/B]: Detected memory leaks! Dumping objects -> f:\rtm\vctools\vc7libs\ship\atlmfc\src\mfc\thrdcore.cpp(306) : {184} client block …

Member Avatar for Salem
0
865
Member Avatar for GadiK

Hi Guys, I'm trying to write a simple game of drawing rectangles and circles in a window. I've created a different class for each shape: RectClass and CircClass. Each of these classes has it own DrawShape() function which suppose to draw the shapes in the window with given coordinates argument. …

Member Avatar for Ancient Dragon
0
184
Member Avatar for GadiK

Hi Guys, I'm trying to write a program (MFC) that while working displays a log to the user. For this log I thought I'd use an Edit Box because I can set it to be "multiline". What I had in mind is to display each new log entry in a …

Member Avatar for GadiK
0
947
Member Avatar for GadiK

Hello, I'm writing a GUI using MFC. I have a number of press buttons that preform identical tasks on different members of an array. I know how to make a handler function for each button. I'm looking for a way to use the same function for all buttons and within …

Member Avatar for Comatose
0
113
Member Avatar for GadiK

Hey, I'm having a problem reading from a device attached to my serial port. I have a big application which uses a thread to read from the serial device and writes the data to a log file. The device is set to transmit data at 500Hz, which means that my …

Member Avatar for GadiK
0
2K