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

  1. smallpotato

    suspend the enter key to submit form at diff browser

    I'm using the following javascipt to "onkeydown" event at the controls to disable pressing Enter key to submit the form in the asp.net 1.1 pages --------------------- if (document.all) { if (event.keyCode == 13) { event.returnValue=false; event.cancel = true; return false; } } else if...
  2. smallpotato

    page output cache with "VaryByParm" & "VaryByCustom"

    Hi, I have some qns about page cache with "VaryByParm" & "VaryByCustom". At first, I use the page directive to set the output cache with "VaryByParm" on all query variables. The pages work fine. Then, I changed it to set them at code behind. Since the page cache need to be depend on some...
  3. smallpotato

    executable running error

    Hi guys, I'm developing an VB.NET application to access data at SQL server. It run perfectly at my local PC but error occurs when I place it to the file server. (1) Error occur when calling Enviornment.MachineName but ok for Envornment.UserName (2) permission problem on the...
  4. smallpotato

    deployment problem for .ASP.NET application with CRs

    Dear All, I had developed a ASP.NET web applications with crystal reports. It works fine at the local machine. Then, I created a web setup project with appropriate merge modules for deployment to the testing web server. After the installation, I found that every aspx pages work except those...
  5. smallpotato

    cannot navigate at web-based report

    Hey guys, I'm using VS.NET to create a report in a ASP.NET page. The CR viewer is invisible initially. The report would be generated after inputting the selection criteria & then pressing a button. It works fine - the report contents show at the web page. When I pressing the navigation button...
  6. smallpotato

    miss fields in CR9

    Dear All, I'm using CR9 to create several reports to access MSSQL server 2000 database at the DB server. They work fine. After a couple of days, I try to create another report with the same connection and database. The connection can be made, database can be opened and table can be selected...
  7. smallpotato

    export VFP data to MSSQL server 2000 regularly

    Dear All, I need to extract data from FPW26 tables & VFP5 tables and import into MS SQL server 2000 in a regular basis. The available tools are VFP5 & VB6. I'm considering to do it in the following ways : (A) using VFP5 to extract the foxpro data and then insert the results into MS SQL server...

Part and Inventory Search

Back
Top