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 strongm 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. jlgdeveloper

    Creating a utility to spider a web site in php

    Have a look down this avenue; http://us3.php.net/manual/en/function.file-get-contents.php Php can retrieve the text of web pages. Jonathan Galpin MCSD Õ¿Õ¬ www.iqzero.net because software should be easy to use
  2. jlgdeveloper

    AMP platform for Flooring Co Application

    Thanks for the comments ingresman. My main issue with a web interface would be that for certain functions, a web page might end up being slow when it does a large number of tasks and data pulls. That is the only time a client could use the speed of a desktop client....but may not be worth the...
  3. jlgdeveloper

    AMP platform for Flooring Co Application

    Your opinion please: I have a prospective client who needs their end to end business application re-written on a modern platform. My expertise is in web apps. I would need to handle their client and vendor relationships, estimating, invoicing (pdf's), inventory (with some interaction to...
  4. jlgdeveloper

    Can 7.0 Enterprise Edition Install on XP Pro?

    Denny I appreciate your response, thanks. I had once attempted an install and was stopped for some reason I could not recall. That was probably it. Do you believe it is worth putting a database (now on the enterprise edition) onto the current MSDE? I do use stored procedures. It is not...
  5. jlgdeveloper

    Can 7.0 Enterprise Edition Install on XP Pro?

    A client wants to migrate a small piece of their db app to a desktop machine. Is it possible to install SQL Server 7.0 Enterprise edition on an XP pro machine? Thanks in advance. Jonathan Jonathan Galpin MCSD Õ¿Õ¬ www.iqzero.net because software should be easy to use
  6. jlgdeveloper

    System error &H80004015(-2147467243). The class is configured to run a

    Hi All After a few weeks of not using a particular machine, I have come accross this error suddenly in the VB IDE. When trying to run an app in the ide, I get this: System error &H80004015(-2147467243). The class is configured to run as a security ID different from the caller This article...
  7. jlgdeveloper

    Calling stored procedure with date parameters

    Hi Carp Previously I tried to feed one in, with no luck: CALL cwsr_sel_net_sales (101, '03-Nov-03' , '09-Nov-03',0) * ERROR at line 1: ORA-06577: output parameter not a bind variable It is an out parameter, so why feed it in? Is there a different syntax I can apply such as declare in SQL...
  8. jlgdeveloper

    Calling stored procedure with date parameters

    Hi All This Oracle 8i stored procedure is valid: (PK in number, dt1 in date, dt2 in date, amount out number ) is begin select sum(conf_numb8) into amount from csh_main where fk_str_main_id = PK and (busi_date >= to_date(dt1)) and (busi_date <= to_date(dt2)); end...
  9. jlgdeveloper

    Error Handling Example

    Please read the faq "Error Handling" by CasperTFG first, this is only meant as an additional note: I use the "app.logEvent" call for the most part when handling errors. This writes a log to the application event viewer in the control panel. Syntax: ======= App.LogEvent vbCrLf &...
  10. jlgdeveloper

    Editing text hashtables created in Java, in VB

    After some contemplation, I believe the human readble file is a &quot;toString&quot; representation of the java object. I believe the solution is to write a java app that will: deserialize it if it is serialized(however, I believe it is just the object), instantiate it as a true...
  11. jlgdeveloper

    Sending e-mail from VB

    I use a com object called samail. Here is an example of a function I use to send email. This is from an asp page: function sendEmail(address,title,body,attachment) dim objM Set objM = Server.CreateObject(&quot;SoftArtisans.SMTPMail&quot;) objM.FromName = &quot;iqzero.net&quot...
  12. jlgdeveloper

    Convert Program from Using Ado to SQL

    Have a look at my data access faq222-2103. Basically, using a dsn, you can switch to a different type of database at the dsn, never touching your code. Ie use access, sql server, oracle etc. Jonathan Galpin MCSD www.iqzero.net because software should be easy to use
  13. jlgdeveloper

    Editing text hashtables created in Java, in VB

    Yes, the more I study it, it seems that it is a java object representing a custom array, that has been serialized. I wonder if by reading the file in binary format if I can locate an existing amount ie &quot;1560.25&quot; and insert my corrected number without disturbing the file? There are...
  14. jlgdeveloper

    Editing text hashtables created in Java, in VB

    Hi Hologram The extension is .txt. To modify the text readable version, output by the same app for human consumption (see it at http://iqzero.net/troubleshooting/STR_0399_2003_08_14.txt ) would be a snap, the problem is that the app that then processes it into the binary form needs to be...
  15. jlgdeveloper

    Editing text hashtables created in Java, in VB

    I appreciate that Sedj. The file begins as a text readable file (or this is created as a backup)example: ================================ { &quot;DATE&quot; = &quot;2003_06_15&quot;; &quot;Z1_DCR&quot; = { &quot;ROW19COL1&quot; = <&quot;2736.23&quot;>; &quot;ROW19COL0&quot; =...
  16. jlgdeveloper

    Editing text hashtables created in Java, in VB

    Hi: Looking for direction on editing text files that are (I believe) binary hashtables. Example of the file content: ====================================================== ¬í sr java.util.Hashtable»%!Jä¸ F loadFactorI thresholdxp?@ w  t DATEt 2003_08_14t Z1_DCRsq ~ ?@...
  17. jlgdeveloper

    Modifying hashtables using VB

    Hi: Looking for direction on editing text files that are (I believe) binary hashtables. Example of the file content: ====================================================== ¬í sr java.util.Hashtable»%!Jä¸ F loadFactorI thresholdxp?@ w  t DATEt 2003_08_14t Z1_DCRsq ~ ?@...
  18. jlgdeveloper

    how do I redirect on submit button click

    It is fairly simple. Probably cleaner to send the form to another page (action=&quot;xxx.asp&quot; parameter of the form tag). On the receiving page (all server side), handle the form --- do something for the user. Then, in the server side script, last thing, use the following code...
  19. jlgdeveloper

    ReLoad drop down the way it origionally loaded

    Ralph Simply pass the user name/id on to the new page in a querystring. Load the same dropdown the same way. In the body onload event (<body onload=&quot;doLoad()&quot;) fire off the following client side vbscript: sub doLoad() <%if request.querystring(&quot;dropdown&quot;)<>&quot;&quot...
  20. jlgdeveloper

    Inserting a date to ACCESS!

    vb/vbscript > formatdatetime(yourdatehere, vbshortdate) You must have it in the database as a date first. Check there to see that the entire date is present. Jonathan Galpin MCSD www.iqzero.net because software should be easy to use

Part and Inventory Search

Back
Top