slaughter Posted November 15, 2007 Posted November 15, 2007 Hello agian, This time i have truble of seting a font only in one colum I nead to change first col font in to biger one and other ones in list viev stay the same.Is this posible ? in picture i culd chane only for all table but i whant the time colum to have biger numbers and rest of them to stay as it is smaler font In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font]
Madza91 Posted November 15, 2007 Posted November 15, 2007 Something like this: #include <GuiConstants.au3> GuiCreate("MyGUI", 392, 316,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS)) $List_1 = GUICtrlCreateListView("Name | Lastname", 30, 40, 200, 149) $item1 = GUICtrlCreateListViewItem("1",$List_1) GUICtrlSetColor(-1,0xFFFFFF) $item2 = GUICtrlCreateListViewItem("2",$List_1) GuiSetState() While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;; EndSelect WEnd Exit [quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now