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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by anto2

  1. anto2

    INSERT INTO with Sequence.nexval

    I think this would work for you assuming you have table2_id field on table1 insert into table1 (table1_id,table2_id,forename,surname) select sequence.nextval, table2.table2_id,table2.forename,table2.surname from table2 where table2.table2_id not in (select table2_id...
  2. anto2

    How to format Date using to_date

    have you tried this in sqlplus select to_char(to_date('2008-01-17 5:23:20 PM', 'yyyy-mm-dd hh:mi:ss am'),'yyyy-mm-dd hh24:mi:ss') from dual; this returned 2008-01-17 17:23:20 for me. As BJCooperIT pointed out having hh24 and am/pm is unusual and in sqlplus trying this gives an error. select...
  3. anto2

    submit of form does not work in Netscape

    with regards to the caching problem we have the following at the top of all the pages <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Cache-Control" CONTENT="no cache"> but the proxy still caches
  4. anto2

    submit of form does not work in Netscape

    Hi I found my problem. Works fine when I put <body> tags around the code
  5. 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...
  6. anto2

    installation of BCB 5 on Windows 2000

    Hello, I found my problem. I was giveing the project and the unit1.cpp file the same name. If I give different names no problems.
  7. 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...
  8. anto2

    Finding which item has the focus

    Thanks LAwebTek, I thought that might be the ony way but I was hoping there was some page property that would tell me this as our application is pretty much finished. Anthony.
  9. anto2

    Finding which item has the focus

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

    navigate2 flag parameters

    Hello Samphdauto, Sorry, I don't have clue how you would do this. Anthony.
  11. anto2

    navigate2 flag parameters

    Hello again Samphdauto, This is a procedure I ended up with that posts a form to an URL. Public Sub validate_logon() Dim URL As String Dim Flags As Long Dim TargetFrame As String Dim PostData() As Byte Dim Headers As String URL = &quot;http://thisisthevalidationurl&quot...
  12. anto2

    navigate2 flag parameters

    Hello samphdauto, I'm not quiet sure what you mean but if you are passing a value to an url e.g. 'the car of the future' where the name of the parameter is title. the url might look something like this. http://www.abcnews.go.com?storytitle=the%20car%20of%20the%20future
  13. anto2

    navigate2 flag parameters

    Helo John, I have found that I have to call the method with no brackets around the parameters e.g. .navigage url,flags not .navigate(url,flags) Anthony
  14. 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...
  15. anto2

    regular expression date validation

    Thnks Jeff, The filter works perfectly. The reason I had the extra single quotes is that I'm using Oracle Portal to build html pages and I left these in by mistake. Anthony.

Part and Inventory Search

Back
Top