hi, i have this MS treeview... i'm trying to change the node hoverstyle like this: CssCollection hover = new CssCollection(); hover.Add( "background-color", "#abb4cb"); hover.Add( "border-color", "#0a246a"); hover.Add( "color", "#000000"); hover.Add( "border-Style", "solid"); hover.Add( "border-Width", "1px"); but the sun of a gun changes the color back to gray... can someone tell me why? thanks nhm
NHM
Posts
-
treenode hoverstyle -
TreeView Eventsok. i've got it. the problem was that my event declaration was after this line of code: if ( this.IsPostBack) return; so i have to put it before like this: if ( this.IsPostBack) return; anyways.... thanks. Nuno Henrique Mendes Object Oriented Systems
-
framesethi, i'm trying to programatically change the aspx in a frame. how can i do this? :confused: thanks nhm
-
TreeView Events:confused::confused:can someone explain to me why can't i catch the treeview events? thank u, nhm
-
.net framework 1.0 vs 1.1 -
newbiehi there, i've started today using ASP.NET. i've built a little test application but my Web Forms Controls doesn't seem to apear... any suggestions? thanks Nuno Henrique Mendes Object Oriented Systems
-
std::list::sorti need to sort an object of type std::list i have something like this: (.h) struct _Selected { _decimal ent; _decimal docNum; }Selected; typedef list<_Selected, allocator<_Selected> > LISTSTR; LISTSTR arrSelected; and i need to sort 'arrSelected' how can i do this? thanks:confused::confused::confused: Nuno Henrique Mendes
-
ADODB Stream objectGreetings my dear fellow programmers, I have a situation! I need to create a ADODB Stream object in VC++. How can i do it? Nuno Henrique Mendes
-
Graphs (!Graphics)Greetings. I need to create a graph (not graphics...). N i need someone to help me to give me a basis to start building a graph in C#. Thanks :cool: Programming is ALMOST better then sex...
-
Removing null characters from stringsr u using CString? Nuno Henrique Mendes
-
RecordSets && DataSetscan someone tell me how can i get a DataSet and put it into a RecordSet? if u know this please help me. thanks :confused: Nuno Henrique Mendes
-
menu item with imagehow can i put an icon in a menu item :confused: thanks Nuno Henrique Mendes
-
C# Dockable/Floating MenuHow can i make a mainMenu Dockable/Floating? thanks Nuno Henrique Mendes
-
RecordSets && DataSetscan someone tell me how can i get a DataSet and put it into a RecordSet? if u know this please help me. thanks :cool: Nuno Henrique Mendes
-
problem setting text in edit boxGetDlgItem( IDC_E_DATA)->SetWindowText("text"); :-D NHM
-
About the size of CStringthe code u posted works just fine...:cool:
-
VC# dll in a VC++ 6.0 MDIHi, i have a form in a VC# dll. I'm calling it inside a VC++ 6.0 MDI app. when i create an instance of the VC# dll i set the parent window (the form container) it opens... ok... nothing's wrong.. but the form can overlap the toolbar and the status bar... how can i avoid this? :confused: NHM
-
Passing around params VC++6.0 VC#i've just overriden the WndProc... no code added to the base override... this is what i have... a) a vc++ 6.0 Mdi app (.exe) b) a vc# dll with: - class A (interface) (cominterop) (i have to call some methods and access some properties) - class B (windows form) in the vc++ 6.0 mdi app i create an instance of classA then i call a method from class A wich does this: public void SomeThing() { Form1 f = new Form1(); f.Show(); } and this is what i intended to do: public void SomeThing( Form parent) { Form1 f = new Form1( Form parent); f.MdiParent = parent; f.Show(); } i just want to say to the VC# winForm that his container is the VC++ 6.0 APP what can i do?
-
Passing around params VC++6.0 VC#if i override WndProc in the windows form (C# dll) then when i try to open it through the VC++ 6.0 App it stops execution... just gives a runtime error... ideas? thanks 4 your suport .S.Rod!
-
Passing around params VC++6.0 VC#how can the VC# dll receive messages... in vc++6.0 PreTranslateMessage is the answer... n in VC#?:confused: