Jump to content

GUICtrlCreateListView


slaughter
 Share

Recommended Posts

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 ?

post-3048-1195146454_thumb.jpg

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

Link to comment
Share on other sites

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

:P

[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) :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...