User Profile

Collapse

Profile Sidebar

Collapse
mandogon
mandogon
Last Activity: Feb 9 '08, 12:51 AM
Joined: Apr 27 '06
Location: Southern California
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mandogon
    started a topic Application Error

    Application Error

    Hello
    this is my problem i have compiled and installed this application i created in cpp and it seems to work on 4 out the six computers that i have installed it in i have looked into the DEP with no success uninstalled and reinstalled with the same error cleared out my temp files and still nothing all the machines are running in windows xp pro sp2 all updated to date here is the error that i get

    application failed to initialize...
    See more | Go to post

  • mandogon
    started a topic C++ Builder
    in C

    C++ Builder

    I have this project that i have been working on and i was wondering how do i get it to open a particular extent ion for example .avi in any of the drives
    and automatically play it when the program opens

    Thanks for any help you guys give me
    See more | Go to post

  • mandogon
    replied to Program crashes need help
    in C
    I Have narrowed it down to these lines of code that are causing the my program to crash now i have commented out the if statement and noticed that it the program will run a lot longer but it will eventually crash if any one can help me figure out how i can fix this i will be very grateful it thanks
    Code:
    if(bytesLeft < 8000000)
    {
      ::memmove((void *)ptr, (const void *)&(ptr[iTotalLen]), sizeof(char) * bytesLeft);
    ...
    See more | Go to post
    Last edited by AdrianH; May 9 '07, 06:04 PM. Reason: Added code tags

    Leave a comment:


  • mandogon
    started a topic Program crashes need help
    in C

    Program crashes need help

    Ok i have been looking at this block of code for about 2 weeks and cant figure out why my program keep on crashing within this block of code if you could help thanks

    Code:
    void __fastcall TPSM_OperatorClientForm::csktClientSocketRead(
          TObject *Sender, TCustomWinSocket *Socket)
    {
        try
    	{
        bool done = false;
        int bytes = 0;
        static int bytesLeft = 0;
        int
    ...
    See more | Go to post
    Last edited by AdrianH; May 5 '07, 01:26 AM. Reason: Please use [code][/code] tags for readability

  • mandogon
    started a topic String to char
    in C

    String to char

    i was wondering if any one can help me i am trying to covert a string to a char if anyone has an idea let me know thanks
    See more | Go to post

  • mandogon
    started a topic Borland Error please Help
    in C

    Borland Error please Help

    i am using borland C++ builder 6 i am getting two errors and they read the same here they are

    E2238 Multiple Declaration for '_fastcall ecomport::ecomp ort(int);

    if anyone can help me on how to fix the problem i would really appreciate it thanks
    See more | Go to post

  • mandogon
    started a topic SaveAs function
    in C

    SaveAs function

    what i want to do is instead of saving a file in a particular predefine section i want a save as diolog box to come up and ask me to put the file name in this is what i have so far but cant get the saveas to work if anyone can help thanks
    void __fastcall TForm1::Button2 Click(TObject *Sender)
    {
    //virtual void__fastcall SaveAs(void) = 0;
    AnsiString FileName = "C:\\images\\fi leopen.txt";
    Image1->Picture->SaveToFile("c: \\images\\ca.jp g");...
    See more | Go to post

  • mandogon
    started a topic putting images together
    in C

    putting images together

    Hello People
    I have been working and compleated the first part of my program using C++ Builder what it dose is it get an image from a file and displays the image. now what i want to do is get like 100 images and play them back to back until it reaches the end of file basically getting all those images and play them as if they were a video i have the images in place with diffreent file names if any of you have any ideas i would appricate...
    See more | Go to post

  • mandogon
    started a topic Declaration Syntax error
    in C

    Declaration Syntax error

    Hello peoples
    i am having trouble compiling this program getting a the error is "Declaratio n Syntax error" using borland c++ bulider v.6 if any one can help thanks

    Code:
    void __fastcall TFrame2::FrameClick(TObject *Sender)
    {
     int main()
    {                                    //it is showing the error right here
    
            ifstream myfile("c:\fileopen.txt");
    ...
    See more | Go to post
    Last edited by Banfa; Sep 22 '06, 02:56 AM. Reason: Added [code] ... [/code] tags

  • mandogon
    started a topic C++ Database connecton
    in C

    C++ Database connecton

    i would like to know what is the command line in borland C++ to connect to a specific database for example in Java i know its connection = DriverManager.g etConnection("j dbc:odbc:whatev er") whatever being the database but i cannot find how to do it in c++ can someone help thanks
    See more | Go to post

  • mandogon
    started a topic g++ error
    in C

    g++ error

    does anyone know how to clear this error

    calling fdopen: bad file descriptor

    any help will be appricated thank you
    See more | Go to post

  • mandogon
    started a topic Explaination of error
    in C

    Explaination of error

    thanks in advance for any help i can get the question is what does this error mean
    argument of type `char (Camera::)()' does not match `const char*'
    See more | Go to post

  • mandogon
    started a topic More Help
    in C

    More Help

    Im having trouble locating the error on this code all help is appricated thank you

    this is the code im working with

    #include "camera.h"
    using namespace std;

    char ending[]="].jpg";

    /* Execute the command using this shell program. */

    void get_real_time(v oid) //FUNCTION PROTOTYPE: get_real_time()

    void get_real_time (void)<-ERROR...
    See more | Go to post

  • mandogon
    started a topic help on my .h file
    in C

    help on my .h file

    just want to say thanks in advance for all the help you could give me
    this is what part of the code looks like and the error im getting is below

    class Camera{

    public:
    Camera();
    void read(int read_from_clien t (int& sock1));

    void write (int write_to_server (int& sock1, char *image, char *host);//The error is right here

    void sigchld(void...
    See more | Go to post

  • mandogon
    replied to How to do pseudocode?
    in C
    you could start off by creating a flow chart of the program you are creating after creating the flow chart you can just create the pseduo code for it
    See more | Go to post

    Leave a comment:


  • mandogon
    replied to plzzzz help
    in C
    well this is the code if you want it




    /*
    * OpenVPN -- An application to securely tunnel IP networks
    * over a single UDP port, with support for SSL/TLS-based
    * session authentication and key exchange,
    * packet encryption, packet authentication, and
    * packet compression.
    *
    * Copyright (C) 2002-2005 OpenVPN...
    See more | Go to post

    Leave a comment:


  • mandogon
    started a topic Java help
    in Java

    Java help

    How could i compile java code im getting an errror when trying to run a program in the command promt
    Exception in thread "main" java.lang.NoCla ssDefFoundError :
    that is the error what am i doing wrong?
    See more | Go to post

  • mandogon
    replied to Borland Error Message
    in C
    ok it seems that m_packetRec is not being picked up as a struc because i have that as a structure already what can i do to make it be read as a struc
    thanks in advance...
    See more | Go to post

    Leave a comment:


  • mandogon
    started a topic Borland Error Message
    in C

    Borland Error Message

    ive been fixing these borland errors one by one and the one i totally stomped on is this one

    [C++ Error] TextProcessor.c pp(1449): E2294 Structure required on left side of . or .*

    the line of code it is giving it to i here

    pPacket->m_packetRec.pa cket.macDst[i] = pPCS->macDst[i];
    See more | Go to post

  • mandogon
    started a topic C++ Error message
    in C

    C++ Error message

    this is the error message i get with Borland C++ and the thing is that ;GetManualKeyFl ag is a member of PSM_Interactive but it does not seem to be reading the file would anyone happen to know why

    [C++ Error] PSMProtocol.h(6 22): E2316 'GetManualKeyFl ag' is not a member of 'PSM_Interactiv e'
    See more | Go to post
No activity results to display
Show More
Working...