Questions tagged [codesite]
12 questions
5
votes
0 answers
Delphi RTTI Get Values from Record
looking for help with getting values from record to CodeSite. While i have record with basic values (int, string..) everything works okey.
But problem comes with arrays in record.
Surname : array[0..35] of WideChar
Name : array[0..25] of…

Milos Samek
- 81
- 3
4
votes
2 answers
CodeSite Logging From Delphi ISAPI
I have CodeSite Express, bundled with Delphi XE Enterprise. Right now I'm developing an ISAPI application in XE (I trace and debug using attach to process in XE - works fine) and I'd like to get some CodeSite messages out of my ISAPI application.…

Vector
- 10,879
- 12
- 61
- 101
2
votes
1 answer
CodeSite alternative for 64-bit C# development
I have used Raize CodeSite for years - first in Delphi and now in Visual Studio. I recently upgraded my development machine to a 64-bit OS. I was pleasantly surprised that everything just came up and worked - until I tried to use CodeSite in a C#…

bvanderw
- 1,065
- 2
- 12
- 20
2
votes
1 answer
CodeSite Categories and Threading
I'm experimenting with CodeSite Express bundled into Delphi XE. I want to use the Category feature like this:
CodeSite.Category := 'SomeCategory';
CodeSite.EnterMethod ('SomeMethod');
try
DoSomething;
finally
CodeSite.ExitMethod…

jpfollenius
- 16,456
- 10
- 90
- 156
2
votes
0 answers
Delphi application hangs in Application.Run
I have a Delphi 2007 application which has been working fine on most machines & Windows versions but now is exhibiting the following behavior for four customers.
The application briefly flashes a bit of UI(too quickly to read). It doesn't appear to…

Mark Wilsdorf
- 751
- 1
- 5
- 18
0
votes
0 answers
There is a mechanism for CodeSite Studio that prevents a user with the same license from seeing the messages of the execution of a program?
I need to restrict access to display messages generated by an executable. I noticed that when I shared this executable with a co-worker and when she ran it with CodeSite installed, she could see the messages generated by my test execution. I…
0
votes
0 answers
Wrong timestamp in Codesite logging
I am using Raize CodeSite to write log lines to from a Delphi desktop application to a separate log file.
All components are running on a single PC (application + Codesite)
The logging works fine, except for the date/time. The date/time which is…

JanKoder
- 1
0
votes
1 answer
CodeSite TimeStamp to DateTime
I am using CodeSite. In the raw log files, i see below TimeStamp format -- how do i convert this to Actual DateTime? What TimeStamp format is this?
This is not Epoch TimeStamp format.
I am trying to convert below TimeStamp to…

Amyn
- 83
- 1
- 2
- 10
0
votes
1 answer
How can we use the included CodeSite Express to obtain a stack trace in Delphi XE 5?
Is it possible to obtain a stack trace of an exception at runtime from the included CodeSite express? If so, does anyone have any experience with, or examples of, doing this?
Failing that, is there a way to achieve this with an open source…

reckface
- 5,678
- 4
- 36
- 62
0
votes
2 answers
Passing an interface to Codesite.Send in Delphi
I am unable to get CodeSite.Send to work with a variable declared as an interface. The compile time error is E2250 There is no overloaded version of 'Send' that can be called with these arguments.
How can I use interfaces with CodeSite?
Code…

Timothy Vogel
- 1,363
- 2
- 21
- 39
0
votes
1 answer
Any Enthusiast code development sites to ask for someone to develop a small app?
I know this site is a great source for code help and snippets but I was wondering if anyone knows of any good site or forums where someone can help develop a small app.
The idea behind this is I need to make an app that does some custom stuff with…

markdigi
- 1,242
- 6
- 15
- 26
-1
votes
1 answer
How to trace the creation of controls/components on program startup?
In the DPR file of my Delphi XE2 VCL Form project, I have this code:
CodeSite.Send('DPR Before CreateForm');
Application.CreateForm(TformMain, formMain);
And at the start of the FormCreate event handler this code:
procedure…

user1580348
- 5,721
- 4
- 43
- 105