The other viable option for this sort of form steps are using one big form but each "page" is in a different div which you swap in and out using javascript which then when you submit it, it validates it or use JS / AJAX as you go along to validate the fields.
Just my two cents =]
Regards...
couldn't you have done this:
StreamWriter sw = null;
try {
sw = new StreamWriter(@"path\to\file.ext");
sw.Write(richTextBox1.Text);
}
catch(IOException exc){
// handle it here
}
finally {
sw.Flush();
sw.Close();
}
Regards,
Martin
Computing Design And Services...
Hi,
I just tried your code on IE8 running on Windows XP SP3 and it worked fine for me.
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
Could you not post the code you are using / some dummy data. Then we might be able to shed some light!
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
I don't think that the datetimepicker control can have a null or no value within it, hence why it is showing the current date if the value is null...
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
I had a similar problem, and i found that SetInterval() worked better than using setTimeout()...
Although BabyJeffys' post would also do the trick...
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
or if you had server side scripting such as PHP you could use the header(); to send the file download
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
Hi, I keep getting this error "Could not find installable ISAM".
What is this error?
/// <summary>
/// Returns a data set of the excel information
/// </summary>
/// <returns>DataSet</returns>
public static DataSet GetExcelInformation()
{...
You need to right click References > Add Reference then search for System.DirectoryServices that way before you can use it.
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
OK thanks =] they should incorperate that script into this forum as it would make code reading much more readable and clear!
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
I know it's off topic, but how do you colour code your "code" posts on this forum like you have done?
Can't see it in the help anywhere...
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
yeah not too bad, I found on the msdn website thought a good couple of video tutorials that gave me the solution (which is very simple!)
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
any chance you can put together a simple sample app demonstrating this one-click deployment?
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
or if the worse comes to worse, you could always remember what frame you are at on the flash movie then when it reloads, make it navigate straight back to that frame
Regards,
Martin
Computing Design And Services:
http://www.webrevolt.biz
are you getting any errors or such like?
have you tried:
trace(url);
within the handler to see if the url is constructed properly?
Usually in AS2 I do my events this way:
btnName.onPress = function(){
var search:String = searchTXT.text; //input text box
var link:String =...
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.