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 SkipVought 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. MSMINNICH

    Wise for Windows Installer insists on "Advertising"

    Thanks, but it still happens! More info... I'm not writing anything to HKEY_CURRENT_USER (I read that that can cause the problem). Any other ideas? Thanks again!
  2. MSMINNICH

    Wise for Windows Installer insists on "Advertising"

    Hi, All; I'm having problems with a upgrade I'm doing with Wise for Windows Installer. It uninstalls the old version of the application, installs the new version of the application (I can see the files in the folder), but when I click on the Applications Icon, it tries to install from the...
  3. MSMINNICH

    Reordering Listview

    That's pretty much how I ended up doing it. It just semed to me that I should be able to accomplish the same thing using the objects... Thanks a bunch for your help!
  4. MSMINNICH

    Reordering Listview

    All- I have a screen where I have a Listview control with multiple subitems (columns from a query). The order of the ListItems is significant. I want to give the user an option of reordering the ListItems by selecting one and using an up or down command button. I can't seem to make this...
  5. MSMINNICH

    Query to return last known date with details from different table

    Rather than use a query to join in the Ledger Entry table, if all you need is the last posting date try the DMax function- something like Dmax("PostingDate","LedgerEntry","VendorNumber = " & [VendorNumber]). You could also create a query based on the Ledger Entry...
  6. MSMINNICH

    Attaching Oracle tables in code-

    Does anyone have code to reattach Oracle tables? I had some code once that queried a table for a list of objects to attach from an Oracle database and then added TableDefs for them, but I can't seem to find it. Any help would be appreciated.
  7. MSMINNICH

    User Controls

    John; By constituent controls, do you mean the User Controls? The App doesn't have any special stuff like Sheridan controls or anything, but the programmer encapsulated some of the functionality into user controls which sit on forms. Do I need to compile the User Controls seperately? I don't...
  8. MSMINNICH

    Need Crystal Report Control for VB Help File

    OK, Found it... The bad news is that I didn't notice that you have to pay to download... Not too bad though. It's only $15. The URL is http://support.crystaldecisions.com/library/ Then searh for User Manual. You can also get a developer's guide. Scott
  9. MSMINNICH

    User Controls

    John, the word in question id From. The exact message is "Failed to load ctlCustomer from. Your version may be outdated." (not a typo). The program runs OK in the IDE, this just happens when I make the install set and install it on the test machine.
  10. MSMINNICH

    Need Crystal Report Control for VB Help File

    You know, now that I go back and look I can't find it either! I'll look again later and let you know if I can find it. Scott
  11. MSMINNICH

    Need Crystal Report Control for VB Help File

    I don't know about the help file, but I noticed this afternoon that you can get the developer's manual online. It's in the support section of www.crystaldecisions.com
  12. MSMINNICH

    User Controls

    John; Thanks. That's what I thought. I figured they were the equivalent of C++ classes (almost). So why do you think I'm getting the message above?
  13. MSMINNICH

    User Controls

    Thanks, Tekno, I think we're close... Are the User Controls compiled seperately? They appear to be a part of the project. I can find ctlCustomer.ctl (I think that's the extension)(source code, I can't remember the extension, because I'm home now) and ctlCustomer.ctx but no ctlCustomer.ocx...
  14. MSMINNICH

    User Controls

    Hi, All. I have a VB 6 application that uses several User Controls. I'm A) Building the application B) Making an install set using Installshield Express C) Test installing on a Win 98 system I get an error "Failed to load ctlCustomer from. Your version may be outdated." Any...
  15. MSMINNICH

    How to add an "ALL" in Combo Box

    Are you trying to enetr criteria for a report or is this for data entry?
  16. MSMINNICH

    Avoiding Multiple Deletions

    That is one of those simple, elegant solutions that only comes around occasionally. Thanks! Scott
  17. MSMINNICH

    How to add an "ALL" in Combo Box

    There's a lot easier way to do this... In the rowsource of the combo use "Select Fieldname from Mytable UNION Select "All" from Mytable" Of course if you're doing two rows, you'd use "Select MyKey,Fieldname from Mytable UNION Select "0","All" from...
  18. MSMINNICH

    Mutiple criteria for report

    Russ- Another way to do this is in your Report Open event write dim frm as form set frm = Forms!MyFormName Me.Recordsource = "Select * from MyRecs WHERE TimeCardID = " & frm.TimeCardID & " AND WeekEnding = " & frm.ComboWkEnd All on one line, of course. MyRecs is a table or...
  19. MSMINNICH

    alter a controls data type

    How about if you unbind the control and then plug in your value when you click on the button? You could use the Format function to reformat the field. I guess what I'm wondering is how you'll use the result. Do you need to change the datatype or just change the way the data looks? Scott
  20. MSMINNICH

    Avoiding Multiple Deletions

    Hi, All. I have a question that I'm hoping one of you gurus has solved in the past. I have a bound form with Record Selectors and I'm trying to make it as user friendly as possible. In the BeforeDeleteConfirm event I'm asking the user to confirm that they want to delete the record (I'm doing...

Part and Inventory Search

Back
Top