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 TouchToneTommy 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: *

  • Users: NaiDanac
  • Content: Threads
  • Order by date
  1. NaiDanac

    Object doesn't support this property or method

    I'm experiencing some strange behaviour with HTML embedded controls. I use the following code: <object id=myControl classid=http://server/share/MyControl.dll#MyControl.usercontrol></object> <input type='button' name='go' onclick='RunControl()' Value='Submit'> <script language="JavaScript">...
  2. NaiDanac

    Object doesn't support this property or method

    I'm experiencing some strange behaviour with HTML embedded controls. I use the following code: <object id=myControl classid=http://server/share/MyControl.dll#MyControl.usercontrol></object> <input type='button' name='go' onclick='RunControl()' Value='Submit'> <script language="JavaScript">...
  3. NaiDanac

    Usercontrol XP/NT

    I'm getting some unusal behaviour now! I have built a simple usercontrol in visual studio.net. I then embedded the usercontrol on a web page that is part of my intranet. When I navigate to that web page from an XP machine, the usercontrol downloads to my machine correctly. On the NT machine...
  4. NaiDanac

    Usercontrols without the .NET framework

    I built a user control using VB.NET and have successufly embeded it on web page (Intranet). When I visit that web page using a machine that does not have the .NET framework installed, it doesn't work. Can .NET usercontrols run without the .NET framework being installed? Thank you
  5. NaiDanac

    System.Security.Permissions.SecurityPermission

    Today I finished creating a user control in VB.NET that I intend on embedding in web pages. It allows users to send email from a web page using their local Lotus Notes client (as opposed to the traditional SMTP way). Any way, the user control works beautifuly when run from a windows...
  6. NaiDanac

    ActiveX and web pages

    Accessing the Internet Explorer Document Object Model from ActiveX (Visual Basic.NET). I built an usercontrol in visual basic.net that I managed to include on a webpage using <object></object> I don't know however how I can access some of the elements on the html web page and read it into my...
  7. NaiDanac

    ActiveX, OCX, UserControls???

    I have a VB.NET application that I would like to make as a component that I can embed in a web page! What should I be using: ActiveX, OCX, UserContls???? Where can I get more info? (Please be specific) Thank you
  8. NaiDanac

    Components from web pages

    Hello all, I have a vb.net application that I've built. I would like to know how I can make it into a component that can be called from a web page. I never did this before, but I've been reading some stuff about ActiveX and COM, and I think that's the way I need to go... Can that be...
  9. NaiDanac

    ActiveX and VB.NET? Calling .NET code from I.E

    Hello all, I have a vb.net application that I've built. I would like to know how I can make it into a component that can be called from a web page. I never did this before, but I've been reading some stuff about ActiveX and COM, and I think that's the way I need to go... Can someone...
  10. NaiDanac

    Changes are seen instantaneously

    We're experiencing some trouble with Visual Sourcesafe 6.0 and Visual Studio.net. We've got three WinNT workstations (development machines), and one Win2K server. The server/client have Visual Sourcesafe installed. We are able to check in/out files correctly, however we are noticing that...
  11. NaiDanac

    Changes are seen instantaneously

    We're experiencing some trouble with Visual Sourcesafe 6.0 and Visual Studio.net. We've got three WinNT workstations (development machines), and one Win2K server. The server/client have Visual Sourcesafe installed. We are able to check in/out files correctly, however we are noticing that...
  12. NaiDanac

    How to include other pages?

    I have an application with a navigation bar on the left hand side. The navigation bar is part of every page of the application, and I include it using: <!--#include virtual="/abc/abc.aspx"--> Initially, the abc.aspx file was nothing more than straight html, with no code behind: <html>...
  13. NaiDanac

    Button.Click

    I've got a strange problem. I have server controls in my .aspx page, but they don't seem to fire up. For example, I have two controls, button1 and button2. When I click on button1, button2.visible = false. If I put that code in the button1_click procedure it doesn't do much: Private Sub...
  14. NaiDanac

    Button.Click

    I've got a strange problem. I have server controls in my .aspx page, but they don't seem to fire up. For example, I have two controls, button1 and button2. When I click on button1, button2.visible = false. If I put that code in the button1_click procedure it doesn't do much: Private...
  15. NaiDanac

    Font.Name

    How can I get all the possible values of Font.Name in VB.NET? (e.g. "Arial", "Arial Black", etc.) Thanks
  16. NaiDanac

    SqlDataReader

    Is there a way to "clone" a sql data reader. I have a lot of calls to the database to execute stored procedures. Everytime I need to execute a procedure I have to create a connection, open it, create a reader, create an sqlcommand, execute the command, save the result in the reader, then close...
  17. NaiDanac

    Common Function

    I have a common functions/procedure that I need to call from a number of aspx pages. Where's the best place to put this function? Thanks
  18. NaiDanac

    Connecting to DB

    Hello all, I'm having a problem connecting to my DB from Visual Studio.net. My ulimate goal is to connect to the DB and execute a few stored procedures. Anyway, I used server explorer (Visual Studio.net) to connect to my database without any problems. I can even see the stored procedures...
  19. NaiDanac

    Page (load twice)

    I've got a page with the following: label1 (Are you sure you want to save) label2 (Your data has been saved) textbox1 (data) textbox2 (data) textbox3 (data) button1(Save) button2(Cancel) I intially show everything except form label2. Once the user clicks on save, I run a procedure to write...
  20. NaiDanac

    Data Access

    Forgive me for asking a primitive question, but I've been searching/reading for a while, and I'm just getting more confused. I've got a textbox, who's value is coming form a table from the database (SQL2K). How can I do that? I read about dataset, datalists, datagrids, etc...and I'm confused...

Part and Inventory Search

Back
Top