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
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()...
elhaix,
You posted the same question thread732-1333925 and and we answered it with the code.
If you do not like Dictionary<string><string> use a Hashtable as JurkMonkey suggests.
Marty
...is just a test" + System.Environment.NewLine;
string s2 = @"Test2/abc da da da Test Phase/sssss";
string pattern = @"(?<=Test[1,2]/)(?<myText>.*?)(?=(Test\s{1}Phase|\n))";
Console.WriteLine(Regex.Match(s1, pattern).Groups["myText"].ToString());
Console.WriteLine(Regex.Match(s2...
You could put the regex in this program into your validator, just remove the option and whitespace. earthandfire explained how they work so you should be able to read it.
using System;
using System.Text;
using System.Text.RegularExpressions;
namespace RegexTesting
{
class Program
{...
In 1.1 I believe you could use a Hashtable with the method Item. That does not work with 2.0.
reference: http://www.thescripts.com/forum/thread486322.html
Here is one way,
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
class SplitQueryString
{...
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.