Friday, 19 June 2009
|
| "ERROR: GROUP DGROUP exceeds 64k" Ms 22:55:05 |
| | Hi All Have reall big problem...have project due out next week and now suddenly when i go to complile it get following compile error
"ERROR: GROUP DGROUP exceeds 64k"
Am really desperate to solve this as have tried everything!!! Anybody seen this before Thanks for any assistance Mike
|
| | 11 answers | Add comment |
Tuesday, 16 June 2009
|
c++ installer shobelissima 03:47:36 |
| | wa!!! could somebody help me where can i download a free turbo c++ installer. i tried to search a free installer but i ended up finding turbo explorer installer and the size of it is 300+ MB. isn't it that the turbo c++ is only 9MB - a size that is not greater than 20MB. please.. help me to find the installer.. please, or if you have an installer - could you please email it to prinsesang_diwata@yahoo.com ..tnx a lot in advance! |
| | 3 answer | Add comment |
Tuesday, 19 May 2009
|
| <graphics.h> Header file.( Attachment ) Raman Gopalan 07:33:27 |
| | /*graphics.h
Definitions for Graphics Package.
Copyright (c) Borland International 1987,1988,1990 All Rights Reserved. */
#if __STDC__ #define _Cdecl #else #define _Cdeclcdecl #endif
#if !defined(__GRAPHX_DEF_) #define __GRAPHX_DEF_
enum graphics_errors {/* graphresult error return codes */ grOk = 0, grNoInitGraph = -1, grNotDetected = -2, grFileNotFound = -3, grInvalidDriver = -4, grNoLoadMem = -5, grNoScanMem = -6, grNoFloodMem = -7, grFontNotFound = -8, grNoFontMem = -9, grInvalidMode = -10, grError = -11, /* generic error */ grIOerror = -12, grInvalidFont = -13, grInvalidFontNum = -14, grInvalidVersion = -18 };
enum graphics_drivers { /* define graphics drivers */ DETECT, /* requests autodetection */ CGA, MCGA, EGA, EGA64, EGAMONO, IBM8514,/* 1 - 6 */ HERCMONO, ATT400, VGA, PC3270,/* 7 - 10 */ CURRENT_DRIVER = -1 };
enum graphics_modes {/* graphics modes for each driver */ CGAC0 = 0, /* 320x200 palette 0; 1 page*/ CGAC1 = 1, /* 320x200 palette 1; 1 page*/ CGAC2 = 2, /* 320x200 palette 2: 1 page*/ CGAC3 = 3, /* 320x200 palette 3; 1 page*/ CGAHI = 4, /* 640x200 1 page*/ MCGAC0 = 0, /* 320x200 palette 0; 1 page*/ MCGAC1 = 1, /* 320x200 palette 1; 1 page*/ MCGAC2 = 2, /* 320x200 palette 2; 1 page*/ MCGAC3 = 3, /* 320x200 palette 3; 1 page*/ MCGAMED = 4, /* 640x200 1 page*/ MCGAHI = 5, /* 640x480 1 page*/ EGALO = 0, /* 640x200 16 color 4 pages*/ EGAHI = 1, /* 640x350 16 color 2 pages*/ EGA64LO = 0, /* 640x200 16 color 1 page */ EGA64HI = 1, /* 640x350 4 color 1 page */ EGAMONOHI = 0, /* 640x350 64K on card, 1 page - 256K on card, 4 pages */ HERCMONOHI = 0, /* 720x348 2 pages */ ATT400C0 = 0, /* 320x200 palette 0; 1 page*/ ATT400C1 = 1, /* 320x200 palette 1; 1 page*/ ATT400C2 = 2, /* 320x200 palette 2; 1 page*/ ATT400C3 = 3, /* 320x200 palette 3; 1 page*/ ATT400MED = 4, /* 640x200 1 page*/ ATT400HI = 5, /* 640x400 1 page*/ VGALO = 0, /* 640x200 16 color 4 pages*/ VGAMED = 1, /* 640x350 16 color 2 pages*/ VGAHI = 2, /* 640x480 16 color 1 page */ PC3270HI = 0, /* 720x350 1 page*/ IBM8514LO = 0, /* 640x480 256 colors*/ IBM8514HI = 1 /*1024x768 256 colors*/ };
/* Colors for setpalette and setallpalette */
#if!defined(__COLORS) #define __COLORS
enum COLORS { BLACK, /* dark colors */ BLUE, GREEN, CYAN, RED, MAGENTA, BROWN, LIGHTGRAY, DARKGRAY, /* light colors */ LIGHTBLUE, LIGHTGREEN, LIGHTCYAN, LIGHTRED, LIGHTMAGENTA, YELLOW, WHITE }; #endif
enum CGA_COLORS { CGA_LIGHTGREEN = 1,/* Palette C0 Color Names*/ CGA_LIGHTRED = 2, CGA_YELLOW = 3,
CGA_LIGHTCYAN = 1,/* Palette C1 Color Names*/ CGA_LIGHTMAGENTA = 2, CGA_WHITE = 3,
CGA_GREEN = 1,/* Palette C2 Color Names*/ CGA_RED = 2, CGA_BROWN = 3,
CGA_CYAN = 1,/* Palette C3 Color Names*/ CGA_MAGENTA = 2, CGA_LIGHTGRAY = 3 };
enum EGA_COLORS { EGA_BLACK = 0, /* dark colors */ EGA_BLUE = 1, EGA_GREEN = 2, EGA_CYAN = 3, EGA_RED = 4, EGA_MAGENTA = 5, EGA_BROWN = 20, EGA_LIGHTGRAY = 7, EGA_DARKGRAY = 56, /* light colors */ EGA_LIGHTBLUE = 57, EGA_LIGHTGREEN = 58, EGA_LIGHTCYAN = 59, EGA_LIGHTRED = 60, EGA_LIGHTMAGENTA = 61, EGA_YELLOW = 62, EGA_WHITE = 63 };
enum line_styles {/* Line styles for get/setlinestyle */ SOLID_LINE = 0, DOTTED_LINE = 1, CENTER_LINE = 2, DASHED_LINE = 3, USERBIT_LINE = 4,/* User defined line style */ };
enum line_widths {/* Line widths for get/setlinestyle */ NORM_WIDTH = 1, THICK_WIDTH = 3, };
enum font_names { DEFAULT_FONT= 0,/* 8x8 bit mapped font */ TRIPLEX_FONT= 1,/* "Stroked" fonts */ SMALL_FONT= 2, SANS_SERIF_FONT = 3, GOTHIC_FONT= 4 };
#define HORIZ_DIR0/* left to right */ #define VERT_DIR1/* bottom to top */
#define USER_CHAR_SIZE0/* user-defined char size */
enum fill_patterns {/* Fill patterns for get/setfillstyle */ EMPTY_FILL,/* fills area in background color */ SOLID_FILL,/* fills area in solid fill color */ LINE_FILL,/* --- fill */ LTSLASH_FILL,/* /// fill */ SLASH_FILL,/* /// fill with thick lines */ BKSLASH_FILL,/* \\\ fill with thick lines */ LTBKSLASH_FILL, /* \\\ fill */ HATCH_FILL,/* light hatch fill */ XHATCH_FILL,/* heavy cross hatch fill */ INTERLEAVE_FILL,/* interleaving line fill */ WIDE_DOT_FILL,/* Widely spaced dot fill */ CLOSE_DOT_FILL, /* Closely spaced dot fill */ USER_FILL/* user defined fill */ };
enum putimage_ops {/* BitBlt operators for putimage */ COPY_PUT,/* MOV */ XOR_PUT,/* XOR */ OR_PUT, /* OR */ AND_PUT,/* AND */ NOT_PUT /* NOT */ };
enum text_just {/* Horizontal and vertical justification for settextjustify */ LEFT_TEXT= 0, CENTER_TEXT= 1, RIGHT_TEXT= 2,
BOTTOM_TEXT= 0, /* CENTER_TEXT= 1, already defined above */ TOP_TEXT= 2 };
#define MAXCOLORS 15
struct palettetype { unsigned char size; signed char colors[MAXCOLORS+1]; };
struct linesettingstype { int linestyle; unsigned upattern; int thickness; };
struct textsettingstype { int font; int direction; int charsize; int horiz; int vert; };
struct fillsettingstype { int pattern; int color; };
struct pointtype { int x, y; };
struct viewporttype { int left, top, right, bottom; int clip; };
struct arccoordstype { int x, y; int xstart, ystart, xend, yend; };
#ifdef __cplusplus extern "C" { #endif void far _Cdecl arc(int __x, int __y, int __stangle, int __endangle, int __radius); void far _Cdecl bar(int __left, int __top, int __right, int __bottom); void far _Cdecl bar3d(int __left, int __top, int __right, int __bottom, int __depth, int __topflag); void far _Cdecl circle(int __x, int __y, int __radius); void far _Cdecl cleardevice(void); void far _Cdecl clearviewport(void); void far _Cdecl closegraph(void); void far _Cdecl detectgraph(int far *__graphdriver,int far *__graphmode); void far _Cdecl drawpoly(int __numpoints, int far *__polypoints); void far _Cdecl ellipse(int __x, int __y, int __stangle, int __endangle, int __xradius, int __yradius); void far _Cdecl fillellipse( int __x, int __y, int __xradius, int __yradius ); void far _Cdecl fillpoly(int __numpoints, int far *__polypoints); void far _Cdecl floodfill(int __x, int __y, int __border); void far _Cdecl getarccoords(struct arccoordstype far *__arccoords); void far _Cdecl getaspectratio(int far *__xasp, int far *__yasp); int far _Cdecl getbkcolor(void); int far _Cdecl getcolor(void); struct palettetype far * far _Cdecl getdefaultpalette( void ); char * far _Cdecl getdrivername( void ); void far _Cdecl getfillpattern(char far *__pattern); void far _Cdecl getfillsettings(struct fillsettingstype far *__fillinfo); int far _Cdecl getgraphmode(void); void far _Cdecl getimage(int __left, int __top, int __right, int __bottom, void far *__bitmap); void far _Cdecl getlinesettings(struct linesettingstype far *__lineinfo); int far _Cdecl getmaxcolor(void); int far _Cdecl getmaxmode(void); int far _Cdecl getmaxx(void); int far _Cdecl getmaxy(void); char * far _Cdecl getmodename( int __mode_number ); void far _Cdecl getmoderange(int __graphdriver, int far *__lomode, int far *__himode); unsigned far _Cdecl getpixel(int __x, int __y); void far _Cdecl getpalette(struct palettetype far *__palette); int far _Cdecl getpalettesize( void ); void far _Cdecl gettextsettings(struct textsettingstype far *__texttypeinfo); void far _Cdecl getviewsettings(struct viewporttype far *__viewport); int far _Cdecl getx(void); int far _Cdecl gety(void); void far _Cdecl graphdefaults(void); char * far _Cdecl grapherrormsg(int __errorcode); void far _Cdecl _graphfreemem(void far *__ptr, unsigned __size); void far * far _Cdecl _graphgetmem(unsigned __size); int far _Cdecl graphresult(void); unsigned far _Cdecl imagesize(int __left, int __top, int __right, int __bottom); void far _Cdecl initgraph(int far *__graphdriver, int far *__graphmode, char far *__pathtodriver); int far _Cdecl installuserdriver( char far *__name, int huge (*detect)(void) ); int far _Cdecl installuserfont( char far *__name ); void far _Cdecl line(int __x1, int __y1, int __x2, int __y2); void far _Cdecl linerel(int __dx, int __dy); void far _Cdecl lineto(int __x, int __y); void far _Cdecl moverel(int __dx, int __dy); void far _Cdecl moveto(int __x, int __y); void far _Cdecl outtext(char far *__textstring); void far _Cdecl outtextxy(int __x, int __y, char far *__textstring); void far _Cdecl pieslice(int __x, int __y, int __stangle, int __endangle, int __radius); void far _Cdecl putimage(int __left, int __top, void far *__bitmap, int __op); void far _Cdecl putpixel(int __x, int __y, int __color); void far _Cdecl rectangle(int __left, int __top, int __right, int __bottom); void far _Cdecl restorecrtmode(void); void far _Cdecl sector( int __X, int __Y, int __StAngle, int __EndAngle, int __XRadius, int __YRadius ); void far _Cdecl setactivepage(int __page); void far _Cdecl setallpalette(struct palettetype far *__palette); void far _Cdecl setaspectratio( int __xasp, int __yasp ); void far _Cdecl setbkcolor(int __color); void far _Cdecl setcolor(int __color); void far _Cdecl setfillpattern(char far *__upattern, int __color); void far _Cdecl setfillstyle(int __pattern, int __color); unsigned far _Cdecl setgraphbufsize(unsigned __bufsize); void far _Cdecl setgraphmode(int __mode); void far _Cdecl setlinestyle(int __linestyle, unsigned __upattern, int __thickness); void far _Cdecl setpalette(int __colornum, int __color); void far _Cdecl setrgbpalette(int __colornum, int __red, int __green, int __blue); void far _Cdecl settextjustify(int __horiz, int __vert); void far _Cdecl settextstyle(int __font, int __direction, int __charsize); void far _Cdecl setusercharsize(int __multx, int __divx, int __multy, int __divy); void far _Cdecl setviewport(int __left, int __top, int __right, int __bottom, int __clip); void far _Cdecl setvisualpage(int __page); void far _Cdecl setwritemode( int __mode ); int far _Cdecl textheight(char far *__textstring); int far _Cdecl textwidth(char far *__textstring);
/***** graphics drivers *****/
int _Cdecl registerbgidriver(void (*driver)(void)); int far _Cdecl registerfarbgidriver(void far *__driver);
/* !! These "functions" are NOT user-callable !! */ /* !! They are there just so you can link in graphics drivers !! */
void _Cdecl CGA_driver(void); void _Cdecl EGAVGA_driver(void); void _Cdecl IBM8514_driver(void); void _Cdecl Herc_driver(void); void _Cdecl ATT_driver(void); void _Cdecl PC3270_driver(void);
extern int far _Cdecl CGA_driver_far[]; extern int far _Cdecl EGAVGA_driver_far[]; extern int far _Cdecl IBM8514_driver_far[]; extern int far _Cdecl Herc_driver_far[]; extern int far _Cdecl ATT_driver_far[]; extern int far _Cdecl PC3270_driver_far[];
/***** graphics fonts *****/
int _Cdecl registerbgifont(void (*font)(void)); int far _Cdecl registerfarbgifont(void far *__font);
/* !!These "functions" are NOT user-callable, !! */ /* !! they are there just so you can link in fonts !! */
void _Cdecltriplex_font(void); void _Cdecl small_font(void); void _Cdecl sansserif_font(void); void _Cdecl gothic_font(void);
extern int far _Cdecltriplex_font_far[]; extern int far _Cdecl small_font_far[]; extern int far _Cdecl sansserif_font_far[]; extern int far _Cdecl gothic_font_far[];
#ifdef __cplusplus } #endif
#endif
|
| | 2 answer | Add comment |
|
| need railway reservation system software in VB +Oracle Ajay_iimt 05:55:10 |
| | hi all
i know this is c forum but still i am posting this bcoz its very urgent.i need railway reservation system software so if any one hav this in soft copy than plz mail me its very urgent or if anyone knows the link from where i can get the code of this than plz send me .
Its very urgent i need help from u all.
waiting for ur reply
ajay
------------------------ Yahoo! Groups Sponsor --------------------~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/EbFolB/TM --------------------------------------------------------------------~->
|
| | 5 answers | Add comment |
Sunday, 18 January 2009
|
| 3D SERVICES Guest 09:16:27 |
| | - Our company 'studio FOKUSS' offering 3d services like 3d Animation, product modeling, product 3d animation, character animation, 3d Walkthroughs, visualisations, fly throughs, CGI, 3d Modeling, 3d Rendering, Outsource 3D Architectural Animation, 3d graphics Industry 3d modeling.
Want to get a quote - for our 3d services? Contact us at sandijs@3d-sketchup.com Or visit our website for details. www.3d-sketchup.com
|
| | Add comment |
Tuesday, 13 January 2009
|
| Borland C++ 3.1 compiler ÷Nc⿠10:50:02 |
| | I need help. I write asm files and then I compile it to convert .obj files with Borland C++ 3.1. After that process I write my C programs . My main aim calling fonksiyon that is written asm from C. After that I compile .obj files and . c files together. When I make run or build all there is an error message like below:
Cannot find filter TASM2MSG
What should I do to solve this problem ?
Thanks in advance .
÷Nc⿠oncukaya@hotmail.com
|
| | 3 answer | Add comment |
Friday, 19 December 2008
|
| Borland Builder 6 compile problem with uxtheme.h Guest 08:25:46 |
| | When I try to compile the following program with Borland Builder 6 (I have update 4 installed)
#include <windows.h> #include <uxtheme.h>
int main(int /*argc*/, char ** /*argv*/) { return 0; }
I get the following error messages:
C:\Work\tmp>bcc32 main.cpp Borland C++ 5.6.4 for Win32 Copyright (c) 1993, 2002 Borland main.cpp: Error E2146 C:\Program Files\Borland\CBuilder6\Include\uxtheme.h 176: Need an +identifier to declare Error E2146 C:\Program Files\Borland\CBuilder6\Include\uxtheme.h 546: Need an +identifier to declare *** 2 errors in Compile ***
I can solve the compile problem if I apply the following patch to uxtheme.h:
@@ -173,7 +173,7 @@ TS_MIN, // minimum size TS_TRUE, // size without stretching TS_DRAW, // size that theme mgr will use to draw part -}; +} foo_themesize; //------------------------------------------------------------------------- // GetThemePartSize() - returns the specified size of the theme part // @@ -543,7 +543,7 @@ PO_CLASS, // property was found in the class section PO_GLOBAL, // property was found in [globals] section PO_NOTFOUND // property was not found -}; +} foo_propertyorigin;
//----------------------------------------------------------------------- // GetThemePropertyOrigin()
Is this a known problem and is there a workaround available that does not require changing system headers? Some of our customers want to compile our sourcecode with Borland Builder 6 and I wonder what we should tell them to resolve the compile problem (or if we are able to fix the compile problem in our code without the need for them to do anything).
Best regards, Rainer
|
| | 2 answer | Add comment |
Sunday, 30 November 2008
|
VivaMP for OpenMP Thunderbolt 13:20:48 |
| | OOO “Program Verification Systems” Company informs you that the first beta-version of static C/C++ code analyzer VivaMP has been released. VivaMP is meant for diagnostics of parallel errors in software products based on OpenMP technology. The fact that modern compilers where parallel programming technology OpenMP support is implemented provide rather weak error diagnostics in OpenMP code makes no secret. Moreover, it's easy to make an error working with OpenMP. VivaMP is ready to repair this gap and to offer high-quality diagnostics for OpenMP usage.
VivaMP software product is an add-in module (AddIn) for Microsoft Visual Studio 2005/2008 development environment. Being added in the environment, this analyzer is able to verify code of applications written in C and C++ languages, in which OpenMP paralleling is used. The analyzer is able to find the errors which were made because the developers master OpenMP syntax insufficiently or if the principles of work with OpenMP are misunderstood. Errors of incorrect work with shared memory, errors of synchronization and errors of performance can also be discovered.
Unlike dynamic tools, static code analyzer VivaMP doesn't require starting of a program, that's why its diagnostics is always stable, precise and doesn't depend upon “the environment” in which the program being developed starts.
Though the present beta-version is called “beta”, still it is a full-fledged software product. Its only difference from the future release is the absence of help system. The help system is sure to be fully present in the release.
More...: http://www.viva64.com/vivamp-tool/ |
| | Add comment |
Thursday, 16 October 2008
|
| [ROOT] Dear friend Mr Abba Dosama 22:23:20 |
| | Dear Sir/Madam,
I am the confidant of the ex-president of thePhilippines (Mr. Estrada) who was removed from power as you may know. He has secretly informed me tocontact you and to liaise with you to invest the total sum of {$9M} (Nine Million Dollars) which he deposited in a Bank in (Valencia Spain) during his tenure. Now the procedures are as follows, that you will be given the contact of the Bank so that you will contact them to open an online account where the money will be transferred into from his account in that Bank since he can not come out in the open to use this money. After you open this account, I will order the Bank in a written form to transfer the money into your own account after which you can then transfer it to some other account in your place or else where for sharing. Upon request by you, I can send to you the certificate of deposit of this money for your own assurance. We are willing to give to you 25% of the total sum and 5% for any expenses incurred during this transaction for all the anticipated help from you hoping that it will cover all your expenditures before and after the transaction. However, we will desire that you will help us invest our share till we will be free to meet you up in your country for further arrangements, Please if this proposal is Ok by you, please write me back via this address( dozamabba@yahoo.com [mailto:dozamabba@yahoo.com]) so that I can give to you all information?s. Regards. Dr. Dozamil Abbaphantilo
----------------------------------------------------------------------- Encuentra tu casa rápida y cómodamente. Miles de viviendas te están esperando en http://www.portae.com [http://banner.eresmas.com/adclick/CID=000064c2c858344d00000000/site=ERESMAS/area=ERESMAS.CORREO/aamsz=PIE_WEBMAIL]
|
| | 1 answer | Add comment |
Wednesday, 1 October 2008
|
| Error: Too much global data defined in file Morosh 10:55:56 |
| | Hello: I made a C++ program for accountancy purposes, it's DOS style, I compile using bcc.exe of Borland C++ v5.2. I choose the "large model". Now I have this new error "Error: Too much global data defined in file" saying that I have a lot of global variables. I counted the space required for my global data, it didn't exceed 64k. my command line is: bcc -4 -ff -N -ml e:\my_data\prog\tc\%1.cpp > compc.rpt In the same time, I have a lot of message'strings, but with the large model there is 1MB of data space.
Is there any solution for that? Thanks
Morosh
|
| | 12 answers | Add comment |
Thursday, 4 September 2008
|
| SYSINIT.OBJ George Adamopoulos 01:40:54 |
| | When Iam trying to compile an empty project, Iam receiving a message from the linker:
[Linker Error] Unable to open file 'SYSINIT.OBJ'.
Can anyone give me a hint how to overlap this problem ?
|
| | 2 answer | Add comment |
Tuesday, 2 September 2008
|
Please any one help me regarding PostGreSQL with C++ yuvi 10:02:00 |
| | Hi friends,
I am new to Database PostgreSQL, I wanted to know the basic steps to able to write and execute the C++ program to connece to PostgreSQL database,
I need a help in basic requirements like Library, execution process and API's ( if possible please help me regarding resource links, where can i get these information) |
| | Add comment |
Thursday, 10 July 2008
|
| press ENTER in Visual C++ Kurniawan_moonlight 15:46:38 |
| | hello every one, i just started to learned using visual C++ 6.0 after i learned C and C++ using Borland C 3.1 it's quite almost the same command at all
but, i'm having some problem, if i run my application and i press ENTER buton my Application is always EXIT. i've tried to use OnKeyDown function and i overide it to become :
//OnKeyDownFunction
int i; i = int(nChar); if ( i == 0 ) i = int(nChar);
if ( i == 13 ) // ENTER button is pressed DoNotExit();
//End Fucntion
that's all.. but it's still don't work.. i wonder what's wrong.. any help would be appreciated. thank you before.
------------------------ Yahoo! Groups Sponsor --------------------~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/KIlPFB/vlQLAA/TtwFAA/EbFolB/TM --------------------------------------------------------------------~->
|
| | 9 answers | Add comment |
Saturday, 28 June 2008
|
| how to open.bgi game files Kiran Kumar 11:50:09 |
| | hello I have a small doubt how to open the .bgi game files.
---------------------------------------------------------------------
How much free photo storage do you get? Store your friends n family photos for FREE with Yahoo! Photos. http://in.photos.yahoo.com
To unsubscribe, send a blank message to <mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org>.
---------------------------------------------------------------------
Yahoo! Groups Links
* To visit your group on the web, go to: http://groups.yahoo.com/group/c-prog/ [http://groups.yahoo.com/group/c-prog/]
* To unsubscribe from this group, send an email to: c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org [mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org?subject=Unsubscribe]
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service [http://docs.yahoo.com/info/terms/].
|
| | 3 answer | Add comment |
Friday, 9 May 2008
|
| New problem Marcos A Perelmuter 23:51:28 |
| | i am having problems with modal dialog box. In my main window there is a button that invokes a second box. I created the class "mySecondDialog" that inherits from TDialog, so i can use Execute() to create a modal dialog box. When I press the button, it runs a function that: 1) creates a pointer to an object of the type "mySecondDialog" mySecondDialog* MySecondDialog; 2) Executes the second dialog: MySeconDialog->Execute();
For my surprise, there is not modal dialog at all. The program keeps on creating the second dialog as many times as i press the button (modeless).
I don't know what am i doing wrong. I am using BCC++502 hosted in Win98.
Appreciate any help.
Thanks in advance, Marcos
|
| | 7 answers | Add comment |
Thursday, 8 May 2008
|
| OWLNEXT CBuilder 6 Ronald Praver 12:24:27 |
| | URGENT
I am currently working on CBuilder 5. My project is an ongoing one for the past 7 years. It started on BCW and we migrated to CBuilder when it came out. The project is now very dependent on the OWL framework and now also VCL's. We also use the Classlibs (ie TArray's Bags Maps ect..) heavily. I need to hear from someone that has successfully moved ALL of OWLNEXT INCLUDING Classlibs to this platform.
Please let me hear from someone ASAP.
Thanx
|
| | 2 answer | Add comment |
Tuesday, 15 April 2008
|
| dclite.bpl problem Stephen 10:59:23 |
| | Hi all
I hope someone can help me. I have been using C++Builder 6 for a couple of years on XP Pro without any problems. I had to do a reformat and reinstall but now I get access violation when I try to access the project options, something to do with not being able to load dclite.bpl.
Any ideas would be great. Thanks Stephen
|
| | 5 answers | Add comment |
Tuesday, 18 March 2008
|
| help:sine function(no usage of math.h) Rakesh V. 17:15:38 |
| | hi,can anyone help in correcting this function asap:- double mysin(double x) { int i=0; float term=x; float sinx=0; for(i=0;i<=10;i=i+2) { sinx=sinx+term; term=term*((-x*x)/(i+2)*(i+3)); } return sinx; }
---------------------------------------------------------------------
Do you Yahoo!? Yahoo! Mail [http://us.rd.yahoo.com/mail_us/taglines/50x/*http://promotions.yahoo.com/new_mail/static/efficiency.html] - 50x more storage than other providers!
To unsubscribe, send a blank message to <mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org>.
Yahoo! Groups Sponsor
ADVERTISEMENT click here [http://us.ard.yahoo.com/SIG=129mn7cf4/M=295196.4901138.6071305.3001176/D=groups/S=1705006788:HM/EXP=1096480269/A=2128215/R=0/SIG=10se96mf6/*http://companion.yahoo.com]
---------------------------------------------------------------------
Yahoo! Groups Links
* To visit your group on the web, go to: http://groups.yahoo.com/group/c-prog/ [http://groups.yahoo.com/group/c-prog/]
* To unsubscribe from this group, send an email to: c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org [mailto:c-prog-unsubscribe-hHKSG33TihhbjbujkaE4pw@public.gmane.org?subject=Unsubscribe]
* Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service [http://docs.yahoo.com/info/terms/].
|
| | 1 answer | Add comment |
Thursday, 21 February 2008
|
| Internal Compiler Error HELP! Erik Sâ??rensen 11:21:49 |
| | I am beeing shown this error message:
[C++ Fatal Error] F1004 Internal compiler error at 0xcaff8e with base 0xc10000
ever time I try to compile ANYTHING in C++ Builder 6 enterprise. And it is driving me nuts! I hope someone out there can help me soon because I am on a deadline and in a hurry.
Erik.
|
| | 1 answer | Add comment |
Monday, 19 November 2007
|
| Where to get BC++ 3.1, 4.5, 5.0x (for DOS code) ? Robert 09:55:52 |
| | I'm looking for a Borland C++ compiler which can create 16bit DOS code. Are some of the above available free (for edu) somewhere? Or where can one get commercial packages?
Robert
|
| | 2 answer | Add comment |
Tuesday, 13 November 2007
|
| share probalm Guest 06:32:07 |
| | hi friends, if you have any problam in c/c++.you can ask and share your problam me in mannewar_pankaj@yahoo.co.in. pankaj |
| | Add comment |
Monday, 17 September 2007
|
| Re: Help needed on a Banking solution source code Nico Heinze 08:47:50 |
| | --- In c-prog-hHKSG33TihhbjbujkaE4pw@public.gmane.org, "kdships" <kdships@y...> wrote:>
Hi guys,> I need help on this program. I have been trying to debug this code > and can't seem to get rid of the error messages. Please email me if > you can crack this. The source code is just below his line. Thanks <snip>
Hi guy(?),
first it would help if you told us _what_ error messages you get and when. Due to your description I suppose you're talking about compiler errors, but this is only a guess. Guesswork is useless in programming, so please tell us exactly.
Also it would be helpful to yourself if you try to write ANSI compatible code. Typical counterexample is your "main()" function; void main() is no standard conformant prototype.
Next point is that it makes sense to split up such code into different source files each of which is responsible for one particular sort of tasks. This also will help you to debug the code piece by piece. The keyword here is modular programming.
Lastly, debugging usually (granted, it's a matter of definition) means the process of finding errors in a running program. However, to me it seems you did not even get to that stage as you have compiling trouble. So the word "debugging" in the subject line of your post is misleading. Don't get me wrong: my main cause to mention is _not_ to behave like a pernickety school teacher but to help you to develop a correct and sharp language when talking to other programmers. The more exact your language is (no matter whom you talk to), the easier it will be to understand exactly what you mean and to reply correctly and in a useful manner.
Regards, Nico
------------------------ Yahoo! Groups Sponsor --------------------~--> Most low income households are not online. Help bridge the digital divide today! http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/EbFolB/TM --------------------------------------------------------------------~->
|
| | 1 answer | Add comment |
Thursday, 16 August 2007
Monday, 6 August 2007
|
Issues of porting C++ code on the 64-bit platform Thunderbolt 16:55:00 |
| | Our team is work on the subject of 64-bit developing. We write new article for 64-bit developers: 20 issues of porting C++ code on the 64-bit platform.
Link to PDF: http://www.viva64.com/articles/20%20issues%20of%20porting%20C++%20code%20on%20the%2064-bit%20platform.pdf
We hope the article has been useful for you and will help to simplify the development and debugging of 64-bit applications. We will be glad to receive your opinions, remarks, corrections, additions and will surely include them in the next version of the article.
Annotation. Program errors occurring while porting C++ code from 32-bit platforms on 64-bit ones are observed. Examples of the incorrect code and the ways to correct it are given. Methods and means of the code analysis which allow to diagnose the errors discussed, are listed.
In the article you will learn about: •typical errors of programming which occur on 64-bit systems; •the reasons for appearing of these errors and the corresponding examples; •methods of correcting the listed errors; •the review of methods and means of searching errors in 64-bit programs.
The given information will allow you: •to learn the differences between 32-bit and 64-bit systems; •to avoid errors while writing the code for 64-bit systems; •to speed up the process of migration of a 32-bit application on the 64-bit architecture with the help of the great reducing of the time of debugging and testing; •to forecast the time of porting the code on the 64-bit system more accurately and seriously.
Article is observing the type errors which occur while porting programs on the 64-bit architecture. List of themes: •Off-warnings •Use of the functions with a variable number of arguments •Magic numbers •Storing of integers in double type •Bit shifting operations •Storing of pointer addresses. •Memsize types in unions •Change of an array type •Virtual functions with arguments of memsize type •Serialization and data exchange •Bit fields •Pointer address arithmetic •Arrays indexing •Mixed use of simple integer types and memsize types •Implicit type conversions while using functions •Overload functions •Data alignment •Exceptions •Explicit type conversions
The diagnosis of the errors occurring while porting 32-bit programs on 64-bit systems is a difficult task. The port of a not very quality code written without taking into account peculiarities of other architectures, may demand a lot of time and efforts. We pay some attention to the description of methods and means which may simplify this task. ---- Viva64 team, www.Viva64.com
|
| | 1 answer | Add comment |
Tuesday, 31 July 2007
|
| i need help to make this program.. Guest 14:35:16 |
| | Im a SecOnd year college student taking up Information technology course.. and Computer programming is one of my major subjects.. but yet im not that good in turbo c++.. can you help me with my problem.. i have to program functions that wil display stacking and popping of boxes and the going up and down of the numbers inside those boxes.. |
| | Add comment |
|