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. commun1

    Open .mdb file and just edit/save forms and reports?

    Hey genomon, sorry for getting back to you so late. I had to get a copy of Access 2003 and that wasn't so easy ;) So, I've checked the following: It is not an MDE-file. It is not password protected. When I load the .mdb by simply double-clicking it (or with the "Open"-Command in Access) it...
  2. commun1

    Open .mdb file and just edit/save forms and reports?

    Yes, sorry for skipping the error reporting. I will get back to it asap. Reason for it is that I got hold of Access 2003 as a friend suggested I should try this first in case of any compatibility errors between 2003 and 2007.
  3. commun1

    Open .mdb file and just edit/save forms and reports?

    Thanks for the pointers! How do I check the project references? Well, the program does work (pefectly) on the machine it is supposed to run on. It just doesn't work once I copy it to another and try to open it in Access.
  4. commun1

    Open .mdb file and just edit/save forms and reports?

    Hello! A client of mine just bought a company including some individual piece of software programmed in Access. However, since the owner changed and the company who made this program a few years back doesn't exist anymore he asked me if I could edit the program and get it to show the new logo...
  5. commun1

    Outer Div centered and no height, inner Div float:left?

    Thank you so much Dan! Works like a charm, sometimes it is just too easy, haha. Have a great day, you just made mine :) Cheers, Bernhard
  6. commun1

    Outer Div centered and no height, inner Div float:left?

    Hey. Topic says it all basically. I have one div ID that should be centered with a fixed width but no height as I want the height to be relative to its inner content. The inner divs share the same class and should float next to each other but once I give them the float:left attribute the CSS...
  7. commun1

    How to convert numeric entities for emails

    yes, but I'm not talking about regular HTML-Tags but language-specific special characters. actually it's a turkish website I'm currently programming and it's code has paragrahps with chars like ş ı in it... I want these chars to be converted to an encoded form so that outlook (or...
  8. commun1

    How to convert numeric entities for emails

    uh sorry for not being precise... I'm using PHP's mail()-function to send emails from my web server and my code already includes the character references... I was asking for a way to send a textemail in plain format but replacing the html chars so that it gets UTF-8 for example... thanks in...
  9. commun1

    How to convert numeric entities for emails

    hey there, first of all Happy New Year to you all ;-) I use an old Homesite-Version (Texteditor, no WYSIWYG) which cannot display any chars that are not ISO-8859-1, so what I did was to use any numeric entities such as ş ... so it is displayed correctly. But how do I get these chars...
  10. commun1

    keeping SESSION alive switching to SSL connection

    thanks sleipnir. however, I figured that my Domain is http://www.test.com and the SSL-one is https://test.com (same domain but without the www). On IE the session is being kept alive but firefox creates a new one once I switch. is the "www" the problem? I don't have a secure...
  11. commun1

    keeping SESSION alive switching to SSL connection

    Hey there, I use a session script which should pass all variables to a secure connection. Like when someone enters http://www.mydomain.com he is able to to fill a shopping cart (no ssl) and can switch to a secure connection (let's assume it's https://www.mydomain.com) but however all my...
  12. commun1

    round()-problem, different results

    heya all. I'm currently having the problem that a value is not correctly being rounded by round(). here's an example: $value = 23.50; $value2 = round($value*0.03, 2); $value2 should be 0.71 but however it's only 0.7, so it doesn't give me the last digit. I don't have that problem on my...
  13. commun1

    keep javascript data after page reload

    Hello folks ;) well well, here's a small prob. I'm facin': a form with some checkboxes in it, some of them "checked". I simply click on the reload button of my browser and all the checked checkboxes return to "normal", are unchecked. is there a way to keep those checked just using Javascript...
  14. commun1

    dynamically reload data in textfield

    found one that does exactly what I need: http://www.webpasties.com/xmlHttpRequest/ thank you all, I really appreciate your help! ;))))))
  15. commun1

    dynamically reload data in textfield

    @tsdragon looks cool but ain't that too complex for my needs?
  16. commun1

    dynamically reload data in textfield

    hi. um, I have two textfields and if you enter a number into field 1 it write the associated value that is within my mysql-table into my second textfield... e.g. if someone enters the digit "12345" into textfield1 it should say "textentry 1" in textfield2. as I mentioned, I have a table that...
  17. commun1

    how to check if checkboxes are checked?

    yupp, I had a typo in my javascript, that's the reason why it didn't work... thank you for your help =)
  18. commun1

    how to check if checkboxes are checked?

    Hello Laura, well actually if you want to get more values from a field that has the same name you'd write checker[]. cause if you name them only checker you won't get all the single values if more than one checkbox is clicked... in other words: <form name="test" action="index.php"...
  19. commun1

    how to check if checkboxes are checked?

    Heya, well, I have a form that looks like this: <form name="test" action="index.php" method="post" onsubmit="checkers(); return false;"> <input type="checkbox" name="checker[]" value="1"> <input type="checkbox" name="checker[]" value="2"> <input type="checkbox" name="checker[]"...
  20. commun1

    category structure of a shop

    hmmm, okay... my problem is that I don't yet have any code ready since I don't know how to handle it right... let's see, I'll try again ;-) so I have 2 MySQL-Tables for a start. the first one with the category data: cat_id, sub_id, category_name TABLE "CATEGORY" 1, 0, "category 1" 2, 1...

Part and Inventory Search

Back
Top