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 TouchToneTommy 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: anto2
  • Content: Threads
  • Order by date
  1. anto2

    submit of form does not work in Netscape

    Hello we had a problem with our clients caching pages on their proxy server so people we seeing other peoples information. We got round this by using forms and submitting them that in turn forced the proxy server to get a new version of the page each time. This works fine with IE but not with...
  2. anto2

    installation of BCB 5 on Windows 2000

    Hello, I have installed BCB 5 on Windows 2000 and I'm having problems creating a new project. If I save the project using the defaults of unit1 and project1 the program will run but if I use any other name I get [Linker Error] Unresolved external 'WinMain' referenced from C:\PROGRAM...
  3. anto2

    Finding which item has the focus

    Hello, I there a way to find which item has the focus in javascript. Anthony
  4. anto2

    navigate2 flag parameters

    Hello, This is probably very easy. I am using the navigate2 method in my prog. eg. mynav.navigate2 (url) the method navigate2 is define like so object.Navigate2 URL [Flags,] [TargetFrameName,] [PostData,] [Headers] I would like to be able to pass some values the the flags parameter. How do...
  5. anto2

    regular expression date validation

    Hello I am trying to validate a date if the format dd/mm/yy this works fine in IE5-6 var filter=/^[0-9]{2}[/]{1}[0-9]{2}[/]{1}[0-9]{2}$/; if (! filter.test(inpDate)) { alert("Please enter Date in DD/MM/YY Format !");'); return false;'); }; but I get JavaScript Error...
  6. anto2

    Setting a dropdown value

    Hi, I have three dropdown select option fields on a html form called myform. They are hours_values (00 - 23), minutes_values (00 - 59) and day_segment_select (1.00,0.75,0.50,0.25). when then user changes the day_segment_select the other two dropdowns change depending on values on other...
  7. anto2

    window.opener permission denied

    Hello I am using window.opener to return a value to a page that calls a pop-up window. when I try to pass back the value I get a permission denied error. Within my pop-up window the user can click a button that updates the pop-up window by calling an url to rebuild the page. If I do a very...
  8. anto2

    Unable to run compile package created by myself

    Hello I have the following directory structure f:\javatimesheet\ie\core\timesheet\data and in my java source file I have package ie.core.timesheet.data; public class ... if I am in the directory data and the source file is there i can compile but I cannot run the class. I thought this would...
  9. anto2

    Calling a html page from within an activex control

    Hello I have an activex control running in IE5 and on it i have a button that when clicked I want it to open a html page in the same window. At the moment it opens another IE5 session. I have referenced the IE controls and set the code up as follows. Declarations Dim IE As...
  10. anto2

    ocx and registering on a different machine

    Hello I have just been given a job that needs to use an ocx. I have created an application with the ocx control in it. This works on my own pc but I cannot get it work on any other pc. I have use the package wizard for the application but it brings up a list of files saying they have no...
  11. anto2

    changing background colour of each cell in a table

    Is it possible to have each cell in a table a different colour. Anthony.
  12. anto2

    how to hide/disable a button on a form

    Hello I have searched for an answer on this it's probably there somewhere. I have a one button form <form><INPUT TYPE=&quot;button&quot;, name=&quot;go_update&quot; value=&quot;Re-Submit&quot; onclick=&quot;do_update()&quot;></form> and depending on other values I need to hide or disable this...

Part and Inventory Search

Back
Top