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 gkittelson 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. jerijeri

    How to Convert Static Text to Hyperlink

    Thank you very much. Jer
  2. jerijeri

    How to Convert Static Text to Hyperlink

    I'd link to have a hyperlink on one of my dialog forms. I can hyperlink to the site using a button, but would like to have the domain url appear as a clickable link. Is it possible to do this in Visual C++ 6.0? If so, are there any code samples available? Thanks, Jer
  3. jerijeri

    Create Invisible Gif automatically

    Thank you. I didn't realize PHP had this function. I will try it out. Jer
  4. jerijeri

    Create Invisible Gif automatically

    I need to have PHP generate an invisible gif and output it. I know I can have my program read an invisible gif and output it. That's normally what I do. For this application it's not suitable. In Perl I did this by: print "Content-type: image/gif\n\n", pack "H*&quot...
  5. jerijeri

    How to Create directory from text field

    I'm afraid that's not working: I have Dim dirname variant MkDir "e:\files\" & dirname & "\data.txt" I get a path not found error. Which makes sense, since I'm trying to create the path. There are two parts to the question. I need to: 1. figure out how to read each line...
  6. jerijeri

    How to Create directory from text field

    I need to create a large number (2500+) of directories on my computer. I have a text field that will consist of rows of data like: atlanta los_angeles detroit new_york I'm reading these in from a text file. I'm trying to figure out the code that will read each line in the text field and...
  7. jerijeri

    Program similar to PGP

    But you can't use gnupg or mcrypt because you can't install software on some of your clients systems. Right? ** That's correct. We're looking for something like PGP, but something that doesn't have to be be compiled and installed or involve any changes go the PHP build. Recently...
  8. jerijeri

    Program similar to PGP

    [you're storing credit card data on the server? definitely a no-no... what ever process transaction that is done on the system, the credit card data should be passed to the third party authorizing agent and forgotten about...web servers are just not secure enough to store the data...] Yes, we...
  9. jerijeri

    Program similar to PGP

    [The only perfect cryptographic system is a properly-managed single-use-pad system. But that's not useful for what you need. The best you're going to be able to do with human-readable PHP code is slow them down or make the value of what the attacker gets less valuable than the resources he...
  10. jerijeri

    Program similar to PGP

    Linux. Apache 1.3, MySQL Some sites that we want to do this on are on inexpensiver virtual hosts so we can't compile and install the software. Some of the data is Credit Card data so if the data can be encrypted by using any data on the server, it won't be suitable. We've also looked at...
  11. jerijeri

    Program similar to PGP

    I'd like to be able to store some information in a table and have it safe from prying eyes. I do need to be able to decrypt it. Currently we're using a RC4 routine to save the information. If someone looks at the data, it won't do them any good - unless they find the key that's stored on the...
  12. jerijeri

    Can one copy first letter of field to another field

    Well, I found the problem. The query I originally used was fine. I changed UPDATE table SET field_2 = substring(field_1,1,1) to UPDATE table SET field_2 = substring(field_different,1,1) and it looked just as it should. When I exported the data, I saw a \n as the first character for the...
  13. jerijeri

    Can one copy first letter of field to another field

    UPDATE table SET field_2 = substring(field_1,1,1) updates 1 record. If I try UPDATE table SET field_2 = substring(field_1,1,1) WHERE id > 1 it updates none. I can't figure what's happening. The field I'm update is set to CHAR(1) and the data it's reading from are all letters. Jer
  14. jerijeri

    Can one copy first letter of field to another field

    No luck with your suggestion. I should have made it clear that the data is in the table and isn't an insert. This is what I've tried. UPDATE table SET field_2 = substring(field_1,1,1) I'm not sure why this wouldn't do what I want. Jer
  15. jerijeri

    Can one copy first letter of field to another field

    Thank you. I had tried UPDATE with SUBSTRING(field_name,1,1) with no success. Will try this now. Jer
  16. jerijeri

    Can one copy first letter of field to another field

    HI, I'm wondering if there's a MySQL command/function to copy the first letter of one field to another field. Thanks, Jer
  17. jerijeri

    Finding number of passwords left

    order_id is a character column. The order ids are alphanumeric. That isn't clear in the example. NONE was entered instead of just N or leaving as a Null, to make it clearer to the support staff that may have to edit a record. NONE makes it clearer. select area, sum(case when order_id =...
  18. jerijeri

    Finding number of passwords left

    HI, We have a table that looks like the following: id,username,password,area,order_id 1,joe,88,5,100 2,joex,99,5,102 3,joey,77,5,NONE 4,jane,66,4,101 5,janey,22,4,NONE What we want to do is have the results displayed as Area, Available, Issued 5 1 2 4 1 1...
  19. jerijeri

    Problem with Autoincrement, and starting autoindex value of 0

    Hi, I have certain tables where I'd like the record id to autoincrement and start at 0. 0 would recommend someone who doesn't have access 1 and above have different access privileges. There are new levels added, hence the desire to use Auto-increment. The problem comes when I use SQL dumps to...
  20. jerijeri

    Regular Expression problem

    Found solution. used {\d*}\/{\d*}\/{\d\d\d\d} to match the date. That solved the problem. Jer

Part and Inventory Search

Back
Top