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 Mike Lewis 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. Glutus

    Calling DLL problem

    I finally worked it out! I had to use the reference and then add the class to the form, it is a class.
  2. Glutus

    Calling DLL problem

    Thanks for your reply. I've tried all different variations of the static calls: function TF(a:integer;b:variant;c:variant):variant;stdcall; extern 'test5.dll' name 'TestFunction'; Whatever I seem to try, the reply is that the procedure address cannot be found. I am not really sure of if it's a...
  3. Glutus

    international character

    showmessage('á côte là français'); works fine for me
  4. Glutus

    Calling DLL problem

    Hi all, I've successfully managed to call a dll in VB.NET but can't for the life of me figure out how to do it in Delphi. The VB code is: Function foo(ByVal inputArgument As VariantType) As VariantType Dim myClass As test5.test5class Dim answer = New VariantType Dim...
  5. Glutus

    C# dll reading .txt file problem...

    Well, I knew that it was simple and that I was an idiot. Thanks, now it works perfectly.
  6. Glutus

    C# dll reading .txt file problem...

    Hi, I've created a dll that reads a textfile. The dll compiles fine, but when I try to use it in Excel - by reference to the .tlb file - I get an error "The filename, directory name, or volume label syntax is incorrect". It works nicely when I try something simple like if the dll takes an...
  7. Glutus

    Strange problem...

    WOW, I knew it was simple. It works fine. Thx
  8. Glutus

    Strange problem...

    Hi, I've created a dll in c# that works fine, but when I make changes and try to recompile, the dll is 'used by another process'. I use the dll in Excel by adding a reference in VBA to the .tlb file. My question is, is there a way to kill the process once I've used it? Sample code: Sub test()...
  9. Glutus

    ActiveX control won't load

    I've written an ActiveX control that seem to work fine on some machines (1 with IE5.5-Office XP-VB6-on which it was written, 1 with IE5.5-Office 2000, and 1 with IE4-Office 97-VB6) but not on most. I've used "Microsoft Internet Transfer Control 6.0", "Microsoft Windows Common...
  10. Glutus

    How to connect an ocx to a database on the net?

    I want to connect my ocx application to a database on the web. The application is going to be published on the web and the database is on a remote server. How do I do this?
  11. Glutus

    SQL problem

    Thank you ever so much. You are gods. It was of course a silly typo, the closing of the parenteses. I finally found the error.
  12. Glutus

    SQL problem

    Here's the complete code: <%Language=VBScript%> <%Response.Buffer=True%> <html> <body> <% aktion=Request(&quot;Action&quot;) if aktion=&quot;Update&quot; then Set MyConn=Server.CreateObject(&quot;ADODB.Connection&quot;) MyConn.Open &quot;XXX&quot...
  13. Glutus

    SQL problem

    Please, don't forget about me.
  14. Glutus

    SQL problem

    To Mise Le Meas: The page is blank when I try to run it. It just won't load.
  15. Glutus

    SQL problem

    I forgot the apostrophes: Update MyTable Set Data1='1', Data2='2' Where [ID]=1 Update MyTable Set Data1='2', Data2='4' Where [ID]=2 Update MyTable Set Data1='3', Data2='6' Where [ID]=3
  16. Glutus

    SQL problem

    The loop runs perfectly when I type the individual SQLs. Like this: Update MyTable Set Data1=1, Data2=2 Where ID=1 Update MyTable Set Data1=2, Data2=4 Where ID=2 Update MyTable Set Data1=3, Data2=6 Where ID=3
  17. Glutus

    SQL problem

    Darn, I'm so sorry. It's another typo. It should read: data1=Request.Form(a & &quot;data1&quot;) data2=Request.Form(a & &quot;data2&quot;) id=Request.Form(a & &quot;id&quot;)
  18. Glutus

    SQL problem

    The page just won't load. I have no idea what's wrong.
  19. Glutus

    SQL problem

    To explain myself. It's a typo. The problem persists.
  20. Glutus

    SQL problem

    Sorry, my mistake. It should of course be: SQL = SQL & &quot;... Thx anyway.

Part and Inventory Search

Back
Top