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

  • Users: sheykc
  • Content: Threads
  • Order by date
  1. sheykc

    Disable Viewstate with editable datagrid

    Ok, here is a tough one. My client has a page that needs to run significantly faster when it postbacks to the server. This page uses an editable datagrid, like a spreadsheet, that can have 0 rows to 1000+ rows. They don't want paging, so that's not an option. I'm also using VS 2003. I have...
  2. sheykc

    2003 Web Server is running slower than my XP version

    I'm in a crisis here. I just realeased a new web app last Monday. Apparently, something didn't show up in testing of about 7 or 8 people. When we went live, it jumped up to 15 to 25 users. The server is running so slow right now, people time out. The main page that causes the problem is a...
  3. sheykc

    Automatically Close Popup window

    I'm working with an ASP.NET application. On one of the buttons, I've added javascript to open a popup window that simply says "Please Wait". That window needs to stay open until the processing is done on the .NET webform. The problem is, how do I close that window automatically...
  4. sheykc

    Automatically Close Child Window

    I have a main page that calls another webform thru Javascript, on a button's onclick. This second page only displays "Please Wait". This is needed because sometimes it takes several minutes for a page to refresh or save and we want the users to know the system is doing something. The problem...
  5. sheykc

    Client Side Calculation in Grid Question

    I have a grid that has 2 textboxes and several labels per row. If the user changes a value in the textbox, it needs to update the calculations on that row and in an html table at the bottom. Currently, I am using server side code with the text_changed event. But if this is a large contract...
  6. sheykc

    AcceptChanges in datagrid with multiple rows

    I have a datagrid that has many editable fields on the grid. When the user is done, they click save and it updates all the rows. The dataset is populated via a stored procedure. This all works great. The problem I have now, is when they click on the "Add Items" box to add a new row to the...
  7. sheykc

    Need some creative geniuses on adding items to a grid

    I'm stuck on a problem, and I was hoping that someone here might have a good idea for me. I have sales reps that need to be able to quickly add items the company sells, to a grid. The old cold fusion app had them type in an item number (or several item numbers) into a textbox and then it added...
  8. sheykc

    Masking textbox question

    We are wanting to mask textboxes to help with populating dates, such that the " / / " is already in the textbox when the user starts typing. Is there a solution built in to .NET to do this?
  9. sheykc

    Buttons in header of grid

    Is there a way to create a button in the header of a grid? My users want to click this button and have all the checkboxes below it either check or uncheck, like it did in their old system which used tables. Thanks.
  10. sheykc

    Postback resets the page to the top

    I have several controls on my page that do a postback (dropdowns, textboxes, checkboxes, etc). I have textboxes inside my grid that once the user changes a value in the textbox, I have to recalculate other fields in the grid and on the page. The problem is, when the postback occurs, it resets...
  11. sheykc

    Postback questions

    I'm struggling with the postback on .NET forms. I'm obviously not understanding something. In the declarations of my page I have this: Dim dsPricing As DataSet In the form load function I have this code: If Not Page.IsPostBack Then If dsPricing Is Nothing Then If blPricingFlag =...
  12. sheykc

    Session Expiration - Force User to Login again

    I have been on websites like Bank of America, where if you don't do anything with the website for 5 or 10 minutes, a box will appear telling you your session has timed out. I need that type of functionality in my app. Does anyone have any suggestions on how I can force a window to popup after...
  13. sheykc

    Unable to start debugging on the web server

    This is a problem I have encountered since installing VS.NET 2003 (just installed). I have googled this error and searched thru several forums including MSDN. The exact error I get is: Error while trying to run project: Unable to start debugging on the web server. No more messages. No...
  14. sheykc

    How do I Pass Parameters to Crystal .NET

    I have a report (Claim.rpt) that needs 1 parameter passed to it. The report was added to my .NET application. This report accesses the stored procedure via a "Command" inside of the report. The parameter variable inside the report is called @Claim_ID. I also have a webform (ViewClaim.aspx)...
  15. sheykc

    Help with formula and dll

    My harddrive crashed 2 weeks ago and ever since we installed the new harddrive, my crystal report won't work anymore. I did this report back in January, but didn't document my changes. (I know, rule #1). Anyway, I had forgotten that I created a VB app, that updates my database, via a stored...
  16. sheykc

    Passing values from Page 1 to Page2

    I've been searching the forums here and everywhere I can possibly locate, to figure out how to pass 2 values on webform1 to webform2. Once I have the data on webform2, I will be calling an XML object to retrieve more data. I don't want the information viewable (querystring), because it...
  17. sheykc

    ADO Seek command

    I am trying to use ADO's seek command against data that I returned from a Sybase SQL server via a stored procedure. When I issue the seek command, I get a VB error that says "Object or provider is not capable of performing requested operation". The provider I'm using is MSDASQL. Any...
  18. sheykc

    FSO FolderExists

    I am trying to use the FolderExists method on the Filesystemobject. I'm using the unc name, ("\\servername\username") and if I check to see if my account exists, it works fine. However, if I put in someone elses name on the network, it tells me it doesn't exist (even though it does)...
  19. sheykc

    Get Value into VB out of Report

    I'm writing a VB6 application that uses a crystal report. I simply want to get the value of a field that displays in the page footer. This is a runningtotal field. Does anyone know how to get this value out? This process is driving me crazy!!
  20. sheykc

    Printing pauses between jobs

    We have a strange problem with our printers. I'm not sure if this is a printer server problem, or a printer problem. We are printing to an HP 9000 printer and when we send multiple jobs to the printer, it will print about 11 jobs, then pause for 4 minutes. Then it prints another 11 jobs, then...

Part and Inventory Search

Back
Top