User Profile

Collapse

Profile Sidebar

Collapse
dfound
dfound
Last Activity: Oct 19 '08, 06:07 AM
Joined: Jan 20 '07
Location: A stae in India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • dfound
    replied to ROM BIOS interrupts in Borland C++ 5.02
    in C
    I cant see to find any functions equivalent to ROM-BIOS functions in Win32. I tried searching but of no use. It would be a great help if you give me the functions or where I can find them. Thanks...
    See more | Go to post

    Leave a comment:


  • dfound
    replied to ROM BIOS interrupts in Borland C++ 5.02
    in C
    Yes I used the bios.h header file. I just tried a function in the help file .
    The fuction was _bios_memsize() . But the compiler says call to undefined function.
    My code is (this is code is exactly as is in the help file)

    Code:
    #include <stdio.h>
    #include <bios.h>
    
    int main(void)
    {
      unsigned   memory_size;
    
      memory_size = _bios_memsize();   /* returns
    ...
    See more | Go to post

    Leave a comment:


  • dfound
    started a topic ROM BIOS interrupts in Borland C++ 5.02
    in C

    ROM BIOS interrupts in Borland C++ 5.02

    Hello, I am using Borland C++ 5.02 and I was trying to make ROM BIOS interrupts in a c program. But when I compile the program it says undefined structure REGS.
    I tried the program in a cpp program too but with same result.
    Here's my code
    Code:
    #include <dos.h>
    
    #define VIDEO 0x10
    
    void movetoxy(int x, int y)
    {
    	union REGS regs;
    
       regs.h.ah = 2;  /* set cursor
    ...
    See more | Go to post

  • dfound
    replied to Unable to solve compiler errors
    in C
    Where do you get the errors??

    What are the error messages shown ??
    See more | Go to post

    Leave a comment:


  • dfound
    replied to Problem with loop inside switch statement
    in C
    try this...im not sure whether it will work but it worked for me...




    Code:
        ......................
    
    menu_option=getch(); // u can also try cin>>menu_option; , 
    
                ..................................
    
    
    case 'c': {
    
               .......... // ur code
            
               } 
               break;
    
    case 'q':
    ...
    See more | Go to post

    Leave a comment:


  • dfound
    started a topic right-click option
    in C

    right-click option

    I created an encrypting software and decided to add a shell extension.(if thats the correct word)..

    what i did was to add values to registry so that an option will show up when a file/folder is right-clicked..

    I added values to
    HKCR\*\shell\my _app\command ( i made a new key)

    and to

    HKCR\Directory\ SHELL\my_app\co mmand

    and added values to those keys ...

    ...
    See more | Go to post

  • dfound
    replied to Java Software Development
    in Java
    Sorry but I still dont understand which one to download. When I go to the site,there is a download link.when i click that more links appear...

    Can anyone please give the exact link to the download....

    It will be very helpful.... :-)...
    See more | Go to post

    Leave a comment:


  • dfound
    started a topic Java Software Development
    in Java

    Java Software Development

    Hi, I'm very new to Java. I am a C++ and VB programmer but I always wanted to develop platform independent softwares and wanted to use Java. last day when I went to download Java from the sun website, i was confused which one to download. I want Java to create applications mostly to be used without internet(based on file manipulation and all). Can anyone please give me some idea of which one to download.....

    It will be very kind of...
    See more | Go to post

  • dfound
    started a topic C++ dll in VB.Net
    in .NET

    C++ dll in VB.Net

    Hi,How can I use C++ dll in VB.Net . I have Borland C++ 5.02 dll which I want to use with VB 2005. I tried some solutions in the net but none worked. please help.... :-)
    See more | Go to post

  • dfound
    replied to File Recovery in C++
    in C
    Yest recovering permanently deleted files. Is there an API to do this???

    thnkz 4 the reply.....
    See more | Go to post

    Leave a comment:


  • dfound
    replied to File Recovery in C++
    in C
    Eventhough I am a newbie, I know how to use the WIN32 API and handle or intercept meaasges from the applications. I have created a registry editor,
    a key-logger,and such things using WinAPI . I dont need any help on encrypting and other things. I just want to know hoe to retrieve deleted files coz I dont know if an API exists for such a task....
    By the way, thnkz for the reply......
    See more | Go to post

    Leave a comment:


  • dfound
    started a topic File Recovery in C++
    in C

    File Recovery in C++

    Hi , I am writing a program that would do many functions like shredding , encrypting, shutting down computer , changing file attributes , viewing image files etc.... I also want it to have a function to recover deleted files but I have no idea on how to do this. Can any one help..... ???? :-)
    See more | Go to post

  • dfound
    replied to XP style in Borland 5.02
    in C
    But is it possible to use it in BC++ 5.02 ??
    by the way I will also try a Google serch.
    And thnkz 4 the reply :-)...
    See more | Go to post

    Leave a comment:


  • dfound
    replied to Web Browser Doubt
    thnkz 4 the reply......
    See more | Go to post

    Leave a comment:


  • dfound
    started a topic XP style in Borland 5.02
    in C

    XP style in Borland 5.02

    hi , I have a project which i made in Borland C++ 5.02 . Now I just want it to give a XP look (if possible ,vista too) . I had read some where about adding a file called manifest.xml . But I dont know how to add it. I also think that its only for VC++ .
    Please tell me how to add the visual style.... please... :-)
    See more | Go to post

  • dfound
    started a topic Web Browser Doubt

    Web Browser Doubt

    Hi , the other day I was creating a web browser using the web browser control
    in VB 2005 Express
    Now , my doubt is :

    Do a web browser created in VB need Internet Explorer to run or can it run independently even if IE is not present. :-)
    See more | Go to post

  • dfound
    started a topic ACL- Access Control List
    in C

    ACL- Access Control List

    Hi , I am creating a program which would lock a file so that no one can open it by using ACL's . First I tried CACLS command in DOS.Then I saw SetFileSecurity ()
    function but I was not able to use it as I couldn't understand anything about how to use it. Will someone please help.....
    See more | Go to post

  • dfound
    replied to Opening Program and Passing Data
    in C
    Hi, I don't know whether it will work , but try this.


    char command[100];//you can vary size
    strcpy(command, "notepad "); // there is a space after notepad
    strcat(command, filepath);
    system(command) ;


    I had tried the above to open a file containing window.
    I used "explorer " instead of "notepad"
    It might work. .... :-)
    See more | Go to post

    Leave a comment:


  • dfound
    replied to shortening!!?
    in C
    Now, if your array is seat[6][3]
    Well , I think this might do....

    int flag=1;

    for(int i=0;i<6;i++) //For rows
    {
    for(int j=0;j<3;j++) //For columns
    if(ar[i][j]!='X')
    flag=0;
    }

    if(flag==0)
    //means that all the array is not X


    I am not sure but it might do the trick....
    See more | Go to post

    Leave a comment:


  • dfound
    started a topic Copyright Doubt
    in C

    Copyright Doubt

    Hi, I have a program that I developed . Now I want to get a copyright for it.
    How can I do that . Does it cost any money????

    I know its not related to programming doubts but...

    Please forgive me if I am wrong in asking this question in this forum...
    See more | Go to post
No activity results to display
Show More
Working...