User Profile

Collapse

Profile Sidebar

Collapse
Parul Bagadia
Parul Bagadia
Last Activity: Jan 22 '10, 03:53 AM
Joined: Mar 3 '08
Location: India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Many times in case of Turbo C compiler, output window gets closed by itself ; try using getch() so that the output window will wait untill a charachter is accepted by it.. or you can also check output window in Windows options in case of TC/TC++ compilers
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    replied to Port no.
    I really need to get my net working in ubuntu as i have to install certain very important packages... tell me faster plz.
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    started a topic Port no.

    Port no.

    hello ppl, my net is working in windows but i want it to run in ubuntu; in ubuntu i have configured VPN settings.. and its showing network as connected; m also getting reply on pinging; but its still not working because its askin for port no. in EDIT-> Preferences->network->settings.. i tried ipconfig, ipcofig /all ;its giving all the addresses includin MAC and IP but not the port no... I even tried with port nos, as 8080 and 88... ...
    See more | Go to post

  • Parul Bagadia
    started a topic Virtual Box

    Virtual Box

    This is something very urgent and important. Actually i have to install Fedora 7 by using virtual box which is in windows, at the time of booting its not showing me any files on my bootable cd; any image file .vdl and stuff but i do have .img file which is not accepted by it. so, how do i install fedora in virtual box?
    See more | Go to post

  • Parul Bagadia
    replied to Need of encryption in My project.
    Actually the basic threat i came to know is even if some data packet doesn't belong to the particular PC in network; it can accept it. But i dont know how that will be achieved practiacally... Can someone explain...
    I mean every1 must b knowing the process of broadcasting; server sends a message having header; which is checked by all clients n whichever clients needs or say values match with it it accepts the packet... So if some PC deciedes...
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    replied to System and system 32
    All what i got from search results is; earlier the windows was having 16-bit platform; and MS was not having that monopaly in its earlier era so he couldnt make support for all of the applications in 32-bit; co all those stuff are in system folder where as the upgraded stuff is in system 32.... But truly speking its not sounding me that good; if this is the case then MS must ne able to convert it by now... whats the exact reason behind these 2 diff....
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    replied to Need of encryption in My project.
    Hopefully not; if you agree with my point that this is the reason why i need security in my project.:-).. If not; yes i still need help on this....
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    started a topic System and system 32

    System and system 32

    Why do we have 2 differnt things in windows as; system and system 32? which all files differ in these things and why? Am searching on google but if someone know in advance i can utilize my time....... so don't mind answerin this :-).....
    thanks in advance..
    See more | Go to post

  • We are using C; I got the answer for this.
    In network there will be obviously many PCs, but i want only one to communicate with my device which is connected to server; so that's the reason why we are using encryption.
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    started a topic Need of encryption in My project.

    Need of encryption in My project.

    Hello,
    I am doing a project in USB OVER IP, which is about sharing a remote USB device
    from your workstation, for ex. say two PCs are connected by LAN and a scanner is attached to one PC and user sitting at other workstation can access that scanner ; and all of its functionality.
    We will be implementing it in Device Driver, so that it wont have any specifications of OS and it will work between diiferent Operating Systems; such...
    See more | Go to post

  • Parul Bagadia
    started a topic Uploading image in ASP

    Uploading image in ASP

    Hello,
    I am making a project in ASP where am embedding VBscript in it.. Its about sth like a social networking site.. Am making it in Microsoft Expression Studio. Here i want to provide user with an option by which he can upload and view his image. my database is Oracle, what am doing is am providing user with an option of browsing; that comes automatically in Express studio.; with input box of type File,.. where you have a button written...
    See more | Go to post

  • Parul Bagadia
    replied to ActiveX DLL digital clock
    There is no alredy made DLL ; we have to make it by ourselves and then add it.
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    replied to ActiveX DLL digital clock
    Ofcourse there is no ready-made DLL for this purpose!.. First we have add it and then make it.
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    replied to Textbox Beep
    This beep sound comes in VB after we are done with some process; for ex. even if a message-box pops up that beep sound is heard.,so whenever user is done with entering his name , one process is done and beep sound is heard. I don't know how to turn it off but you can check the object-browser for that purpose, there every-properties and their all possible values are specified.
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    replied to ActiveX DLL digital clock
    We had been told to do so in an assignment, that's why.....
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    replied to Array problem
    in C
    I checked the value of array, while i was debugging and found that at the end of the array there was a null charachter in the array it was \x0..
    so i could have equated the array ending with null charachter with string, array ending with null charachter becomes a string , right?...
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    started a topic Array problem
    in C

    Array problem

    Code:
     
    while(ch!=' ')
            {
          [B]frgt[fr]=ch;
    [/B]      ch=getc(in);
          fr++;
            }
            fr=0;
            [B]if(frgt=="DB"|| frgt=="db")[/B]     //making entry in symbol type field of symbol table.
          {
            strcpy(syb_type,"Byte");
            loc_cntr=loc_cntr+1;      //Incrementing location counter values according to the data types encountered.
    ...
    See more | Go to post

  • Parul Bagadia
    replied to Difference between getc and fgetc
    in C
    Do you mean to say that fgetc also points to next charachter in file?...
    See more | Go to post

    Leave a comment:


  • Parul Bagadia
    started a topic Difference between getc and fgetc
    in C

    Difference between getc and fgetc

    getc gets the charachter from file stream and points to next charachter, fgetc gets the charachter from file stream and i don't know whether it points to next charachter or not; is that a significant change?
    In the help menu of Turbo C, it's given that its a function version of getc macro. what is a function version?
    See more | Go to post

  • Parul Bagadia
    replied to ActiveX DLL digital clock
    We have to select ActiveX DLL and add a form in it, so we use that DLL in the same form.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...