Jump to content
Xtreme .Net Talk

basapa

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by basapa

  1. basapa

    Scripting

    Hello to all, I'd like to use VBScript in my Application. I've tried to use MSScript Component, but i've a little problem i'm not able to solve. In VB6 if I create a TextBox, I can use MSScript's AddObject Method to access my textbox methods and properties in a Script. In VB.Net this does not seem to work. I have an Interface error while passing the object to MSScript component. How can i solve this problem?? Has VB.Net another way to use VBScripting in application.... PS: Because Money problems i cannot buy VBA. Thanks Basapa
  2. Hello to all. I'm writing a simple application for the analisys of Data in SQL Database. I've created a structure where user can create and save his own query. The question is: If user create a query that use only a table and then he create another query that use the previous table joined to another one, and i have the two tables in my dataset, can i execute his query locally? Example: I Execute the first two query using a DataAdapter that create a local table Orders and Customers in my dataset. 1) Select * from Orders 2) Select * from Customers Can I Execute this query locally? Select * from Customers, Orders Where Orders.CustomerID=Customers.CustomerID Wich is the ADO.Net object i've to use? Thanks to all. Paolo
  3. Events I've just read thread about events but i'd like to use my own function without using events to access my own code. I want to use window.external capabilities of MSHTML Thanks
  4. IDocHostUIHandler The Interface is : IDocHostUIHandler On Microsoft Site: http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/mshtml/reference/structs/mshtml_ref_structs_entry.asp
  5. Hello, I have a Vb.Net Project that use a WebBrowser component to show html pages in my appication. I need to create a Custom events in MSHTML Object. I'have tried to create a behavior script for <body> object like this. <public> <event name = "myevent" /> <method name="callevent" /> </public> <script language=VbScript> Sub callevent fireevent("myEvent") End Sub </script> But I have an Error because MyEvent is not a Standard Event.
  6. I cannot I have only Vb.Net, so i cannot create C# project and use the Dll in my Vb.Net Project. I cannot traduce c# code to VB.Net code because the c# code use an Interface that is not accessible via VB.Net
  7. Hello, i've read some threads about how to catch HTML events in a VB.Net application that have a WebBrowser component. In Microsoft documentation i saw it' possibile to access host functions from HTML scripts "window.external". But I'm not able to do this. I found examples in C# on Microsoft site. Do you know if it's possible to do the same using Vb.Net.? Thanks to all. Sorry for my english.
×
×
  • Create New...