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 strongm 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. TotalInsanity

    C# Listview Control

    I have created a listview in my C# form and when I add an item through my code I change the background colour of my cells/rows. However, when I move over them at runtime with my mouse, the colour defaults back to white and then they stay white (when they should be red!). The highlighted one is...
  2. TotalInsanity

    C# ListBox Component

    Hello All. Can one of you experts help me out here. I have a list box in my development and I want to obtain the actual text that is stored at one of its indexes and place into a string. Basically I am trying to colour each row dependant upon what text it contains by overriding the list boxes...
  3. TotalInsanity

    Graph c++

    Hello All. I could do with some expert help here, so here goes to all you gurus! I have created a 'map within a map' to form a graph structure in c++. I have declared it like this: typedef map<string, double> stringVector; //map of doubles indexed by strings typedef map<string, stringVector>...
  4. TotalInsanity

    Weighted Undirected Graph C++

    Hey all. I could do with a little help. I need to create a weighted undirected graph in c++, using either an adjacency list, a matrix or a map/multimap or all of them (separately of course!) :O) I have been looking on Google for examples of such a graph in c++ but I can't seem to find any...
  5. TotalInsanity

    Comparing Values.

    Hello again all. Some more beautiful advice needed please from all of you professional coders :O) If I have three double values: 3.55, 3.47, 2.24. I want to take the first double value of 3.55 and find which of the other two values: 3.47, 2.24 is the closest match to the first given value. I...
  6. TotalInsanity

    Multimap Problem C++

    Hello All, I could do with some more expert help so I have come here to seek some out! Can someone help me with this multimap problem in c++. I am wanting to create a multimap using two keys and a data value. I understand that they normally use 1 key and a data value as a pair, but I need two...
  7. TotalInsanity

    Display CSS Data in Web Browser control c#

    I have a htm file that is using cascading style sheet data at the top of the html file. When this file is read into a web browser control in c#, c# just ignores the stylesheet data and displays the website all funny. Can anyone please explain how to make a web browser control in c# read CSS...
  8. TotalInsanity

    C# Web Browser Control

    Hello there! I could do with some help please.... I have a c# web browser control on my form. If I pass it the url for google (http:\\www.google.com) it displays the web page fully in the control with a scroll bar. This is fine. I have created a test page however (.html) and when I load this...
  9. TotalInsanity

    Close Form c#

    Hey All. Another rediculous question by me :O) I have two forms in c# - Form1 & Form2. I have a button on form 1 which creates an instance of form 2 and shows it with: Form Form2 = new Form2(); Form2.show(); Now say I have another button. I want to close the second form in this buttons...
  10. TotalInsanity

    C# - Joining Forms Together....

    Hey All. I am new here so I'll ssay Hi! I could do with some help here with c# as i am new to this language. Can anyone explain how I can join two forms together? By this I mean Take the Main Form (Form1) and place a button component on it. In the click event, I would like to pop up another...

Part and Inventory Search

Back
Top