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!

Search results for query: *

  • Users: aas1611
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. aas1611

    Error when installing PHP5 on Apache2

    Hallo, I've installed Apache2.2 on PHP5 (completely new installation, not upgrading). Now a problem occurs when I tried to add PHP5 to this Apache. I have added the following commands in httpd.conf: LoadModule php5_module c:/php/php5apache2.dll AddType application/x-httpd-php .php3 .php...
  11. aas1611

    GridLayout and createEmptyBorder in java.awt.frame

    Hi, I'm about to create a GUI using JFrame. I've come across an example using methods GridLayout and createEmptyBorder as in: workPanel=new JPanel(new GridLayout(6,1)); workPanel.setBorder(BorderFactory.createEmptyBorder(10,10,10,40)); What do the integers in GridLayout(6,1) and in...
  12. aas1611

    Empty field in table

    Hi, I want to display a name, that is divided by three fields: Title (Prof., Dr.) Firstname Lastname Unfortunately, some data don't have title and/or firstname (they all have lastname). So, the logic is: Titel Firstname ----- --------- if 0 0 -> then displays only...
  13. aas1611

    use MsoListBullet, but receive numbered list in Word/RTF

    Hi, I use MsoListBullet for my listing style. I expected to have bulleted lists, but I've got numbers, instead. The code in my HTML is something like this: <p class=MsoListBullet><![if !supportLists]><span style="font-family:Symbol;">·<span style="font:7.0pt "Times New Roman"">...
  14. aas1611

    Convert HTML to RTF?

    Maybe this is an old topic, or somebody has talked about it. But I still can't find the solution. I have created an HTML document in PHP. Then I want to convert it to RTF. I've read there are no built-in functions in PHP that do this. So, what would be a good way to convert to RTF, then? Does...
  15. aas1611

    Set up bounced message to specified email

    Hi, I've tested my mail function, see if it bounced back to me if the email I sent to is unknown. But I haven't received anything yet. Here is part of my header, using reply-to and return-path: ... header .= "Reply-To: andre@andre.de <andre> \n"; header .= "Return-Path: andre@andre.de...
  16. aas1611

    Passing parameter from JSP to tag handler

    I've been trying to pass a parameter from a JSP to a tag handler class. I figured, the code in JSP to do this should be: <%! String inputTM = request.getParameter("tradeMark"); %> ... <p><learn:jspTM tradeMark="<%= inputTM %>" /> </p> Problem 1: When I run this JSP, an error message...
  17. aas1611

    How to count a particular word appearing in a text?

    Hi, Let's say I have the following string/text: $text= "new day new problem."; How can I count the word "new", how many time it appears? (In this case, it appears 2 times). It could also be two words, like "new day". In this case it appears once. Please remember, that $text consists of...
  18. aas1611

    Package javax.servlet.jsp does not exist ??

    Hi all, I tried to compile my java code that has the following codes: package tags; import java.util.Date; import java.utils.DateFormater; import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; public class jspDate extends Object implements Tag { ... } The error message I received...
  19. aas1611

    Create an Internet link from Access

    Hi all, I have a text field in my form, which is an article number (only the number, let's say 90386). This number is related to an article on my website. Let's say the link in my website is http://www.versicherungsjournal.de/mehr.php?Nummer=90386 How to create this link from an Access form...
  20. aas1611

    How to deal with NoClassDefFoundError

    Hello all, I'm doing this exercise about jsp and beans. Let's get to the point. Here is part of my java bean code: package beans; import java.util.Calendar; import java.util.Date; import DateFormater; public class DateAnzeige extends Object { ...// rest of the code here } I compiled...

Part and Inventory Search

Back
Top