Jump to content
Xtreme .Net Talk

divil

*Gurus*
  • Posts

    3026
  • Joined

  • Last visited

Everything posted by divil

  1. divil

    Kudos

    Thanks!
  2. The client side. And also there are security issues.
  3. MTSkull, Making a reference to an external assembly and creating a shortcut so you don't have to fully-qualify class names are two very different things.
  4. Had you considered looking at the key at the bottom of the page?
  5. When you copy and paste code from VS.NET to Word, formatting and colour is maintained. Maybe you could find a decent rtf-to-html converter and make use of it somehow, since pasting from Word to HTML gets hideous.
  6. Can you paste your declare for that API in VB.NET?
  7. Straight from the help: In Visual Basic 6.0, the PrevInstance property of the App object was used to determine if a previous instance of an application was running. There is no equivalent for this property in Visual Basic .NET; however, the following code can be used to test for a previous instance: ' Visual Basic .NET Function PrevInstance() As Boolean If Ubound(Diagnostics.Process.GetProcessesByName(Diagnostics.Process.GetCurrentProcess.ProcessName)) > 0 Then Return True Else Return False End If End Function
  8. I think he meant can you drop those other browsers on to a form through an ActiveX control and use their rengering engines to present data in your application?
  9. Windows Forms Controls can be embedded in web pages :)
  10. So what happens when the propertygrid is pointed at the first class?
  11. I'm looking at the code for that article, still not seeing a class embedded within a class?
  12. Check out Bob Powell's GDI+ faq. http://www.bobpowell.net/gdiplus_faq.htm
  13. A newline character on Windows is a carriage return plus a linefeed. Hence the System.Environment.Newline constant. If someone ports the framework to some other platform, a newline character may only be a carriage return or a linefeed on its own. vbCrLf will always be both. Having said that, anyone who ports the framework will almost undoubtedly be trying to be compatible with the Windows one, so they'll leave it as a carriage return and linefeed.
  14. We don't encourage this sort of thing here on the forum as it can be used for unsavoury purposes such as keyloggers. Anyone who wishes to help aewarnick with this can do so in private message.
  15. Which article are you talking about? I don't think either of my designer ones have a designer class inside the control class.
  16. That is correct. Does it work?
  17. http://www.xtremedotnettalk.com/showthread.php?s=&threadid=49950&highlight=animated
  18. If there was one, someone would probably have answered you the first time.
  19. Yeah, I disagree. Rewriting your code for .net is not a waste of time. You're perfectly free to go on using VB6 for your products, but if you want to use the (vastly) different vb.net it's only natural that you'll have to rewrite code. They're very different languages. I believe we've already established that the upgrade wizard is a steaming pile :)
  20. You need to specify a typeconverter for that class using the TypeConverter attribute. Make a very simple typeconverter class that just inherits from ExpandableObjectConverter. I gave someone an example of doing what you're trying to do before, try searching the forum for ExpandableObjectConverter.
  21. I remember the discussion well. I know how the design-time architecture works, and I knew control arrays at design time were a near impossibility because of it. I think I just left him to believe what he did after asserting so firmly that they would be included. I guess he made an angry call to ms after all :)
  22. You can remove a node then use the Insert method of its parent Nodes collection to specify the index for it to be inserted at, in the children.
  23. jfackler: There are no design time control arrays in VS.NET 2003.
×
×
  • Create New...