

alogrep
Members-
Content Count
179 -
Joined
-
Last visited
Everything posted by alogrep
-
Hi Is the BDE avaialble for version 10.4? If yes, where could I download it?
-
Hi I get the error in 10.4 (I was not getting in 10.2). I put "Vcl.dbgrids" in Unit scope name, but it did not solve the problem. Anybody knows what else am I missing? Thanks
-
Never mind. I only needed it for some error code constants used with the the nexusdb errror codes. I replaced them with their correspondent numeric values.
-
emailx45. ref delete .dproj That seems to work. I did it with a package and it fixed it. Thanks. But now I am stuck with the absence of BDE for 10.4.
-
David, yes. But I do have "use compiled dcu's" checked. I have no idea why the the bds is trying to compile that unit
-
If I start a fresh vcl app, and add a dbgrid to the unit, it compiles fine. I suppose then it cannot besomething in the Tools-Language-Delphi->Library which is common to all projects. What else could it bewrong in this specific project?
-
David Hefferman, The error is only one line (above it only hints and a warning) [dcc32 Fatal Error] .. F2063 Could not compile used unit "dbgrids.pas"
-
Is possible to examine the library-> search path when IDE not start?
alogrep posted a topic in Delphi IDE and APIs
Hi. Where is the tools->library->search path stored? Is it possible to examine it outside the IDE (mine does not start)? -
Is possible to examine the library-> search path when IDE not start?
alogrep replied to alogrep's topic in Delphi IDE and APIs
I guess this is the problem then: mising libary entries in my registry. -
Is possible to examine the library-> search path when IDE not start?
alogrep replied to alogrep's topic in Delphi IDE and APIs
Thanks. But registry (windows 7) does not have the "library" entry. In any case I want to examin the FILE where the library information si stored. The file, not the registry. If at least someone knows the file name, i can look for it. -
Tokyo BDS.EXE not start. Please Help. "Cannot find the section that owns the Delay Import DLL Name"
alogrep replied to alogrep's topic in Delphi IDE and APIs
I ran Dependency Walker and it shows "Cannot find the section that owns the Delay Import DLL Name" for bds.exe. Any help? -
Hi. I did something really stuypid. A few months ago I installed this extension. Now I want to remove it but I cannot recall where I wrote the instructions to do it. I remember that one of the installation steps was to back up the original exceptiondiag250.dbg and then rename exceptiondiag250.jdbg to exceptiondiag250.dbg. But I seem to recall there were other steps involved. Does anybody know the name of this extension so I can download it again and read the instructions?
-
Hi everybody. Happy New Year. Suddenly selecting Call Stack on en error, the window does not show the unit souce lines , but it shows the CPU . I read in a post that to avoid this I should un-check the "Use debug dcu's. I did that but it did not solved the problem. What shoud I do do see the unit line where the error happens? Thanks
-
Thanks everybody, but none of the suggestions worked. I noticed I had in project source Vcl.thmes and Vcl.Styles. I eliminated "Vcl" from them and now I can see my unit source line that cause the error.
-
Happy New Year. I check debug.dcus. I rebuilt. I checked the library path and also the OS path. No success. I wonder why the call stack stops on the Vcl.Forms unit which is in tokyo\source\vcl directory when this path is not in the delphi library path nor in the OS path, but it does not show my own unit (a database module) that causes the error (this is in a path defined in the Tools->library).
-
Hi. Delphi Tokyo. I get thie compiler message [dcc32 Error] PngImageList.pas(385): E2010 Incompatible types: 'Vcl.Imaging.pngimage.TPngImage' and 'Vcl.Imaging.pngimage.TPngImage' I can't figure out what it means and how to go about fixing it. Anybody please can help?
-
Thanks everybody. I had to re-create the project dpr from scratch. It is not th first time. There are too many things somewhat hidden in too many places . I can't see any difference in the paths now (at least where I can find them defined) from before. Howevber, it works
-
Hi. I have a program that creates a thread for each request. Some functions in the thread are involving printing to the standard Printer. If I do Printer.Canvas.lock; Printer.BeginDoc .... .... Printer.Enddoc; Printer.Canvas.unlock; Would it be thread safe?
-
Unfortunately I had not taken note of that. But know the whole Delphi is gone bananas. I build and install a Package but it does not show in the pallete. I get all kinds of other error. Like "cannot complie used unit printers". I need to keep the source code compatible with XE+ and before XE. So I cannot put Vcl.printers (or otherwoise the non XE compiler would not work)
-
No. It's a huge project and I can't compile it. It used to compile fine .
-
Hi, I have a component with is derived from the Tcomponent class and is basically a table with cells. Each cells contains a text, a Tcolor and a TObject (which is always a TObject(integer). Randomly I an AV error and when I check on the component, the component is NIL. I cannot trace back to where/what overwrote the memory. Madexcept does not catch the AV even with the buffer overrun checked. My endless Google search shows me lots of memory LEAKS but very little on memory overwrite. Anybody knows of a good tool that would help catch the overwrite excacly where and when it happens? Thanks
-
Thanks Remy. The tables are created, populated and freed dynamically. Te component class is Tslim. Then according to what I need I do table1:=Tslim.Create; table2:=Tslim.create etc. Is it possible to put a databreakpoint on a class as opposed to a variable? How?
-
Uhm. The error happened, but Fastmm4 tells me all about memory leaks, nothing about memory overwrite. It shows a complete list of allocations for the table cells, and all allocations are shown as memory leaks because the table is somehow overwritten (and becomes NIL), and therefore the Destructor is not called. It gives me no clue as to what function exactly overwrite the table.
-
Thanks. Waiting for the error to occur, to see if fastmm catches it.