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. roleki

    !!! Log file no longer updating?

    Ok, so by all appearances this is operating as intended? If so, that's a relief. The explanation makes the fact that all of the log files on that server were last updated at the exact same time a lot less ominous. What caused me to panic a bit is that our Sharepoint DB has log files that seem...
  2. roleki

    !!! Log file no longer updating?

    According to the properties of the DB, the Recovery Model is Simple, with Compatibility Level set to SQL Server 2000 (80), if that's relevant or not. As far as whether it is the live logfile, if I am reading the Files properties correctly it is. However, the DB resides on one disk and the log...
  3. roleki

    !!! Log file no longer updating?

    I happened to be browsing the directory where our ERP system's SQL DB is stored and noticed the log file has not been updated in over a month. Any idea It's a SQL 2005 DB, and the logfile is at 1.1GB for a 6GB DB, set to grow by 10% up to 2GB. The drive it is on has plenty of space, any...
  4. roleki

    Repeat DataGrid Headers every X rows (help)

    I have a working solution to repeat DataGrid Headers every X rows, but the approach I took only works if there's a single DataGrid that needs repeated headers. Can anyone think of a way to tweak this so that I might be able to use it on any page, regardless of the number of DataGrids that...
  5. roleki

    XML to DataGrid ok - now what? (moved)

    Thanks for your suggestion; as it turns out, the answers was staring me in the face the whole time. All I needed to do was set the DataTextField to "ReportName" and eliminate the DataNavigateURLFormatString setting entirely, and things are working as I wanted them to. May not be entirely...
  6. roleki

    XML to DataGrid ok - now what? (moved)

    I'm using VB.NET (2005) to set up a 'home page' for what will eventually be a slew of single-page reports on our corporate intranet site. I don't want to be bogged down with a lot of table editing when I go to put a report up for consumption, so I thought I'd just have a simple DataGrid with...
  7. roleki

    XML to DataGrid ok - now what?

    Will do, thank you.
  8. roleki

    XML to DataGrid ok - now what?

    I'm using VB.NET (2005) to set up a 'home page' for what will eventually be a slew of single-page reports on our corporate intranet site. I don't want to be bogged down with a lot of table editing when I go to put a report up for consumption, so I thought I'd just have a simple DataGrid with...
  9. roleki

    A bit lost, can anyone point the way?

    Thanks; I tried your suggestion but .Rows is not a member of System.Data.DataSet; I tried dsLabelFields.Tables(0).Rows(0).Item(1).ToString() and that worked, except I have to use the column index rather than the name of the column when grabbing data; otherwise I get an error that "[name of...
  10. roleki

    A bit lost, can anyone point the way?

    Thanks for the link; for this application, it's ok to just get the one address per trip - the labels will be attached to skids of stock to identify them as 'part of somesuch shipment' so that the skids won't inadvertantly make their way into the wrong staging area. Unfortunately, I can't do...
  11. roleki

    A bit lost, can anyone point the way?

    I'm trying to write a little application in VB 2005 that prints address labels based on user input, but having verified everything works using textbox input, I want to step it up a bit and use a SQL Query to drive the various address fields. That's where I'm running into trouble... I went to...
  12. roleki

    Having trouble with Excel in DataSet

    Hm; if that's the case then my current approach is going to be problematic because .Row(x)(x) only accepts ints for x. Thanks for pointing that out :) Back to the drawing board, I suppose.
  13. roleki

    Having trouble with Excel in DataSet

    I'm using a DataSet to help me map out relevant cell coordinates in an Excel file; I'm using DataSetName.Tables(TableNum).Rows(RowNum)(ColNum).ToString() to get to the relevant bits. This had been working out, but I ran into a problem - I can't seem to access a group of merged cells that are...
  14. roleki

    Exchange vs. Notes: mail only

    There's an AD migration in there, too. But, corporate is doing as much of the legwork as they can, so it's not like they're handing us a brick and asking us to build a space shuttle out of it. As far as the Notes/Exchange thing goes, the most tangible issue we've come up with so far is that...
  15. roleki

    Exchange vs. Notes: mail only

    Uh-oh. I was counting on that to be the easy part! Well, not really - I've read a lot of negative things about Office07, but had hoped that most of the complaints were overblown. As far as the migration to Lotus goes, I'm going to assume that it's a done deal, provided there's not a...
  16. roleki

    Exchange vs. Notes: mail only

    The company I work for was acquired by a much larger international entity a few years back. For the bulk of that period we have been allowed to continue using our exsiting applications, such as Office & Exchange 2003. Today we received notice that we are required to justify our adherence to...
  17. roleki

    How can I Sort AND Edit on the same page?

    That's where I'm kind of stuck. This report (and a dozen others like it) were designed and implemented LONG before the user request to add Comments came about. That means whatever solution I come up with to add Comments to this project has to port well to the others. At first it seemed like a...
  18. roleki

    How can I Sort AND Edit on the same page?

    Hm, would it be possible to break out of the Page_Load .DataBind() on IsPostBack so that the .DataBind() from the given _EventHandler's is the one that takes hold? Would I want to? Or, more to the point, if I *did* circumvent the Page_Load .DataBind() would that have any effect on the...
  19. roleki

    How can I Sort AND Edit on the same page?

    Actually, switching the order of EditItemIndex-1 & .DataBind() did eliminate a secondary problem of leaving the re-rendered page in Edit state with a Cancel button that generated an Invalid postback/callback error, so yay for that :) As far as Page_Load goes... (Please bear with me, I...
  20. roleki

    How can I Sort AND Edit on the same page?

    Aye, sorry about not using code tags. The codebehind: using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Configuration; using System.Web; using System.Web.SessionState; using System.Web.UI; using...

Part and Inventory Search

Back
Top