User Profile

Collapse

Profile Sidebar

Collapse
rajesh6695
rajesh6695
Last Activity: Aug 9 '10, 10:10 AM
Joined: Oct 26 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Which Programming Language is good for GUI?

    Which programming language will be suitable for GUI application development for Win CE 5.0 Device.

    Below are the some major features to be covered in GUI application
    1. TCP/IP Communication (Hope it can be implemented in any language).
    2. Some of the GUI objects are Speedometer, Button, Lines, Arrows, LED button display.
    See more | Go to post
    Last edited by Niheel; May 26 '10, 12:14 PM. Reason: spelling, hello and thanks

  • rajesh6695
    replied to Share Process
    You sugesstion is valuable. But that doesnt save any process time. So thats the reason i want to run another process. I will transfer the information to write through main process. Like in reflection. Even i tried in threads doesnt save any processing time.
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to Share Process
    Code:
    public partial class Form1 : Form
        {
            public long Start_Tick_Count = 0;
            public long End_Tick_Count = 0;
            DateTime SystemDate;
            public string data = "";
            int Count = 0;
            TextWriter TextFile = new StreamWriter("File1.txt");    
    
            public Form1()
            {
                InitializeComponent();
    ...
    See more | Go to post
    Last edited by tlhintoq; Oct 27 '09, 10:12 AM. Reason: [CODE] ...your code here...[/CODE] tags added

    Leave a comment:


  • rajesh6695
    replied to Share Process
    I measured the file write() will write the data into a file with in 2ms but file flush function is consuming more time to save the contents. The auto flush = true is calling flush function after every filewrite.
    Is there any way to save the file without calling file flush?
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to Share Process
    I am using USB 2.0 Speed flash memory. I am writting 500bytes of information into a file for every 10ms. I hope the 2.0 is better speed to achive wrtting data with in 10ms.
    See more | Go to post

    Leave a comment:


  • rajesh6695
    started a topic Share Process

    Share Process

    Hello all,

    I am developing a application in c#.NET for Windows CE 5.0 device.
    1) Need to process some information - Which is i am doing fine no problem.
    2) I need to record some data into a one file in continuosly.

    My problem is writting data into file is killing the process time. For one cycle processing time is around 180 ms to write. So i decided to use reflections which use another exe to write the data...
    See more | Go to post

  • rajesh6695
    started a topic Function Variable memory is on heap or in stack
    in C

    Function Variable memory is on heap or in stack

    Hai

    I want to know wheather the user defined function local variables are stored in the stack or in heap....

    For example i have a function add()

    int add(int i, int j)
    {
    int m ,n;

    ....
    }

    Where the M and N variable value will be stored wheather in the heap or in the stack....?

    and also i think the variable i and j are stored in the stack...
    See more | Go to post

  • rajesh6695
    replied to Handshakeing for serial port..
    in C
    Is there any other way to acess Serial port in dos under c....Other than _bios_serialcom ()...

    I think inport() outport() will not be reliable as much as _bios_serialcom () is it? bcz we dont know weather the data is received in a serial port....

    Is there any other way to check the serialport status....
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to Handshakeing for serial port..
    in C
    OS: dos 6.22
    compiler : Borland C++ 4.5

    The Hardware (millivoltmeter ) whenever user send any command to hardware then hardware will send six bytes of data to the system....i am receiving those six bytes of data by using _bios_serialcom () one by one by checking that dataready bit is set or reset. By (486 machine )old system is receiving data without any loss but the Pentium 4 is missing some data..

    Shall i PM...
    See more | Go to post

    Leave a comment:


  • rajesh6695
    started a topic Handshakeing for serial port..
    in C

    Handshakeing for serial port..

    Hai

    I checked many sites no one had given how to implement a handshaking for serial port comminucation i am using _bios_serialcom () function. to communicate with hardware through serial port it is communicating fine without any problem but my requirement is when ever the data is ready we have to read that data.That i had done by checking the status value with 0x100...Is there any posiibilites to set or reset that particular bit by...
    See more | Go to post

  • rajesh6695
    replied to Portable password on console
    in C
    You can implement your own logic....

    using the do while loop read a character by character using getch() and print * once after reading one caharcter till user press enter key ascii value of enter is 0x13..
    using string concatenation you can get the whole string.....

    Better check our old threads we solved one issue regarding the same....




    Regards
    Rajesh
    <email...
    See more | Go to post
    Last edited by RedSon; Mar 2 '07, 03:48 PM. Reason: Please do not post your email.

    Leave a comment:


  • rajesh6695
    replied to Create folders using C++
    in C
    One way is using system call...
    system("md scripts");
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to any idea?????????????
    in C
    Better write a algorithum and start developoing the code....If you have any problem then post the code......
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to accessing ports
    in C
    What you really need....
    Post your question Clearly...

    Dou want to acess serialports...? check out the below links......

    http://www.geocities.c om/horacespider/Serial_IO/TurboC_V3/
    http://tech.yostengine ering.com/servoCenterPDF/SCAP09.pdf
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to convert float to string
    in C
    Write your own function to convert....
    See more | Go to post

    Leave a comment:


  • Could any one help me out to find the status of the serial port.....
    Where bioscom() function returns the status of the particular port similarily is there any way to get the status of the port by using outp() or outport() function....
    Is there any possibilities to manually set and reset the status bits of port.....
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to how begin with C++
    in C
    From the Below link you can start learning c++....

    http://www.cplusplus.com/doc/tutorial/...
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to assignment
    in C
    Instead of knowing the output...Better try to know, how that output comes....

    Dont read the languages as like English or some other language...Try to workout like mathematics.... ..

    The output of the above code will be

    Hellow World
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to assignment
    in C
    What you need to Do? Please Explain Clearly.....
    For the above code you have to include header files and body of the function starting parenthesis is missing and the name of teh function (main)

    What you need to do?...
    See more | Go to post

    Leave a comment:


  • rajesh6695
    replied to How to add int_max and int_min in this loop?
    in C
    Declare two variables int max and min.

    store the first scaned input(i.e value of x) to the min and max.

    Inside the while loop check whether the scaned input(x) x>max or not if yes then store the x value in max

    once again check whether x is less than the min or not(x<min) if yes then store the x value in min..

    [code removed as per site FAQ]
    See more | Go to post
    Last edited by MMcCarthy; Feb 22 '07, 06:59 AM. Reason: removed code as per site rules

    Leave a comment:

No activity results to display
Show More
Working...