|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
AT&T devCentral & BlackBerry(r) Webcast Series: BlackBerry and GPS -Build Location Awareness into your BlackBerry Applications, July 10th-1:00PM EST. Register Today!
|
|
#1
|
|||
|
|||
|
Executable without ouput screen - just a form
I've begun to go beyond pascal and utilise the delphi components to generate a GUI.
However when executing i still have the blank black output screen aswell as my form. Why is this? Can i stop this happening? Thanks |
|
#2
|
|||
|
|||
|
This post has no meaningful context.
Please try and formulate a more informative request. Clive |
|
#3
|
|||
|
|||
|
OK
Say i open delphi. (i'm using delphi 7) Select New Application or Unit. I add vcl components to the form and user code to the associated unit to perform certain tasks and i build. When i run the application my form-based GUI opens to which i can interact and run procedures which invoke my user code but i also have the black console output which is of no use. I want to stop this occuring. |
|
#4
|
|||
|
|||
|
The behavior you describe is not normal.
I assume it is the way you are setting up your project. Can you start by posting the source code for your project file? Clive |
|
#5
|
|||
|
|||
|
Quote:
Check the source of the .dpr file and make sure it doesn't have {$APPTYPE CONSOLE} in it The .dpr should look like program Project27; uses Forms, Unit29 in 'Unit29.pas' {Form29}; {$R *.res} begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TForm29, Form29); Application.Run; end. Cheers Taoh |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Delphi Programming > Executable without ouput screen - just a form |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|