Thank you Vragabond,
What I did was wrap the calender in the label. That did it. I believe it is the same thing you said since label is a float.
Thank you very much.
I'll be asking more in the near future, I have learned much already.
Thanks again,
Marty
1 and 2 complete. I used http://validator.w3.org/check and it is good.
I cannot get the radio and dropdown on the same line with the two other inputs.
Any input appreciated
Marty
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>...
This looks ok in IE but FF lengthens out the field set and legend. Also the Case County label seems to be a bit of a hack.
I am in a new shop where all input forms are tables, tr, td and would like to use css.
Any help or are most comments welcome.
Marty
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML...
another way
import java.util.Arrays;
public class ArrayTesting
{
public static void main(String[] args)
{
String[] arr1 = new String[]{"one", "two", "three"};
String[] arr2 = new String[] {"one", "two", "three"};
if (Arrays.equals(arr1, arr2))
{
System.out.println("arrays are...
from http://java.sun.com/j2se/1.4.2/docs/api/java/io/InputStream.html
If b is null, a NullPointerException is thrown. If the length of b is zero, then no bytes are read and 0 is returned; otherwise, there is an attempt to read at least one byte. If no byte is available because the stream is at...
Using two regex's is one way. If you want to remove a leading space you can trim but I was thinking about indentation.
using System;
using System.Text.RegularExpressions;
class RegexTest
{
static void Main(string[] args)
{
string myString = @" Hello World ."...
I second JurkMonkeys opinion. In good OO designs you do not see switch statements you see polymorphism.
Reflection is an expensive operation.
I would not want to maintain what you are thinking about doing.
Marty
public static double InterestCalculator(double amount, double interestRate)
remove static:
public double InterestCalculator(double amount, double interestRate)
create an instance of Interest and reference the instance:
Interest interest = new Interest()...
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.