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: *

  1. conraba

    Change/Remove buttons missing in Add Remove Programs Console

    You are right Chris, that's what our Network Guys concluded the reason why we opted just to install a fresh image into the machine and start over. It will be more waste of time to know what other things were erased inside the registry and more time trying to fix it. Also thanks to Linney for...
  2. conraba

    Change/Remove buttons missing in Add Remove Programs Console

    Thanks Linney for your reply, I already exhausted many hours looking thru google search and have tried things that made sense, but nothing worked since the registry keys are missing. Your comment about "Do any of the programs have their own uninstallers in their Program Files folder?", Yes...
  3. conraba

    Change/Remove buttons missing in Add Remove Programs Console

    I am running XP w/ sp2 with some development tools installed. For some reason I can't determine, all entries in the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall were erased after installing an update in the machine, causing the Change/Remove buttons not to display in...
  4. conraba

    Is Lower frequency better than Higher frequency GSM?

    Some GSM companies use only 1900 while others use both 850/1900 or equivalent. Of course if you use more frequency band , the more users will get better reception, but is this due to the lower frequency provided by the telco?
  5. conraba

    Normal querys VS stored Procedures

    The best practice is to have your code centralized and separate according to use. Separate SQL with app code. You get better performance output from both your app server and database server since each will be used natively to their level. You gain scalability by doing so.
  6. conraba

    How to retreive window.showModalDialog dialogArguments in C# code?

    Verified the same idea on another forum using the concept of placing the arguments in a hidden field and reposting the page to be able to retreive Argument values @ postback. Maybe there is another way w/o needing any reposting of the page.
  7. conraba

    How to retreive window.showModalDialog dialogArguments in C# code?

    Almost, but I need a code sample where the modal page actually reads the Arguments passed into C#. Not sure w/c actual namespaces and property functions would be able to handle this.
  8. conraba

    How to retreive window.showModalDialog dialogArguments in C# code?

    Hi, I am creating a modal dialog box via javascript and passing argument parameters in an array form using this syntax: vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures]) when the modal page comes up, i would like to retreive the argument parameters in C# upon...
  9. conraba

    Outline Numbering Scheme Script

    Hello All, Does anybody have a script to edit and maintain a Numbering Scheme as show below: Number Item 1 Parent1 1.1 ChildofParent1 1.2 Child2ofParent1 2 Parent2 2.1 Child1ofParent2 2.2 Child2ofParent2 2.2.1...
  10. conraba

    How do you check if window is done loading?

    Jeff, My fault, I should have explained more on what I was doing, its something like this. URL - is an array containing "links" to a document ex. ftp://a-server/the_files/sample_notes1.doc ftp://a-server/the_files/sample_notes2.doc ftp://a-server/the_files/sample_notes3.doc...
  11. conraba

    How do you check if window is done loading?

    Hi, I have a a code in the parent window coded as such var myWind=open(URL,'window' + i) URL - is a link to an ftp site that contains ie. word or pdf file. Thru a loop, I am openning a new window per document based on a link specified in the URL. Every window shows a new document...
  12. conraba

    Refresh popup (javascript)

    Dr. Stern, I see why the code was not working, you were using a link to do a submit of a form, that won't work. In the following code, I used a button instead, this made the modal page to reload: <!-- --------------Test.htm ---------------- --> <HTML> <HEAD> <META...
  13. conraba

    Refresh popup (javascript)

    You have to clear your browser cache when testing a page that involves javascript changes. I know it works, I have that code on several pages I am working on. Try it one more time after clearing out your Temporary Internet Files. /conraba
  14. conraba

    Refresh popup (javascript)

    Dr. Stern, I have a working code of a dialogbox refresh. Sample code goes something like this: function onLoad() { window.name=&quot;fixname&quot;; } <body onload=&quot;javascript:onLoad();&quot;> <form method=&quot;POST&quot; name=&quot;MyForm&quot; id=&quot;MyForm&quot...
  15. conraba

    SQLServer Table Heirarchy List

    I wanted mainly to get the table hierarchy on a database considering the constrains that are in-place. I found this script however, it chokes out when running it on a large database of about 260+ tables. Anybody has an idea, I will greatly appreciate it...
  16. conraba

    SQLServer Table Heirarchy List

    Does anybody have a script to retreive tablenames FK dependencies, making it helpful in determining the hierarchy of tables in a database?
  17. conraba

    HELP me change CR Connection in ASP using UDL

    I have an ASP page calling a Crystal Report. The Report was created to use a UDL file for connection. How do I change connection at runtime using a different UDL (file) connection? The reason being is I want to use the existing connection that my ASP pages use, w/c is thru the UDL file...

Part and Inventory Search

Back
Top