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

    Implement RemoveAt for a BitArray

    I guess I was hoping for a "magic bullet", but it looks like either memory or performance has to give. Based on the sets of data I will be working with, I think I need to lean more towards keeping the memory usage down. I've been toying around with the idea of using some sort of black list as...
  2. darkangrydragon

    Implement RemoveAt for a BitArray

    Interesting idea, but the only problem I see with using linked lists (or a hash table) is that I lose the advantage of the small memory footprint of BitArrays.
  3. darkangrydragon

    Implement RemoveAt for a BitArray

    Hi Everyone! Does anyone know what the most efficient technique would be for implementing a RemoveAt procedure that functions on a BitArray? I will be working with BitArrays that have on average around 100,000 indexes and will need to perform a large number of RemoveAt operations. My end goal...
  4. darkangrydragon

    My Network Places slow

    Hi All! We have a Windows 2003 server running the File Server service. We've setup several shares and have about 10 Windows 2000 clients connecting to the server. We are setup as a domain and are running DNS. When a client navigates to a share via the "My Network Places", directory listing...
  5. darkangrydragon

    How do I create an ActiveX UserControl for MS Access

    Hi everybody! I know how to create ActiveX UserControls and DLL's. But my question is, how do you create an ActiveX UserControl that can be bound to a field in Microsoft Access? For example, say I create an ActiveX UserControl project in VB 6. I draw a text box on the control, Text1. What...
  6. darkangrydragon

    Update one database with data from another

    Well, You could do this through VBA by opening a connection to your second db from the first and then using an SQL INSERT INTO statement. I don't have the exact code in front of me, but it is possible... Good luck! -Andrew
  7. darkangrydragon

    Update one database with data from another

    It's not very elegant, but: 1. Open Database A. 2. Open Table 1. 3. Press Ctrl+A to select the entire table. 4. Press Ctrl+C to copy the entire table 5. Open Database B. 6. Open Table 1 (in Database B). 7. Go to the add new record line at the bottom of the table. 8. Select Edit->Paste Append...
  8. darkangrydragon

    How to make a browse button

    It really depends on what you want to browse for.... Also, I don't think there is a completely code free solution, but I'm sure some people here can give you a "copy and paste" solution depending on what you wish to do... Good luck! Andrew
  9. darkangrydragon

    Detect GotFocus and/or OnActivate for Popup Form

    Hi! I have a database that uses several forms, all of which have their Popup property set to Yes and their Modal property set to No. I want to be able to detect when a user leaves one form and enters another form. However, when the popup property is set to Yes, the GotFocus and...
  10. darkangrydragon

    Compact .pst file with a script?

    I also would be grateful to anyone who can post a solution to this problem. At this point, I would accept a scripting, vba or third-party plugin/application solution! Thanks! Andrew
  11. darkangrydragon

    Detect control+click event???

    Thanks, Norris! That did the trick! STAR FOR YOU! -Andrew
  12. darkangrydragon

    Detect control+click event???

    Thanks, Norris! How about this, though: How do you detect a control+double click? Thanks! -Andrew
  13. darkangrydragon

    Detect control+click event???

    Hi everyone! I was wondering how in VBA for access you can detect when the user clicks a command button while holding the control key (CTRL). I imagine this will have to be done in the command button's Click event, but how do you detect if the Control key is being held down while this event...
  14. darkangrydragon

    ADODB.RecordSet not defined?!?!?

    Nevermind - figured it out. For those who want to know: In VB goto Tools->References... and make sure the "Microsoft ActiveX Data Objects Libray" is checked. I am using A2K, so I'm not sure if it is different in other versions. THanks!
  15. darkangrydragon

    ADODB.RecordSet not defined?!?!?

    Hi, I am trying to use ADO instead of DAO for recordset operations, but everytime I try and declare an ADO recordset, I receive the message, "User defined data type not defined." Here is the code: Dim rst As ADODB.Recordset Any ideas? Thanks!

Part and Inventory Search

Back
Top