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 rsubras

  1. rsubras

    Accessing a textbox value on the parent form

    hi, i am not that skiled in asp.net. but with my limited kn owledge , i feel sending thru get or post method will help..or u can have hidden field right
  2. rsubras

    how many classes do I need to import?

    probably my question wasnt clear JC... like include System.Web.UI does not automatically include System.Web.UI.WebControls rite? or am i wrong?
  3. rsubras

    how many classes do I need to import?

    Is there anything in .NET to include all the subclasses inside a package instead of including each one seperately as we have in java import java.awt.*;
  4. rsubras

    Finding an error (circular reference) using VBA in Excel

    hi, thanx for that mal2ty.....and when i find one also i will post in here... regards, R.Subramanian
  5. rsubras

    Finding an error (circular reference) using VBA in Excel

    Hi, I came across the same kind of error. but anyway since i was not doing any automation project i just debugged the program and using the help in Excel i trapped that circular error.......But if that could be achieved in VBA code I think that would be of great help......When you get such...
  6. rsubras

    Browser prob with Layers

    dear kikaikai, div is a IE+ only tag and netscape's equivalent for it is <layer> tag...so in ur script u put a browser check script i.e if document.all it is internet explorer if document.layers it is netscape and depending on the browser u tailor the code take care regards R.Subramanian
  7. rsubras

    problem with page loading slowly

    Hi, i dont think secretsquirrel is asking for flash redirection ....instead he wants flash style redirection.....hope i am not wrong.... well.......anyway thatz an interesting question indeed..........secret squirrel.....when u get an answer plz post it in this forum itself.i hope it would be...
  8. rsubras

    Passing values between form pages

    hi philip, as u know, all html pages are served on the web using HTTP protocol...The problem with HTTP protocol is it is a stateless protocol..i.e it does not maintain the state between an user request... so in order to make ur server remember the user information, what u have to do is...
  9. rsubras

    Dumb Question

    hi, try window.open(&quot;window-URL&quot;,&quot;window-name&quot;) if u want the window to have no toolbars then write window.toolbar.visible=false to maximize a window use the folowing function function MaxFunc() { if (window.screen) { var x1 = screen.availWidth; var y1=...
  10. rsubras

    Attention guru's!!

    hi, i am not solving ur problem, the way u want...but well letme give a try...if u r using IE browser, then why dont u open a Excel application in the background and copy the values from ur page into a spreadsheet and save it... well this is just an idea, not even sure how useful or silly is...
  11. rsubras

    i have diabled the ctrl key, except....

    hi, no no zippynz... try this if(document.all) if(e.keycode==17) window.event.returnValue=false this should work i suppose...anyway i will test it and give u the confirmed one later...
  12. rsubras

    i have diabled the ctrl key, except....

    hi zippynz. in ur code u have disabled all the keys and hence the result........i think if you change the code if keycode==17 (which is the key value for ctrl key) that key alone should be disabled........that would solve ur problem i suppose and btw friend, not all users press ctrl+n...
  13. rsubras

    Simple code does not work

    hi vituz, scripts can be placed anywhere inside a html page and not necessarily at the <head> section even though it is advisable to place it there........ and modeler as haslo told enclose the arguments with single quotes...bcoz u want to pass literals to the function and what u have...
  14. rsubras

    How can I solve this problem? I ha

    hi, well cocus..........there is no head or tail to the doubt and i think at present only u know what is the doubt u r having in ur mind....it would be nice if you reveal it to us also...plzz Thanx R.Subramanian
  15. rsubras

    To frame or not to frame?

    hi engcomps, so finally u have decided on ur website eh? btw pal.......are u a structural engineer?? ( i saw ur website..)..that is really great.....btw me too a civil engineer basically (now working as s/w )....anyway nice to see a fellow civil engineeer specialised in structures...My...

Part and Inventory Search

Back
Top