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 Mike Lewis 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. JBalcerzak

    Receiving and returning XML data

    Hello, I need to receive XML data from an Http POST and then return XML data via the response. I had setup an ASP.NET page to parse the data and render the returned XML. It works fine on my test server, but when I get it out in the real world, I'm getting 500 errors in my test client. I...
  2. JBalcerzak

    Mobile ASP.NET app hangs up

    Thanks - I'll disable viewstate on the grid and give it a try. We're using forms authentication with a custom module that checks use credentials against a SQL Server database. That part works fine. Its just when I get to this page with the grid that it gets piggy, but what you guys have said...
  3. JBalcerzak

    Mobile ASP.NET app hangs up

    Hi Jason, One server is in my office behind a firewall - other is in my office in Ohio behind another. Same behavior both places - works fine through regular browser over LAN or WAN, but with a couple of mobile devices, it just waits and waits for a server response when I click on a link or...
  4. JBalcerzak

    Mobile ASP.NET app hangs up

    Hello - Hoping someone might have an answer to this question. I've got a ASP.NET mobile app that I'm connecting to from a mobile device. The app works great when I'm running over a local IP address, but it hangs up when I run it over the internet. It doesn't make any sense to me at all and...
  5. JBalcerzak

    Outlook Appointment as Message Body

    Hi, I'm trying to setup a process that will send a user an Outlook Appointment. I've been able to create a .ics file and send that as an attachment and that works fine, but my fear is that somebody will miss that and I'd really like to use the format that Outlook uses where the appointment...
  6. JBalcerzak

    Printing to Multiple Drawers

    Thanks for the reply, but I'm really looking to avoid having to use a 3rd party app.
  7. JBalcerzak

    Printing to Multiple Drawers

    Hi, I'm trying to create a report that would print to the top drawer of a 2 drawer printer and then use the other drawer for the second page. Replacing our dot-matrix printers and multi-part forms with a high-speed laser that has 2 drawers in them. If anybody has any tips, it would be...
  8. JBalcerzak

    Drilldown section not printing or exporting

    Hello- I've got a Crystal report that has some customer summary information. When I click on a category, I display the contents of the drilldown on screen, but I can't print or export that detail. When I go to print, all it prints is that summary info. Anyone got an idea? Thanks, Jeff
  9. JBalcerzak

    Bad Page ID during simple query

    Thanks, I'll give it a try.
  10. JBalcerzak

    Bad Page ID during simple query

    I'm getting the following error when I try to do a simple query on our database: I/O error (bad page ID detected during read at offset 0x000001010bc000 in file 'F:\MSSQL\Data\Database.mdf' Is there any way to fix this, or do I need to dump and rebuild my database?
  11. JBalcerzak

    Full-Text Catalog Scheduling

    Yes - I've even manually started the catalogs, just can't seem to get the an automated incrimental catalog to startup daily.
  12. JBalcerzak

    Full-Text Catalog Scheduling

    Hello - I've got a full-text catalog on a text field in one of my tables. I think I've setup a schedule to incrimentally populate the catalog once per day, but it never seems to run automatically. I've got the "enable" check box checked, but it still doesn't run on its own. I'd appreciate...
  13. JBalcerzak

    DrillDown Error with Crystal Report Viewer

    I've got a Crystal Report that I created in Crystal Reports 9 which has a DrillDownGroupLevel reference to supress a header. When I try to load that I get an error which I'm guessing because I don't see that field available in the VS.NET version of the Crystal Report Designer. Anyone know a...
  14. JBalcerzak

    Data Grid loses focus when scrolled with wheel mouse

    Hello - I've got a data grid with some stuff in it. When i select an item, and then use the wheel mouse to scroll up or down in the grid, my grid loses focus when the selected item moves out of the grid's visible area. Anyone know if there is a way I can prevent this from happening, or is...
  15. JBalcerzak

    DataGrid Buttons

    Glad to hear it - if I wasn't having a similar problem a few days ago, I wouldn't have stumbled across your post. Once I found a solution, I figured I'd pass it on...
  16. JBalcerzak

    DataGrid Buttons

    You could add a template columns to your grid instead of using the property builder columns. Then in the template column, you can add server side controls like labels and textboxes to them and validate the controls using server validators - worth a try anyway...
  17. JBalcerzak

    DataGrid Buttons

    I had the same problem with mine a little while back, and once I wrapped the the initial fill in the Page_Load method to prevent it running during a post back, everything worked great.
  18. JBalcerzak

    DataGrid Buttons

    You have to modify your Page_Load method. More than likely, you are doing something like this: private void Page_Load(object sender, System.EventArgs e) { // load your grid daMySource.Fill(dsMySource1); grdMyGrid.DataBind() } The push buttons in a DataGrid cause a post back...
  19. JBalcerzak

    VFP to SQL Server String conversion

    Thanks, I'll give that a try. Right now, I've got a T-SQL script that I'm running through Enterprise Manager to clean the data before I use it.
  20. JBalcerzak

    VFP to SQL Server String conversion

    Hello - Working on a conversion routine to move an old VFP5 DB to SQL Server. When I update a string field on SQL Server with data from the VFP DB, it pads the remainder of the string with spaces if the string I'm sending is smaller than the field size in the SQL DB. Any way I can get VFP to...

Part and Inventory Search

Back
Top