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

    DELETE Query issues

    Hi guys, I have a table [20120627CSV] with 200k records in it and a Column called Group. I need to delete all records that do not belong to more than one group. e.g. Name | Date | Group --------------------- Record1 | date | 1 Record2 | date | 1 Record3 | date | 2 Record4 | date | 3 Record5...
  2. corchard

    Disabling links using css for a print preview

    I use a CMS that automatically publishes a print variant of every page in my site. I'd like to use a different CSS for the print version that will disable the hyperlinks that may be on that page, so people don't navigate through the print variant version of the website. Anyone know how to...
  3. corchard

    Custom cursor control...

    I seem to remember in VB being able to affect the cursor property from code. In Access 97, can you change the cursor's source to a custom *.cur ? (The docmd.hourglass method does not suit my needs.) Thanks in advance Chris "Illegitimis non carborundum" (don't let the b@st@rds get...
  4. corchard

    Editing Stored Pass-through Queries via VB

    I have an existing Pass-through query that I need to edit on the fly using code. Specifically I need to replace a string in this passthrough query then save it back into the project whereas another Make Table query will access it. I've tried using CreateQueryDef, but whenever I try to specify...
  5. corchard

    New System.Drawing.Bitmap problem...

    "BC30519: Overload resolution failed because no accessible 'New' can be called without a narrowing conversion" referring to the line "Dim tb as New System.Drawing.Bitmap(iwid, iHt, PixelFormat.Format24BPPRGB)" below. If I replace the variable: iwid with a physical integer...
  6. corchard

    Using VB Split() to create an array with Access 97

    I know the Split() function was introduced in VB6, but I'm wondering how I can get Access 97 to recognize/use it to turn a string into an array. I have attermpted to change the References to address it, but from what I can see, the Reference: "Visual Basic for Applications" is the...
  7. corchard

    Duh, is there an easy way to stop code?

    I have a very complicated process of functions and code, and wondered if there is an easy way to halt or stop the code midway through the process like Break; does for a loop. Something like exit or end? ...without causing a javascript error message that is ;-)
  8. corchard

    Retreiving an item() number without looping?

    I need to retreive a page item number without looping so I can reference it. I currently have code set up like this, but it can take upwards of 45 seconds to process if there are a lot of items on the page: function CalClick(theObject){ for(var i=0;i<99999;i++)...

Part and Inventory Search

Back
Top