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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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"">...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.