I have been up all nite,trying to figure this out (6:21am).
Well, I have gotten this far with compile myForm.d .

C:\D\dmd2\windows\vmPrograms\myForm>call dmd.exe C:\D\dmd2\windows\vmPrograms\my
Form\myForm.d -D -quiet -Dddocdir -H
C:\D\dmd2\windows\vmPrograms\myForm\myForm.d(1): Error: module all is in file 'dfl\all.d' which cannot be read
import path[0] = C:\D\dmd2\windows\bin\..\..\src\phobos
import path[1] = C:\D\dmd2\windows\bin\..\..\src\druntime\import

Press any key to continue . . .

I have searched my entire computer,
but there is no file named: dfl.all .
There is an all.d ,
but i think it is saying above, that all.d is corrupt.
Can anyone help me compile this puppy?

Here is the code:

import dfl.all;

int main()
{
   Form myForm;
   Label myLabel;

   myForm = new Form;
   myForm.text = "DFL Example";

   myLabel = new Label;
   myLabel.font = new Font("Verdana", 14f);
   myLabel.text = "Hello, DFL World!";
   myLabel.location = Point(15, 15);
   myLabel.autoSize = true;
   myLabel.parent = myForm;

   Application.run(myForm);

   return 0;
   }

Thanks...vm

Reply via email to