Sometimes the D2006 IDE tries to be too smart for its own good. We had been wondering why the Title, Icon and so forth on the Application pane of Project Options had all been disabled since we (finally) ported our projects over from D6. Well it turns out that that happens if you don't have Application.Initialize in your project source. What our applications did have was:
begin RunApplication; end. with RunApplication being a common procedure: procedure RunApplication; begin Application.Initialize; <a huge amount of stuff that's not worth going into now, but including Application.Run etc.> end; But that's not good enough for D2006. Cheers, Carl
_______________________________________________ Delphi mailing list Delphi@ns3.123.co.nz http://ns3.123.co.nz/mailman/listinfo/delphi