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: *

  • Users: aas1611
  • Order by date
  1. aas1611

    Ignore Outlook security warning when sending email

    Well, I followed PHV's advice to google these keywords. And I found a script ClickYes. It works. Thanks PHV! seaport, I don't thinks my colleagues and/or my boss like to click 40 times, no matter how fast they can click. :)) But seriously, 30 clicks in 5 seconds? Wow. I don't think my mouse...
  2. aas1611

    Ignore Outlook security warning when sending email

    Hi, I want to send an email automatically to about 40 recipients, something like newsletter. A security warning window appears for each recipient, asking if I allow this. So much for automation! Is there a way to avoid/ignore this? Or maybe a script that automatically clicks "Yes" after 5...
  3. aas1611

    Send email that its content created in HTML

    Hey, thanks for pointing it out!
  4. aas1611

    Send email that its content created in HTML

    Hello, I want to send email with HTML content. But I know, in some cases, recipients will see the HTML tags instead of the display. Is there any way from my end, as a sender, to avoid this problem? Or does it entirely depend on the recipient, how she sets her email up? If it matters, I'm...
  5. aas1611

    How to insert an OLE-Object field into another table

    Hello kjv1611, aas is the initial of my name, and guess what 1611 might be! :) Are you asking this question because we have the same last 4 characters? Hello CMP, Thanks for your effort. After taking a deep breath and thinking in peace, I came up with this solution (before I received your...
  6. aas1611

    How to insert an OLE-Object field into another table

    Halo, unfortunately removing the single quote doesn't help. I receive the exact same error message: Syntax error in query expression:..here some funny characters...(I think because of OLE Object). I have tried the other way: using the query method in Access (the graphical interface). It...
  7. aas1611

    How to insert an OLE-Object field into another table

    Hi, I've been trying to insert a field which has OLE Object data type (in this case Text_Word) from one table into another, using the following VB code: qryInsert = " INSERT INTO Table1(ID, Text_Word) " & _ " VALUES( " & ID & ",'" & rst![Text_Word] & "')" ... which rst![Text_Word] is...
  8. aas1611

    Display a drop-down menu whose content from database

    Hi, I have this drop-down menu, a list of authors. The name of the authors are in a database, I want to display it automatically, instead of writing the authors' names one by one. The code I have written here does not work (which I thought should work), and I dont' know what else I can do...
  9. aas1611

    How to read serialized objects using HttpServlet

    Hi, What I want is to read the serialized object that have been saved in a serial file before (the file is called "addressen.ser" here). I already have a class called "serHandler" that handles the writeObject and readObject method. In the code from "AddressenEingabe" class (from my first...
  10. aas1611

    How to read serialized objects using HttpServlet

    Like I said, I don't get any obvious error. I have played around with the code in the AddressenEingabe class. I tried to, for example, change the save method with load method. At one point, I received an internal error from the browser, like it cannot recognize the code, etc. At the other point...
  11. aas1611

    How to read serialized objects using HttpServlet

    Dian, I have tried to play with the codes in that AdressenEingabe servlet, all I got is either internal error from the server, or the class still does the write function, not read. Sedj, the code that you gave me is already in my serHandler class: ... public synchronized Object load(String...
  12. aas1611

    How to read serialized objects using HttpServlet

    Hi, I have a servlet code that saves data input from a form in HTML into a serial file. For example, I've input as following: First Name: John Last Name: Doe Address: First Avenue 11111 New York Then, I want to read this input again, by giving in only the first name or the last name. So, if I...
  13. aas1611

    How to update rows in one table depending on another table

    Hi! Maybe my subject is a little confusing. So I hope the following can make it clearer: I have two tables, T1 and T2. These two have (almost) identical fields. In fact, we can assume that T2 is a copy of T1. The unique field for both is ID. Each table has 11K rows. The difference is, T1 is a...
  14. aas1611

    appear or disappear a button based on data in a table

    First of all, I don't know exactly what continuous form is... Well, I MUST USE that button to work on each row. I can't change it to a label, I think. This button sends an email based on informations contained in each row (email address, name, etc). After this email has been sent, the button...
  15. aas1611

    appear or disappear a button based on data in a table

    Hi, I have a form that lists data from a table. This form has a button in each row, and this button's visibility depends on a column value in that table. The table: Rechnungsjournal The column that decides: Mahnung1 -> rst!Mahnung1 the button affected: Mahnung1 -> Me!Mahnung1 I have written...
  16. aas1611

    My Outlook forwards/replies email from wrong email account

    Hi, I have several email accounts in my MS Outlook. When I try to reply or forward an email I received in one of my email accounts, the outlook automatically chooses another email account to send this email from. Of course I can choose the right email account by clicking the account drop-down...
  17. aas1611

    How to declare Variables accessable from every method

    Alright, I'll give it a try. Thanks for you help but I won't throw my book away, though :) Is it that bad having a method or class name with capital letter? It doesn't confuse me, and as long as it works, it's fine by me... Andre
  18. aas1611

    How to declare Variables accessable from every method

    Great! You are right, I have two FrageClient instances. Thanks for pointing it out. While we're at it, I have an input field (an integer) in my GUI. How to make this input number disappear after I click the submit button? Something like refresh method, so the input field is empty again. For...
  19. aas1611

    How to declare Variables accessable from every method

    I got these method and class names from the book I'm studying from, so do not blame it on me :) But thanks for the info. And you're right, I forgot to mention about the actionPerformed method: public void actionPerformed(ActionEvent ae) { Object eventTarget = ae.getSource(); if...
  20. aas1611

    How to declare Variables accessable from every method

    Hi, I need to have a variable that can be accessed from every method in a class. Here is what I did (the variable called IPAdresse): public class FrageClient extends JFrame implements ActionListener { String IPAdresse; ... private void createAndShowGUI(int flag) { //this...

Part and Inventory Search

Back
Top