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: *

  • Users: mcox05
  • Order by date
  1. mcox05

    Backwards engineering (sorta) on web page

    I want to develope a program that can make listing of all search results found from a database (pretty easy)... The catch about this is that No one has access to the Database (not even read-only rights) so the best solution I can come up with is to do the following: 1. Retrieve the entire page...
  2. mcox05

    C++ API documentor?

    muchas gracias! :)
  3. mcox05

    C++ API documentor?

    Does anyone know of any software (if any) that has been built to compile APIs of c++ projects ... something comparable to JavaDocs in Java. Any info would be awesome.
  4. mcox05

    Pointer headaches

    thanks for the help ... ya i'm on crack ... i just realized that i don't have just errors related to c++ coding ... but also i totally had my BST Add just messed up in general ... no sleep will make a person write ugly code.
  5. mcox05

    Pointer headaches

    I am really new to c++ ... (Came from Java and C# so I'm really used to everything being handled as a reference). If someone could help me understand my problem that would be awesome. I'm trying to create your basic BST (OOD structured using classes) I am having tons of trouble with my Add...
  6. mcox05

    Injecting C# code

    Was wondering the steps that are necessary to import C# code into an existing c++ assembly ... Any ideas? Was considering the idea of creating DLLs then importing them into the C++ classes but I've never tried that so I'm kidna in the dark
  7. mcox05

    MySql Query Help

    I'm not very proficient with Mysql query strings ... so to make this simple I wanna know if it's possible to search with the following conditions and produce the correct results each time. lets say i have a txtbox that a user can user to type in a name of something. Thin when they search the...
  8. mcox05

    DataGridView Parameters

    How do I add a parameter to my DataGridView in designer mode?
  9. mcox05

    DataGridView and MySql ODBC driver

    I'm trying to familiarize myself with the DataGridView and all its functionality in the GUI designer. Right now I'm trying to use the MySql ODBC 3.51 driver for the DataGridView. I'm having trouble with the query builder once I finish settin up a connection using the Data Source Config...
  10. mcox05

    DB design for Chat program

    Thanks for the suggestions :)
  11. mcox05

    adding an event to every member of pictureBox array

    Ok your code will do exactly what you wanted. All PictureBoxs will call back to PicBox_Click ... thus being a "universal callback method". Easier approach to modifying the appropriate box is just typecast the sender object. You already know that it can only be a PictureBox so there is no chance...
  12. mcox05

    adding an event to every member of pictureBox array

    Can you post your PictureBox code ... I have an idea that I know will work well for you but I don't like generalizing.
  13. mcox05

    adding an event to every member of pictureBox array

    just so that i'm clear ... right now as it stands whenever a picture is clicked all the pictures are changed because they are registered to the same callback method (pikBox_Click) correct?
  14. mcox05

    Anonymous Method Overriding

    Can it be done to protected methods? ... my understanding of visiblity modifiers tells me that you can't ... but you should be able to for sure with public methods.. Anyone have a code example?
  15. mcox05

    Quick way to grab System Fonts?

    you are a saint :)
  16. mcox05

    Quick way to grab System Fonts?

    Just hoping the is a quick way to obtain a collection of system fonts so that I don't have to manually type them all in. Any ideas?
  17. mcox05

    String Manipulation

    I was curious to know if anyone had a good website or could just make a list of the litte shortcut strings that exist in c# for make quick and easy alterations to the font. example string name = "&Charlie";//makes it appear as so in the GUI Charlie
  18. mcox05

    DB design for Chat program

    I'm not very proficient at applying OOD logic to Database tables in order to normalize them. Was hoping to get some help with someone more experienced than myself. Here is what I have so far ( Tables are underlined) User AutoNumber userID Text userName Text password Text nickname Yes/No...
  19. mcox05

    Using ListBox in unison with ContextMenuStrip

    Ha my mistake. Thanks for the easy fix JurkMonkey seems that with Click, MouseClick ... menu_Opening() will execute first but MouseDown will execute before menu_Opening() which makes a performance gain over tracking the mous movements constantly. Glad you made the suggustion so I would...
  20. mcox05

    Using ListBox in unison with ContextMenuStrip

    Those are great suggestions and I wholy agree that constantly tracking the mouse movement is a performance hit BUT unfortunately the order in which the CALLBACK methods are executed rules out the ability to use MouseDown event. The menu_Opening() event will execute first which means that the...

Part and Inventory Search

Back
Top