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 wOOdy-Soft 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 JohnCMolyneux

  1. JohnCMolyneux

    Message Box with custom icon

    Hi Andrew, I'm using XP Pro. I'm assuming, from your comment, that any non-NT version will be okay, but NT versions will not. I actually ended up making a form to use as a dialog within my application. Let's face it - it's probably the only way to be 100% sure that it'll be stable on all...
  2. JohnCMolyneux

    Message Box with custom icon

    brzdude - erm, did you read the question? And thanks for the insight on the Application object. I've never come across that before. (heh)
  3. JohnCMolyneux

    Calling a form - Newbie question

    Hi. Just a quick tip - when you're coding and want to include another unit in the project, press Alt-F11.
  4. JohnCMolyneux

    Message Box with custom icon

    Cheers big ears. I've never even heard of QDialogs!
  5. JohnCMolyneux

    Message Box with custom icon

    Oh yeah....PChar('MAINICON') can be changed to a simple 'MAINICON'. Sorry - just ensuring that that wasn't the problem (even though I know string constants are fine as pchar's.) John.
  6. JohnCMolyneux

    Message Box with custom icon

    Hi. I've got the following code from the internet (seen it in lots of different places - always the same code with same variable names and code formatting etc..) function MyMessageBox(lpCaption, lpText: PChar): Integer; var MBParams : TMsgBoxParams; begin with MBParams do begin...
  7. JohnCMolyneux

    Download via ASP.

    Erm, no, thanks Chris. I'm going to look into attaching the file to HTML so as not to give a direct URL to anything. John.
  8. JohnCMolyneux

    Download via ASP.

    Actually, the suggestion that Chris gave is not actually what I'm looking for - I'm trying to not give the filename via the URL. I'll have to look into attaching files to HTML and pass the filename back via that method instead. John.
  9. JohnCMolyneux

    Download via ASP.

    Thanks disorder, but I've already discounted using the database, as I usually do with anything that's file based. John.
  10. JohnCMolyneux

    Download via ASP.

    Thanks Chris - I'll give it a go. John.
  11. JohnCMolyneux

    Error '80004005' running Access ASP export

    Hi. You're right - it is a permission issue. You need to check permissions within the Access database (don't use access if you can help it!), as well as the database files, the database folder, and the components that open the database (I assume ADODB). John.
  12. JohnCMolyneux

    Connecting to sql-server from asp

    Hi. You make the connection in the same way you did, but you're probably better off using SQL authentication, rather than windows. Here's an example ActiveConnection value... Provider=sqloledb;Data Source=SQL-Server-IP-or-Name;Initial Catalog=YourDatabaseName;User...
  13. JohnCMolyneux

    Download via ASP.

    Hi. I've built a download for a website and I want to add logging of downloads. I want to do this via ASP so that a normal download link (with a URL ending in a filename) can be replaced with something like... http://www.mysite.com/downloads.asp?id=15 ...where id=15 refers to a...
  14. JohnCMolyneux

    Non-ActiveX DLL

    Thanks, but check out this article.... http://www.ftponline.com/archives/premier/mgznarch/vbpj/1999/11nov99/jc1199/jc1199.asp Maybe there's still hope yet! I'm just about to try this. I'll let you know how I get on. Thanks, John.
  15. JohnCMolyneux

    Non-ActiveX DLL

    Thanks ArtieChoke, but I think I'm going to have to copy the code across to Delphi which is what the main application is written in. Thanks.

Part and Inventory Search

Back
Top