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 SkipVought 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: MJB3K
  • Order by date
  1. MJB3K

    storing a TextBox value in php array which is then stored in a session

    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...
  2. MJB3K

    How to save in a .TXT file same as in richTextBox (C#)

    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...
  3. MJB3K

    pound sign £ showing as sqaure []

    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
  4. MJB3K

    Toggling body tag class names to get css menu higlights working.

    try this: <?php $page = ""; switch($n){ case 1: $page = "page1"; break; case 2: $page = "page3"; break; case 3: $page = "page3"; break; case 4: $page = "page4"; break; case 5: $page = "page1"; break; } ?> <body class="<?php echo...
  5. MJB3K

    Datagridview non printable characters

    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
  6. MJB3K

    Blank Date Picker

    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
  7. MJB3K

    Javascript Refresh of an IFrame

    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
  8. MJB3K

    Open MS office documents in Office not the browser

    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
  9. MJB3K

    Process.GetProcesses from x86 process on x64 system

    what code have you come up with so far? Regards, Martin Computing Design And Services: http://www.webrevolt.biz
  10. MJB3K

    Could not find installable ISAM ??

    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() {...
  11. MJB3K

    StreamReader: why is reading until EndOfStream so slow?

    perhaps a do while loop? although could be similar to what you have done! Regards, Martin Computing Design And Services: http://www.webrevolt.biz
  12. MJB3K

    'DirectoryServices' does not exist in the namespace 'System'

    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
  13. MJB3K

    Missing echo new lines

    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
  14. MJB3K

    Missing echo new lines

    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
  15. MJB3K

    new version of Application

    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
  16. MJB3K

    new version of Application

    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
  17. MJB3K

    IE blocking popups - restarting flash movie

    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
  18. MJB3K

    append text at next line

    have you tried replacing the <br> with a \n or a \r or \r\n? Regards, Martin Computing Design And Services: http://www.webrevolt.biz
  19. MJB3K

    Input Text

    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 =...
  20. MJB3K

    Input Text

    what version of actionscript are you using? Regards, Martin Computing Design And Services: http://www.webrevolt.biz

Part and Inventory Search

Back
Top