Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. erithracus

    Version info

    Hello Chip, Thanks for the info! Jan
  2. erithracus

    Version info

    Hello all, Is it possible to have the version info of an application which is found in AssemblyInfo.cs. printed on the screen. I.o.w. is it possible to retrieve Version info from AssemblyInfo.cs at runtime? TIA Jan
  3. erithracus

    Syntax, or more than that?

    Brian, >LORD lord = new LORD;< I would add () to the statement: LORD lord = new LORD(); will give you less errors. As for the other points in your question. What you want is possible and not too difficult But you will have to change the startpoint of your application, by changing the start...
  4. erithracus

    How to make a combobox un-editable

    Hello Tss, Set DropDownStyle in the property window to DropDownList HTH, Jan
  5. erithracus

    Problem using WMF file in picturebox

    Just to let the people know who come across the same problem. With the aid of Microsoft a workaround was found. It appeared to be a bug in VS.NET. When a WMF file is serialized it is being saved as a bitmap. Instead of casting it to a metafile it should be casted to a bitmap. Changing...
  6. erithracus

    Looking for a free FTP class library for .NET

    Gicio, Look at www.gotdotnet.com One of the most frequent downloaded samples is a FTP server HTH, Jan
  7. erithracus

    Problem using WMF file in picturebox

    Hello, When I add a WMF file to a picturebox, the following code is generated: this.pictureBox1.Image = ((System.Drawing.Imaging.Metafile)(resources.GetObject(&quot;pictureBox1.Image&quot;))); When the application runs, an invalid cast exception rises. Apparently the result of...
  8. erithracus

    Registry problem

    Chip, Thanks for thinking with me. The problem is solved now. It appeared to be related to a wrong use of the Registry class. Where I did: Registry.LocalMachine.CreateSubkey(mykey); Registry.LocalMachine.SetValue(mykey,&quot;blabla&quot;); I should have done: RegistryKey regkey =...
  9. erithracus

    Registry problem

    Hello, The C# application I am developing writes several issues using the Registry classes, to the registry. These issues are retreived later. Apparently this works fine. If I close the application and restart it again, the correct values are retreived from the Registry. However the nest time I...
  10. erithracus

    Formatting labels

    I am using the .NET version of CR. which is integrated in Visual Studio.NET. I guess this is a full blown crystal reports version. It is definitely not a design component to be used in a VB environment. I am not certain however whether they ported the full functionality of the 'normal' CR to the...
  11. erithracus

    Formatting labels

    Hello, When creating labels in CR for .NET I use the wizard to set the width and height of the labels. Afterwards I want to change certain properties, but I cannot find a way to adjust width, height of the labels and topmargin and leftmargin of the page itself. How do I do this? TIA, Jan
  12. erithracus

    runtime error 20567 &quot;page header/footer is larger than page&quot;

    I am afraid I can not be of much help because I am stuck with the same problem. Tha application I am working uses CR for .NET and needs to print labels. When the labels are printed an exception is generated with the message: Error in File <path\filename>: Page header or footer longer than a...

Part and Inventory Search

Back
Top