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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Lasius

  1. Lasius

    printing with the internet explorer

    Hi all, I am using the following code to print a html site through the Internet Explorer. Dim mObjInter As SHDocVw.InternetExplorer Set mObjInter = New SHDocVw.InternetExplorer Call mObjInter.ExecWB(OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMPTUSER, 0, 0) Set mObjInter = Nothing The problem is...
  2. Lasius

    Date format

    Hi, I want to type a date in a access table. The table has a column formated as date. Then I type in the following date: 14.08.03 07:44:29 it works fine. But then I try 14.08.03 00:00:00, Access cuts the time and it looks like 14.08.03. But I want the time to be display. Does anybody know a...
  3. Lasius

    OleDB vs ODBC

    Hi, I am using the MyODBC driver to connect to a MySQL-Server via ADO and VB. Now I tried to use the MyOleDB driver which should result in a better performance. Here is the code. Dim dbconn As ADODB.Connection Dim adoRecordset As ADODB.Recordset Set dbconn = New ADODB.Connection...
  4. Lasius

    Connecting Table in MySQL-Server

    Hi, I have two SQL-Server, mySQL and MSQL-Server, and I want to execute a query with a join over two tables out of both SQL-Server. One table is a mySQL table and the other is a MSQL-Server table. In Access I can connect the MSQL-Server Table (ODBC) in the Access DB and can execute the query...
  5. Lasius

    Delete Menu

    Thanks a lot now I have my menu back.
  6. Lasius

    Delete Menu

    Hi, I have a stupid question. I was testing the delete command in excel and have run the following code: Dim oBar As CommandBar Set oBar = Application.CommandBars("Worksheet Menu Bar") oBar.Controls(6).Delete It really works fine, but how do I get back my menu. Can somebody help? Thanks
  7. Lasius

    MSChart problem

    Hi, I have a problem with mircosoft mschart component. I want to set a long footnote with linebreaks. Does anyone know if that is possible ? Thanks Best Regards Thomas
  8. Lasius

    <font> tag and PDA

    Thanks for you fast respond, but then I tried it that way, it didnt work in any browser. <font color=&quot;red&quot;><a href=&quot;index.html&quot;>test</a></font> This PDA a Compaq by the way seems to ignore the <font> tag I dont know why. I can only change the link color by setting the color...
  9. Lasius

    &lt;font&gt; tag and PDA

    Hi, I am using the following code to change the color of a link <a href=&quot;index.htm&quot;><font color=&quot;black&quot;>Test</font></a> It works really good on any desktop browser, but then I want to view it in a PDA-Browser (e.g. on a Palm) The links only get the standard color. I don't...
  10. Lasius

    Passing Object

    I want to start a wscript out of a ASP. I created an instance of the Wscript.shell object. <%@ Language=VBScript %> <% OPTION EXPLICIT dim intReturn dim objWsh Set objWsh = Server.CreateObject(&quot;WScript.shell&quot;) intReturn = objWsh.Run &quot;D:\Test.vbs&quot;, 1, True) Set...
  11. Lasius

    Pass Object

    How can I pass a object from one vbscript to another ? I have tried it with the run method from wscript, but I only could pass strings. Thanks Thomas
  12. Lasius

    Pass a object

    How can I pass a object from one vbscript to another ? I have tried it with the run method from wscript, but I only could pass strings. Thanks Thomas
  13. Lasius

    Createobject

    I am calling a function of a vb-activex-exe out of a ASP-script initiated by createObject. This function can take some time, about 10 to 20 seconds. What I need is the information if the user has stopped the request so that I can stop the function. In the ASP-script I can get this information...

Part and Inventory Search

Back
Top