Hi
I am looking for a GIS viewer of some sort for
Delphi 2005.
I need to view a DWG (Caddie file) or DXF. Does anyone know of a component that is available?
Thanks
Johan Smith
Hi
I am trying to launch a custom help file from withing delphi with the following command:
Application.HelpFile := 'c:\temp\myhelp.hlp';
Application.HelpCommand(HELP_FINDER, 0);
Nothing seems to happen.
This code used to work in Delphi 6, but not in 2005.
Any suggestions would be...
Hi
I am trying to do the following in the uses clause of a form:
Uses
{$IFDEF X}
FormX,
{$ENDIF}
{$IFDEF Y}
FormY,
{$ENDIF}
other units.....;
Form X and FormY has the same name in Delphi - Let's say MyForm.
In other words, If I have a button on the main form of the...
Hi Everybody
I have a Log table that logs all transactions for all users of a system.
I have the following fields:
User Name : String
Transaction Time : TimeStamp
Action : String
How do I get the total number of transactions PER TRANSACTON TYPE let say for a month? For exampe:
User1 ...
Thanks Druer
You are the man!
I eventually got a sample working with the following code:
SELECT
T1.ProjRef,
SUM(T1.IT1) AS JanTotal,
SUM(T2.IT2) AS febTotal
FROM
(select ProjRef, sum(InvoiceTotal) as iT1 from ProjectActual
where
(YEAR(ProjectActual.SourceDocDate) = 2006) AND...
Thanks Druer
I tried your suggestion in a view just to test. In principle it works fine, creating the table with day, month, year, project refrence and amount spent.
My problem is still however to query out a value per project per month for the 12 months of the financial year. I need the...
Hi
I have a table containing predicted cashflow for a certain project for a certain date.
Example:
ProjNum|Date |Predicted amount|
1 |11/11/2005|2000 |
2 |01/01/2004|3000 |
Then I have a similar actual expenses table:
ProjNum|Date |Spent amount|
1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.