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 bkrike 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: needscoop
  • Content: Threads
  • Order by date
  1. needscoop

    vfpodbc.dll to vfp ole db? iis5/2000 to iis6/2003

    Classic asp app: wanting to port .asp code using fox2.6 dbf tables from iis5/2000 to iis6/2003, but the the tables are not found. Would changing the conn string from vfpodbc.dll to vfp ole db solve this?
  2. needscoop

    delete other user's Task List reminder from C# app

    How does one delete "another" user's Task List reminder from C# app? some info I stumbled on... Task View - User Reminders hand-entered in the Task List window. These reminders can be checked off as you complete them. Separate sets of User notes are stored for each user within each...
  3. needscoop

    automated backups

    Win2003 - setup automated MySQL backups via the Administrator.exe (v1.2.12) gui - this created scheduled tasks. The scheduled tasks appear to run, but there's a cryptic error message in Event Viewer... "The description for Event ID ( 1 ) in Source ( MySQL Administrator ) cannot be found. The...
  4. needscoop

    DTS job modified... will scheduled job still run?

    I modified an existing local DTS package - do I need to drop/recreate the scheduled sql server job associated with it? or will the job still work?
  5. needscoop

    VS2005/C# - app.config file HELP!!!!

    C# VS2005 project - I changed an app.config user setting via the Solution Explorer's Settings.settings gui (grid), and then when I subsequently open the project it keeps bringing up an informational screen which I cannot get past unless I close the project! The message is "Value of setting...
  6. needscoop

    General question about PocketPC devices

    We acquired some pre-owned PocketPC scanners recently. One of them seems to scan better from a further distance than the rest of them - is there a way to adjust (tweak) the scanning distance?
  7. needscoop

    Fox 2.6 - printing multiple reports to printer user selected

    FoxPro 2.6 - Want user to select a printer (via PROMPT), then have multiple reports generated/printed to that same printer (which is NOT the user's default printer). Below is the code snippet I tried using - the problem is that the first report prints to the printer the user selected, but the...
  8. needscoop

    C# dotnet control panel placements

    Can you control the location where a panel appears, in relation to another panel? Desired sceanrio: I want 1 panel as a "header" panel whose width is 100% the majority of the time. On some occasions there's a 2nd panel I want to appear to the left of it, having a width of 10% - I want the...
  9. needscoop

    redisplay of datagrid in panel's placeholder doesn't occur

    I have a linkbutton click event that displays a datagrid within a panel's placeholder. That works well. One of the datagrid's cells is also a linkbutton, which provides more detail via a table (swaps datagrid out, table w/details in). The detail has a "back" linkbutton - when user clicks it...
  10. needscoop

    Dynamic ListBox selecteditem HELP!!

    Scenario: 1) a button click event occurs, causing initial post event - renders a page displaying some data from a query 2) a dynamically-populated radiobutton choice is clicked, triggering IsPostback event, then radiobutton clicked event. 3) next step desired: radiobutton click causes 1...
  11. needscoop

    Tweaked code ok in test not in prod

    Tweaked some C# code. The tweak works in test (stepped through it okay), but it's not working in production. Any idea's ??? I know this is somewhat vague - just looking for a list of several deployment "check this.." considerations to rule out.
  12. needscoop

    Which is better for array check? .GetLength or .Length

    Determining count of array (1 dim) elements (words within a string) - which is better approach to use: .GetLength(0) or .Length ? Is one approach better than the other, or only marginally? See code snippet below: string[] MyCheck = mystring.TrimStart().Split(' '); int MyItemsCnt = 0...
  13. needscoop

    log shipping sql2000

    in a nutshell (another person is working on this, not me) SqlServer2000 log shipping transfers trans logs to secondary server, but restoring the trans logs on secondary server works for awhile, but then seems to hang. What could cause this? nonlogged transactions? anything else come to...
  14. needscoop

    warning CS1591: Missing XML comment for publicly visible type or membe

    I've enabled documentation for a C# project, but now when I compile I get scores of the "warning CS1591: Missing XML comment for publicly visible type or member ..." warnings! I'm putting /// <summary> and ///</summary> stmts within the method (with /// comments sandwiched in between the...
  15. needscoop

    change textbox.text before server.transfer

    I can type text into a textbox, and display that text on the page I do a server.transfer to. However, if I programtically change the textbox.text before the server.transfer stmt (within button click event) the destination page displays the text that was typed, ignoring the change I made to the...
  16. needscoop

    FoxPro 2.6 and dotnet

    Can one write a (dotnet) .aspx page that displays and updates a FoxPro v2.6 table? This was simple to do in .asp, but from threads I've read it's not clear if this can be easily done in dotnet?
  17. needscoop

    want to move files of certain extension to another folder

    Is there a quick way to a &quot;blanket&quot; move all files of a certain extension to another directory. This is for archiving purposes. Example: move all *.xls files from C:\Current to C:\Archive I've used File.Move to move a specific file, and used MoveTo() to move all files from an...
  18. needscoop

    how do you reference a column?

    How does one reference the name of a particular column in the given row? Assume the 3rd column contains the OrderNumber. Want to do a control-break when different value is detected in the OrderNumber column. foreach(DataRow myRow in myTable.Rows) { if CntlNbr <>...
  19. needscoop

    C# newbie (as in real new) Tryin

    C# newbie (as in real new) Trying to make a label bold when user clicks it - but this code does not build. Any idea why? (from Windows application) private void lblMain_Click(object sender, System.EventArgs e) { this.lblMain.Font.Bold = True; }

Part and Inventory Search

Back
Top