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

    Crystal Reports Question

    Hello, I'm working on an application in VB6 that uses Crystal Reports 9 to display reports from user data files created by the application. Specifically, in the application, we're attempting to use a DAO recordset object as the datasource for CrystalReport designer objects created in VB (and...
  2. victoryhighway2

    Enum Question

    SBerthod, No, the enum is in my own code, in a BAS module. Regards, Geoffrey
  3. victoryhighway2

    Enum Question

    Hello, Is there anything that I can use in a conditional statement to refer to ANY member of an enum? Such as: Select Case xyzvar Case MyEnum.All End Select What I'm looking for is to test to see if the value of xyzvar matches any of the member values of the enum MyEnum, without...
  4. victoryhighway2

    Control Array Bounds

    Great! Thanks.
  5. victoryhighway2

    Control Array Bounds

    Is there any way to programmatically detect the upper and lower bounds of a control array that operates similar to the Lbound() and Ubound() functions in VB6? Thanks, Geoffrey
  6. victoryhighway2

    Modulo Arithmetic in VB6?

    Hello all, I've gotten some clarification on this. Apparently, this calculation is to be performed as modular arithmetic operating on 32 bit unsigned integers. The result value is expected to overflow. Obviously, since VB doesn't support any unsigned integer data types larger than 1 byte, we...
  7. victoryhighway2

    Modulo Arithmetic in VB6?

    Hi Dilettante, No, this isn't for a class. This is for my work. I'll just talk to the engineer who wrote up the spec when he comes in. Maybe he'll be able to give me some advice. Regards, Geoffrey
  8. victoryhighway2

    Modulo Arithmetic in VB6?

    Hi dilettante, You may be correct in calling it modulo 32 arithmetic. However, I'm just following a spec that plainly states: Regards, Geoffrey
  9. victoryhighway2

    Modulo Arithmetic in VB6?

    Hello, I'm working on an application that requires modulo-32 bit arithmetic to compute a value in an equation similar to the following: x = ((a * b) / c) + d This looks simple on the surface, but even if I define X as a long, it will always overflow (because VB will try to perform standard...
  10. victoryhighway2

    Move Image via Click&Drag

    Greetings All, I'm writing a section of a program where I would like to allow a user to click & drag on an image control on a form and move it based on the user's mouse movements. I'm sure that doing so involves the MouseDown, MouseMove and MouseUp events, but does anyone have a code sample...
  11. victoryhighway2

    Line and Character Position in Rich Text Box

    Hello strongm and Hypetia, This approach seems to work great! I'm giving both of you a star. Thanks, Geoffrey
  12. victoryhighway2

    Line and Character Position in Rich Text Box

    Hello strongm and Hypetia, I knew that there had to be an easier way to do this than what I was trying to do. I'll give this a shot and see what happens. Many thanks for your help. Regards, Geoffrey
  13. victoryhighway2

    Line and Character Position in Rich Text Box

    Hello Group, I'm trying to use the Microsoft Rich Text Box control as the basis of a basic text editor. I'm also using a Status Bar control in the form and I'd like to provide the line and character position of the cursor in the status bar. Getting the (absolute) character position is easy...
  14. victoryhighway2

    Convert BMP in Byte Array

    Hello N1GHTEYES, Thank you for your post. I'll give it a try! Regards, Geoffrey
  15. victoryhighway2

    Convert BMP in Byte Array

    Hello, I'm working on an application that needs to read a 256 color BMP file into a byte array and then download it into an embedded device. The download portion is already working (it's been tested using an external application that converts the BMP into a text file (with one byte per line.)...
  16. victoryhighway2

    Crystal Reports Viewer in VB6

    Hello Everyone, I'm relatively new to the world of Crystal Reports, so please don't bash the newbie if this is simple stuff. I'm using the Crystal Reports 9 Viewer Component in my VB6 application to display the data entered into an Access database. I'm working off of code that was written by...
  17. victoryhighway2

    Crystal Reports RDC

    Fair enough. I'll see if I can find a CR9 forum around here.
  18. victoryhighway2

    Crystal Reports RDC

    Can anyone help me?
  19. victoryhighway2

    Crystal Reports RDC

    Hello Everyone, I'm relatively new to the world of Crystal Reports, so please don't bash the newbie if this is simple stuff. I'm using the Crystal Reports 9 Run-time Designer Component in my VB6 application to display the data entered into an Access database. I'm working off of code that was...
  20. victoryhighway2

    CCRP FolderTreeView

    Hello Everyone, I'm trying to use the CCRP (Common Controls Replacement Project) FolderTreeView control in my project to create a custom browse for folder window. In my Form_Load method, I'm setting the SelectedFolder propery of the FolderTreeView to the default folder that I want. In...

Part and Inventory Search

Back
Top