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

    How do I start a function in a modal dialog

    I put it in there but it still will only run if the user clicks on something to generate a message. Is there any way to have it start automatically?
  2. milner

    How do I start a function in a modal dialog

    I have a function that does a process. I want the process to start immediately when my Modal Dialog is activated. I tried putting it in OnInitDialog, but the dialog doesn't appear until after my process is complete! I want the dialog to show on screen, THEN my process to begin. Thanks for...
  3. milner

    Transaction Behavior

    Hi, This doesn't necessaryily apply to pgsql, but, her goes anyway. If I have a table and I begin a transaction and add 1000 records before committing. During this time, a second user accesses the same table. Will they see any of the records that I'm adding? Or will the records not show up...
  4. milner

    General SQL Question

    Thanks! That worked perfectly for me. I have one other related question: my [Items] table has another field, [Name]. Can I use the above query to get the [Name] of the first and last item instead of the first and last [PositionInBox]?? (Name is NOT in any specific order) I'd prefer not to...
  5. milner

    General SQL Question

    Hi, Say I have a database with two tables, one a list of [boxes], the other a list of the [items] in those boxes. Each item is number sequentialy ([PositionInBox]). I want to make a query that will tell me the first and last item in a certain set of boxes (MIN and MAX of [PositionInBox])...
  6. milner

    mysql settings / varibles

    If you disable all of mysql's ports, nobody will be able to use it, not even you. If that's what you want, then I'd just stop the deamon completely. If you only want to prevent external access, you could firewall off port 3306, or, if their is a command that controls which IP address MySQL...
  7. milner

    Commands, how to use them

    I've never used mysql on a non-Linux Platform but, on a Linux system, you start the interface by just typing "mysql" at the command line. Perhaps there is a DOS utility that came with the mysql package? It might be part of the client package?? Alternately, if you can find a program...
  8. milner

    Storing Files in a MySQL Database

    My project is also pretty small. Currently there are only aruond 3 people who use these files. The problem is, they have the files on their own computers. I want to get them in the database so they'll be in a centralized location (easier to backup and protect versioning) and so I can control...
  9. milner

    mysql can't connct through socket

    I'm not sure if it's the same problem but here goes: I just did a fresh install of RH 7.0 with apache, php, and mysql. I had the same problem. All I had to do was change the permissions on my MySQL directory (in your case "/var/lib/mysql") so that my apache user (the user/group that...
  10. milner

    Storing Files in a MySQL Database

    The reason I want to store the files in the database is for access control. My application uses MySQL as a backend. I'd like to keep the files in the database so I can control who uses them. The users are not on the server machine, they access it from windows platforms all over the building...
  11. milner

    Storing Files in a MySQL Database

    I'm actually making an application with Visual C++ and I want to use MySQL as the back end database. The application is for an arbitrary amount of users. I want to allow them to store a file in the database from their own computer that will be protected by MY programs user login. Then, anyone...
  12. milner

    Exiting Program

    The only problem with this is that I have the list of users in my Document (Because I load them from the same place as the rest of my document and I need to edit them in my application). How can I get my document data into my CWinApp derived class? Thanks - Mike -
  13. milner

    Exiting Program

    I have an application using MFC Doc/View Arcitecture. My program currently starts by showing the application Frame with my form view inside as normal. I'm now trying to add a login dialog to force users to log in before they can use the application. I've made a login dialog and it works fine...
  14. milner

    Dynamically loading modules

    ok, so using straight DLL, How do I iterate between the folder of DLL files? Actually, first, how do I dynamically link to the DLLs? Do I need to make one first so my project will actually compile?? If you have any basic direction you can give, that'd be great. Thanks, Mike
  15. milner

    Dynamically loading modules

    Hi, I'd like to make a project that can be modular in nature. I want to be able to add code modules AFTER I've compiled the main program. This is what I was thinking: Every module will have a set of interface functions that are called in the same manner for every module by the main program...
  16. milner

    Context Sensitive Right Click within Tree View

    Hi, I'm trying to implement a context sensitive popup menu for my CTreeCtrl Control. I know how to implement the context menu, it's just finding out which item has been clicked on. I have a function for the NM_RCLICK message which is called every time I right Click in the Control. My problem...
  17. milner

    Storing Files in a MySQL Database

    Hi, I want to be able to store files on my database server. I need to be able to control access to the files (Store, retrieve) in the same way that I control access to records in the database. I'd like to actually store the data within database records. How big a file can be stored in a...
  18. milner

    Advice on Global classes using MFC Doc/View

    I'm making an application with many dialog windows and classes that perform different actions. I want users to log in to the program before they can do anything. Different users have different permissions for the programs operations. Every time a button is pressed to do something, I need to...
  19. milner

    BMP Overlaying and saving

    Ok, here's what I am looking for: I want to be able to display a large bitmap and display multiple smaller bitmaps on top of it in different positions (decided on in runtime). The smaller bitmaps will have transparent regions so the background bitmap can show through. Here's an example. I...
  20. milner

    database access without ODBC or DAO

    I want to access a database (dBase III) from VC++ without having to set it up in anything outside my source code. I need to be able to access records, create/delete records, and create new tables (files). I know ODBC needs to be set up in control panel, does DAO? Any help is greatly...

Part and Inventory Search

Back
Top