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!

Recent content by webmast3r

  1. webmast3r

    access the innerhtml of a div inside a frame

    yep man, it works... when i pasted your code exactly as u provided it... it worked!! anyways, i'll check back why it didnt work in my version... and thanks alot for your great answer.. cheers, Dan
  2. webmast3r

    db compare program

    dear friends, 3 months ago i had a database that my software was working on... due to additional db upgrades, i needed to add fields to some tables.. today, i find myself in a stage where my program is almost complete, and i need to replace the old exe with the new one. the problem is that i...
  3. webmast3r

    procedure problem

    dbalearner, for your information, there is the alter procedure command in sybase.. and actually once u create ur procedure, and u want to edit it, the sybase sql anywhere automatically converts the code into "alter procedure".. (this is where i pasted my code from". so the alert procedure is...
  4. webmast3r

    procedure problem

    hello i have a problem in a procedure... am trying to recalculate all invoices in the database invoices have header and details here's the code that i am using create procedure "dba".RecalculateAllInvoices() begin declare err_notfound exception for sqlstate value '02000'; declare tn...
  5. webmast3r

    access the innerhtml of a div inside a frame

    yes i have tried accessing it through the frames collection as well, but no luck.. sory tsdragon , but ur code is not working neither... again here are the new page1.html and page2.html, maybe am misstyping something... <html> <head> <title>page1</title> </head> <body> <div name="c"...
  6. webmast3r

    Sybase Network Server

    this is the command for sybase 5.5, i hope it's the same for sybase 5.0 C:\"installlocationofsqlanywhere"\WIN32\dbsrv50.exe "dbfilelocation" -n "servernametogive" -x TCPIP -ti 0 ex: C:\SQLANY50\WIN32\dbsrv50.exe D:\database.db -n DBSERVER -x TCPIP -ti 0 hope this helps... cheers, Dan
  7. webmast3r

    Simulate a button on a form being pressed...

    when u put a button type as submit, it will automatically submit the form... if you need to run a special code when u do the submit u can do it in two ways: 1- specify a onsubmit action (note that in this case you have to add a return false in the showpage function, or else the form will be...
  8. webmast3r

    access the innerhtml of a div inside a frame

    yes i have tried... that was my first try.. but it gave me a javascript error (object required) so i changed it to: document.getElementById('f').content.innerHTML which doesnt give any error, but doesnt show anything as well.. any other hints?
  9. webmast3r

    sybase server shut down

    dear experts, i currently have a point of sale system (vb6) with a sybase database (sybase sql anywhere v5.5.04 build #1890) everything was working perfectly until i started having a recent problem recently... sometimes, the server just shuts down (and disappears). what could be the reason...
  10. webmast3r

    access the innerhtml of a div inside a frame

    hello. i have a page (index.html) that has an iframe (normally i will make it either very small or hidden) the frame points to a url(page1.html) here's the source of page1.html <html> <head> <title>page1</title> </head> <body> <div name="content" id="content">contents in here</div> </body>...
  11. webmast3r

    union sql + order in a stored procedure

    hello: i am creating a stored procedure that will select fields from 2 tables, and then order the resulting set according to the fields index. i.e. 17th field in the record (discountedcost) the weird thing is: if i use the select sql directly from vb6. dim rs as new adodb.recordset rs.open...
  12. webmast3r

    Dynamic Ads using xml and flash

    hi there, i am creating a small ad rotator,that will rotate a list of ads that i have in an xml file! avery advertisement has the following properties: filename, filetype, duration, url ex: filename: ad01.gif filetype: image duration: 15 seconds url: www.url.com filename: ad01.jpg filetype...
  13. webmast3r

    block access to windows desktop

    hi everyone, i am creating a sort of virtual desktop, and i already have blocked all access to everything... i also simulated the task bar... the user has only access to some icons (internet explorer, irc, ..., some games, office applications,...) i have blocked all windows shortcuts...

Part and Inventory Search

Back
Top