Click here to Skip to main content
15,921,622 members
Home / Discussions / C#
   

C#

 
QuestionHow I can create an application in C# that it doesn't need to framework when it run? Pin
kjhuut22-Apr-08 20:38
kjhuut22-Apr-08 20:38 
AnswerRe: How I can create an application in C# that it doesn't need to framework when it run? Pin
Christian Graus22-Apr-08 21:06
protectorChristian Graus22-Apr-08 21:06 
GeneralRe: How I can create an application in C# that it doesn't need to framework when it run? Pin
Muammar©22-Apr-08 22:01
Muammar©22-Apr-08 22:01 
GeneralRe: How I can create an application in C# that it doesn't need to framework when it run? Pin
MumbleB22-Apr-08 23:11
MumbleB22-Apr-08 23:11 
GeneralRe: How I can create an application in C# that it doesn't need to framework when it run? Pin
darkelv22-Apr-08 23:51
darkelv22-Apr-08 23:51 
GeneralRe: How I can create an application in C# that it doesn't need to framework when it run? Pin
J4amieC23-Apr-08 0:43
J4amieC23-Apr-08 0:43 
GeneralRe: How I can create an application in C# that it doesn't need to framework when it run? Pin
Jordanwb23-Apr-08 16:13
Jordanwb23-Apr-08 16:13 
Generaldesign a command line interpreter Pin
kingofthering22-Apr-08 20:37
kingofthering22-Apr-08 20:37 
Device a simple shell with the following valid commands:
1. help
a. lists the names of currently available commands
2. add
a. takes 2 command line arguments corresponding to the two input values
3. subtract
a. takes 2 command line arguments corresponding to the two input values
4. multiply
a. takes 2 command line arguments corresponding to the two input values
b. overflows will be truncated
5. divide
a. takes 2 command line arguments corresponding to the two input values
b. this performs only integer division
c. division attempt by zero returns zero.
6. setlog
a. takes one argument indicating the name of the log file [default: q1.log]
7. start
a. starts the logging process to the logfile mentioned above
8. stop
a. stops logging process
9. quit
a. exits out of shell
10. back
a. Usage: back <cmd> <arg1> <arg2>
b. Executes the cmd in back ground and holds the child from exiting till explicitly
mentioned by fetch command
c. Internally, back returns the child id of the process created .
11. fetch
a. Usage: fetch <child id="">
b. childid is the id of the process to be fetched. This will print the result of the
operation performed by child
c. if no childid is given, any of the background children will be fetched.
12. ps
a. list the set of child processes with their process id and the name of the child.

Apart from these set commands, if any other command is typed, then a “Command not found”
error should be printed by your program on to the screen.
All the results from the child processes has to be send to shell process using shared memory
defined on a per-child basis.
If a process has been send to background using the back command, then it must stop itself from
sending the result back to shell. Only when the user types the fetch command, the child must
return the result to the shell.
Every 30 secs, the shell must display the currently running child processes on to the screen. (This
information should not be printed to the log file.)
From the time the start command is given, all the commands typed in the shell, and its results
must be written on to the log files, unless otherwise specified. Commands 1,6,7,8,9 and 12
should not be written to the log file, neither should their results be written.
GeneralRe: design a command line interpreter Pin
Christian Graus22-Apr-08 21:07
protectorChristian Graus22-Apr-08 21:07 
GeneralRe: design a command line interpreter Pin
Reelix22-Apr-08 22:15
Reelix22-Apr-08 22:15 
GeneralRe: design a command line interpreter Pin
J a a n s23-Apr-08 0:09
professionalJ a a n s23-Apr-08 0:09 
QuestionC# MDI Pin
Yousefjt7722-Apr-08 20:20
Yousefjt7722-Apr-08 20:20 
GeneralRe: C# MDI Pin
Nouman Bhatti22-Apr-08 20:54
Nouman Bhatti22-Apr-08 20:54 
Questionfax problem?? Pin
Member 386320922-Apr-08 19:48
Member 386320922-Apr-08 19:48 
AnswerRe: fax problem?? Pin
Christian Graus22-Apr-08 20:22
protectorChristian Graus22-Apr-08 20:22 
Questionadding DateTime picker ctrl to Datagrid Pin
Denver Thomas22-Apr-08 19:47
Denver Thomas22-Apr-08 19:47 
GeneralRe: adding DateTime picker ctrl to Datagrid Pin
Nouman Bhatti22-Apr-08 20:51
Nouman Bhatti22-Apr-08 20:51 
GeneralProcess Memory Space Pin
barboris22-Apr-08 19:29
barboris22-Apr-08 19:29 
GeneralRe: Process Memory Space Pin
Jordanwb23-Apr-08 16:14
Jordanwb23-Apr-08 16:14 
GeneralRe: Process Memory Space Pin
AngusP15-Apr-09 16:16
AngusP15-Apr-09 16:16 
Generalissues in float division a/b Pin
George_George22-Apr-08 18:38
George_George22-Apr-08 18:38 
GeneralRe: issues in float division a/b Pin
Vikram A Punathambekar22-Apr-08 18:50
Vikram A Punathambekar22-Apr-08 18:50 
GeneralRe: issues in float division a/b Pin
George_George22-Apr-08 19:00
George_George22-Apr-08 19:00 
GeneralRe: issues in float division a/b Pin
darkelv22-Apr-08 19:19
darkelv22-Apr-08 19:19 
GeneralRe: issues in float division a/b Pin
George_George22-Apr-08 20:35
George_George22-Apr-08 20:35 

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.