Search results for query: *

  1. Q

    Access VB.Net DLL from VBScript / ASP

    although I think the .NET does not use GUID's but ClASS ID's Instead.
  2. Q

    Access VB.Net DLL from VBScript / ASP

    I'm not a pro but think I can offer something. Can't you add a reference from ASP to your DLL. Then the VBScript uses a GUID that you can search for in the windows registry. Goto several websites that use scripts and view source and look for an object declared with a GUID thats how you use...
  3. Q

    How good do servers running ASP do?

    I was wondering how good do servers running ASP do with a lot of people on at once. Would you have to lessen your coding for the servers to keep up? Or use alot of scripts. that makes another question of mine. How do the scripts work exactly. Do you download the text and the browser compiles the...
  4. Q

    I'm confused on vb.net and c#

    C# or VB.NET Is'nt the C programming language nessary in order to create windows addins. Like If you want to extent the windows media player like visualizations or menu items. Is'nt this a task VB is'nt going to handle? I just switched from VB to C# because I found out XP was created with C...
  5. Q

    Download Visual Studio Express 2005 Free

    Download Visual Basic,Visual C#,Visual C++, Visual Web development Free till november 2006 at microsoft. go to this link file is 60 MB without MSDN Help included MSDN help is 400 MB http://msdn.microsoft.com/vstudio/express/default.aspx
  6. Q

    How to hide a form and show it again from another form.

    This troubled me for quite awhile. if you hide a form and goto another this is how you show that same instance of form1 again without creating a new instance losing your data. class form1 inherits windows.forms.form dim secondform as form2 button1_Click(sender ,e) me.hide secondform = new...
Back
Top