Color Code or Highlight Certain Events?

I may be the only person who wants this, but does anyone know of a way to color code the event names in iPhoto? Similar to the way you can color code folders in the finder. Even if it's just an on/off highlight.
The long story is I've been scanning and importing hundreds of photos from my "pre-digital" days. They all need a bit of tweaking (sometimes just a crop, but often a color adjustment, and resetting the dates since they automatically are given the date of import, not when I took the picture) so I've been slowly going through them, event by event, to do it. But I'd love to "highlight" all the event titles and then when they are tweaked, remove the highlight. Allowing me to do a quick scan through the events to see how many I have done and still have to do.
I've tried some googling to see if there might be a script or something, but I'm not sure what words I should use besides color code or highlight events. And they didn't turn up anything.
Long shot, but I figure if anyone has tried to do this, the helpful people here would know. If not, ce la vie.
Thanks,
Gina

No
You could assign a keyword to the photos when yo import them and make a smart album on that keyword - then remove the keyword as you "tweak" the scans so they drop out of the smart album
LN
Message was edited by: LarryHN

Similar Messages

  • Color coded categorization for calendar events

    I rely heavily on my calendar to track schedules for everyone in my family and I am really unhappy that the ability to color code categories for calendar events is missing - it has been available on every other Palm product I've owned. Does anyone know how to request a specific function? Or has anyone heard that this issues might be addressed?
    I am seriously considering going back to my Centro for the calendar. The fancy stuff is great, but the bottom line for me is a functional calendar.
    Thanks

    That has been suggested to me but it means I would have to track a separate calendar for each family member and pet, meaning more work, not less, and I have found that I get many duplicates when I use more than one google calendar. It's just not convenient and it doesn't give me the option to categorize (medical appts, vet appts, work travel, different school due dates for different people, etc.) by person AND appt. type.
    Again, not as simple, quick,  visual or flexible as when the function was in the app.
    Thank you for the suggestion, though.
    Carol

  • Color code calendar events

    How can I color code calendar events in Calendar (iPhone 4S)?  I have it synced to Exchange.  So if this is the case should calendar events come over as color coded from Exchange?

    Not sure about adding color to the calendar as I have never done it. However, I assume it can be done based on the way the Calendar is set up in this TribeVita template. This may also be another great option for you other than colors.
    http://templatetheotherchildusstandard.businesscatalyst.com/events

  • How to change the color of text highlight

    I'm trying to select and highlight certain text in the PDF. Here's my sample code. I want to change the color of the highlighted text. Something similar to what the Highlight Text tool does in acrobat.
    HiliteEntry hilite;
    hilite.offset = 10;  //Highlight the tenth word
    AVDoc currentAVDoc = AVAppGetActiveDoc();
    PDDoc currentPDDoc = AVDocGetPDDoc(currentAVDoc);
    AVPageView currentPageView = AVDocGetPageView(currentAVDoc);
    ASInt32 pageNum = AVPageViewGetPageNum(currentPageView);
    PDColorValueRec red;
    red.space = PDDeviceRGB;
    red.value[0] = ASInt32ToFixed(1);
    red.value[1] = 0;
    red.value[2] = 0;
    // highlight
    AVPageViewSetColor(currentPageView, &red);
    PDPage pdPage = PDDocAcquirePage (currentPDDoc, pageNum);
    PDTextSelect textSelection = PDTextSelectCreateWordHilite(pdPage,&hilite, 1);
    AVDocSetSelection(currentAVDoc, ASAtomFromString("Text"),(void *)textSelection, true);
    AVPageViewDrawNow(currentPageView);
    AVDocShowSelection (currentAVDoc);
    PDPageRelease (pdPage);
    If this is not possible, at least can I change the font color or underline the text?
    Appreciate any help!

    Thanks a lot for the help so far. So I was successfully able to crate a highlight annotation from text selection. Here's my code, if anyone else get similar questions.
    Only one more question. in my highlight annotation, I get two rounded half circles from the left and right sides. Not sure why?
    HiliteEntry hilite;
    hilite.offset = 50; // highlight starting 50th word
    AVDoc currentAVDoc = AVAppGetActiveDoc();
    PDDoc currentPDDoc = AVDocGetPDDoc(currentAVDoc);
    AVPageView currentPageView = AVDocGetPageView(currentAVDoc);
    ASInt32 pageNum = AVPageViewGetPageNum(currentPageView);
    PDEElement pdeElement;
    ASFixedRect boundingRect;
    PDPage pdPage = PDDocAcquirePage (currentPDDoc, pageNum);
    PDAnnot pdAnnot;
    PDColorValueRec red;
    red.space = PDDeviceRGB;
    red.value[0] = ASInt32ToFixed(1);
    red.value[1] = 0;
    red.value[2] = 0;
    // highlight
    AVPageViewSetColor(currentPageView, &red);
    PDTextSelect textSelection = PDTextSelectCreateWordHilite(pdPage,&hilite, 1);
    AVDocSetSelection(currentAVDoc, ASAtomFromString("Text"),(void *)textSelection, true);
    AVPageViewDrawNow(currentPageView);
    AVDocShowSelection (currentAVDoc);
    // make text selection and get the bbox of the selection.
    PDTextSelect selectedText = static_cast<PDTextSelect>(AVDocGetSelection(currentAVDoc));
    PDTextSelectGetBoundingRect(selectedText,&boundingRect);
    // use the bbox to create a highight annotation QuadPoints
    CosObj ArrayObj, RecObj;
    CosDoc cd = PDDocGetCosDoc(currentPDDoc);
    CosObj cosPage = PDPageGetCosObj(pdPage);
    ArrayObj = CosNewArray(cd,false,8);
    CosArrayPut(ArrayObj,0,CosNewFixed(cd,false, boundingRect.right));
    CosArrayPut(ArrayObj,1,CosNewFixed(cd,false, boundingRect.bottom));
    CosArrayPut(ArrayObj,2,CosNewFixed(cd,false, boundingRect.left));
    CosArrayPut(ArrayObj,3,CosNewFixed(cd,false, boundingRect.bottom));
    CosArrayPut(ArrayObj,4,CosNewFixed(cd,false, boundingRect.right));
    CosArrayPut(ArrayObj,5,CosNewFixed(cd,false, boundingRect.top));
    CosArrayPut(ArrayObj,6,CosNewFixed(cd,false, boundingRect.left));
    CosArrayPut(ArrayObj,7,CosNewFixed(cd,false, boundingRect.top));
    // for the Rect. Highlight annotations don't require, but API call to create annotation requires this key
    RecObj = CosNewArray(cd,false,4);
    CosArrayPut(RecObj,0,CosNewFixed(cd,false, boundingRect.left));
    CosArrayPut(RecObj,1,CosNewFixed(cd,false, boundingRect.right));
    CosArrayPut(RecObj,2,CosNewFixed(cd,false, boundingRect.bottom));
    CosArrayPut(RecObj,3,CosNewFixed(cd,false, boundingRect.top));
    CosObj cosDict = CosNewDict(cd, true, 4);
    CosDictPutKeyString(cosDict, "Subtype", CosNewNameFromString(cd, false, "Highlight"));
    CosDictPutKeyString(cosDict, "QuadPoints",ArrayObj);
    CosDictPutKeyString(cosDict, "Rect", RecObj);
    pdAnnot = PDAnnotFromCosObj(cosDict);
    PDPageAddAnnot(pdPage,-2,pdAnnot);
    PDPageNotifyContentsDidChange(pdPage);
    PDAnnotSetColor(pdAnnot, &red);
    AVPageViewDrawNow (currentPageView);
    PDPageRelease (pdPage);

  • How to Color-Code Categories on Desktop?

    I just purchased a Palm Z22 after years of owning a T5.  I can choose colors for the categories on the handheld, but cannot get any color-coding on the desktop.  Any suggestions on how to do this?  Also, how to change the background colors on the desktop as well?
    Post relates to: Palm Z22

    Hello legendeld-
    Would you please add the suggestion to color code events? It strikes me as odd that Palm has removed a very useful piece of functionality that has been in its software as long as I can remember. I upgraded to 6.2 to fix the problem where undated tasks were given the date "12/31/2031" in Palm Desktop 4.1.4. Finding the removal of category colors was not a welcome result. I'm certain it's not making your other users happy either, especially after waiting a very long time for this upgrade.
    Thanks very much,
    Sean
    Post relates to: Centro (Sprint)

  • I just downloaded Pages. When typing on a blank document, I am unable to highlight certain words.  My daughter usesbitbfor homework and needs to highlight her spelling words.  I've read disucssions and it says gonto the a and enter fill and cg

    I just started using Pages and am trying to figure out how I can highlight certain words in sentences.  I have read some of the discussions and they have said to go to the "a" on the top bar.  When using a blank document, the letter "a" doesn't show up and there isn't an option to fill in or use shadowing.  Help!

    At the top of the screen in Page there is an "I" next to the Media Icon. If you tap that "I" icon - you bring up a menu that has Style as one of the options. Tap Style and you can change the color of the text and use all of the preinstalled Styles available in the app.
    If you swipe all the way to the bottom of the Styles menu- there is a Text Options listed. Tap on that and you can select different sizes, fonts, and text colors.

  • Setting color codes for more than one photo at a time

    Is there any way to set color codes for more than one photo at a time?

    Hi John,
    I will look at keywords. My issue is speed. Right now I am culling and editing an event shoot that spanned a week with 35 separate events and more than 5000 images. So I use the fastest most convenient method I can and it still takes a long time to have a completed and final shoot. On this shoot I will end up with a final set of around 1500 images. Right now I am finishing processing a show that will hang in the Deutsches Amerikanish Zentrum in Stuttgart.
    As I am sure you are aware by now, having seen enough of my inane questions that over the last two years or since Lightroom version 1.xx if I could not figure out how to do something I skipped it. So many things in Lightroom are buried and unless you have a mind like a steel trap (and think that some of you guys in the forum do) locating how to do something is not obvious.
    For example, I only learned (in the last hour) that I could assign colors as a group of selections by using Shift + number. I found this in a side head in Martin Evenings Lightroom book. I still do not know how to find a way to display the color filter "selection" set in Library mode. Is there a way?
    To top it off, Stuttgart Media University asked me if I would add a Lightroom module to my schedule this year. Now I have a compelling reason to learn all those missing pieces that I have created workarounds for. Hence the number of posts you have been seeing from me over the past few of weeks.
    I tell my class that there are no such things as stupid questions, only questions. Now I am practicing what I have been preaching for the last gazillion years. Guys like you have been great.
    My workflow is
    1. I first separate all images by event. I do that at the time of import.
    2. I do a fast pass rejecting all the obviously bad images
    3. I do a second pass grouping the images by sub-group (speeches, people talking, performances, etc.) This is where I run out of selection methods and your key-wording could work but it would probably take too much time to establish a keyword set for a single event. Where I have more than five subgroups I set up different collection sets with one collection for each sub group. However I would like to keep a single event in one collection.
    4. I then select the images to be used by color code.
    5. Next I process the final images (crop develop etc) by collection.
    6. Last I output the set according to client requirement.
    If you have a better workflow, I am all ears.
    By the way, what is your photo specialty and where are you located?
    Jim

  • 3D Map - Color Code and Cursor Tracking

    Hi, I need some help trying to implement some user interface functionality for a program I am developing.
    This will be a tuning tool for automotive ECU. The program will be reading in two signals (Y-axis is RPM, X-Axis is manifold pressure) and use a 2D interpolation to output a Z value to be used in a calculation. There are two pieces I'd like to add to this. 
    1. Color code the cells based on the cell value in relation to the max and in of the entire 2D-Array
    2. Have a live currsor that tracks the current cell of the 2D array and highlights the cells that are being used in the interp calculation so it makes it easier for the user to make changes and calibrate the tables. 
    3. BONUS: An easy way to be able to select a range of cells and increment them by a set amoun or scale them all by an imput amount (like scale range by 90%).
    Basicly, I'd like to recreate some of the user interface functionality of the software shown below in the second picture and the video linked below. 
    VIDEO:    https://www.youtube.com/watch?v=OkVUJCy0sJ4
    VIDEO:   https://www.youtube.com/watch?v=oeZc-ka6ago      (at 16:45 you can see a good example of the currsor tracking through the cells as teh two inputs change)
    -As you drive and the RPM and loading changes there is a blue ball that tracks on the table the current x-y location of the 2D map and the four coresponding cells around the ball are highlighted to show witch of these cells are being used in the calculation so the user can easily alter these cells in real time to tune the output he is looking for. I'd like to be able to highlight, or blink either a single cell closest to the current value, or the 4 corners around it and have it update real time as the user drives the car. 
    Any ideas of how to implement this kind of functionality? The current VI is attached. I should note the x-array and y-array won't necessarily always be constant spacing between cells.
    Thank you for any help in advance!
    Attachments:
    3D Map Color Coded & Currsor.vi ‏17 KB

    Okay, so I made some progress on this. I was able to use an intensity graph to visually color code the relative position of the cells. Is there a way to make the 2D array translucent and overlay the color array intsity graph behind it? is there a better way to do this. 
    I was able to get the closest current cell value to update as black and track around live on the intensity graph. I did this by temporarily setting the cell's value to 0. Is there a way to somehow highlight the actual cell on the 2D-Array instead? 
    The code is attached. I added a random sine wave input to simultate some signals for the x and y input. The Y array now runs in reverse order which made it tricky to get some of the functions to work properly so I had to use a 2D transpose and 1D reverse array to get it back in the right form. There's probably a better way to do this. 
    Any help is great appreciately and rewarded with Kuddos!  
    Attachments:
    3D Map Color Coded & Currsor (Rev B).vi ‏33 KB

  • Set color in TextArea for certain String

    I need to highlight some Strings in different color than the setForeground() in the TextArea. Is it possible and how can I accomplish it?
    Help is great appreciated.
    Anna

    I am able to use JTextPane to highlight certain string now.
    Thanks a lot.
    Though I am having problem on mouse double click on a file name.
    For TextArea, the getSelectedText() will pick the full path name of the file. For JTextPane, the selected text is just part of the string.
    Following is the text:
    Test report is saved in file C:\tests\pf2150\JTAG\888_test.rpt
    The file name is
    C:\tests\pf2150\JTAG\888_test.rpt
    My mouse is over the file name but double click only picks JTAG or pf2150 or ...
    Could anybody help?
    Anna

  • How to highlight an event in monthly calendars

    How to highlight an event in monthly calendars

    If they are All-Day events, then they will be overlaid with the Calendar color. If they are not all-day, then they will just have a dot. There is no way to alter that behavior.

  • 1142 Color Codes

    Hi ;
    We have deployed many 1142 APs on a site.When i have checked color codes , some of thems LEDs are static green which we have expected.But some of them are not giving out any light.But from the controller menu i saw them active and operating.And i can connect that APs but no led is lid.
    When i get closer to the AP i saw a Red color which can not be seen from distance (Not Red flashing LED).What the possible error can be ? Is it a factory default mistake or so ?

    The problem is , AP doesnt give out any lights.LED doesnt light on.
    But from the controller ; i saw AP is operating , and i can connect on it.
    Here is output of booting AP that can successfully join the contoller , and this is happening in more than one AP
    *Mar  1 00:00:08.073: %SOAP_FIPS-2-SELF_TEST_IOS_SUCCESS: IOS crypto FIPS self test passed
    *Mar  1 00:00:08.085: *** CRASH_LOG = YES
    Security Core found.
    Base Ethernet MAC address: FC:99:47:D5:39:C6
    *Mar  1 00:00:09.661: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 0
    *Mar  1 00:00:10.233: %SOAP_FIPS-2-SELF_TEST_RAD_SUCCESS: RADIO crypto FIPS self test passed on interface Dot11Radio 1
    *Mar  1 00:00:10.264: %LWAPP-3-CLIENTEVENTLOG: Read and initialized AP event log (contains, 16 messages)
    *Mar  1 00:00:10.287:  status of voice_diag_test from WLC is false
    *Mar  1 00:00:11.330: %LINK-3-UPDOWN: Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:12.411: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0, changed state to up
    *Mar  1 00:00:12.449: %SYS-5-RESTART: System restarted --
    Cisco IOS Software, C1140 Software (C1140-K9W8-M), Version 12.4(23c)JA3, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2011 by Cisco Systems, Inc.
    Compiled Tue 18-Oct-11 14:52 by prod_rel_team
    *Mar  1 00:00:12.449: %SNMP-5-COLDSTART: SNMP agent on host HR-Test is undergoing a cold start
    *Mar  1 00:11:32.043: %CAPWAP-5-CHANGED: CAPWAP changed state to DISCOVERY
    *Mar  1 00:11:32.110: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Mar  1 00:11:32.110: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Mar  1 00:11:33.110: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Mar  1 00:11:33.110: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Mar  1 00:11:33.303: %SSH-5-ENABLED: SSH 2.0 has been enabled
    *Mar  1 00:11:41.233: %DHCP-6-ADDRESS_ASSIGN: Interface GigabitEthernet0 assigned DHCP address 172.16.78.207, mask 255.255.248.0, hostname HR-Test
    *Mar  1 00:11:50.911:  status of voice_diag_test from WLC is false
    *Mar  1 00:11:50.972: Logging LWAPP message to 255.255.255.255.
    *Mar  1 00:11:52.367: %CDP_PD-4-POWER_OK: Full power - LOW_POWER_CLASSIC_NO_INJECTOR_CONFIGURED inline power source
    *Mar  1 00:11:52.390: %LINK-3-UPDOWN: Interface Dot11Radio1, changed state to up
    *Mar  1 00:11:52.415: %LINK-3-UPDOWN: Interface Dot11Radio0, changed state to up
    *Mar  1 00:11:53.374: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Mar  1 00:11:53.375: %SYS-6-LOGGINGHOST_STARTSTOP: Logging to host 255.255.255.255 started - CLI initiated
    *Mar  1 00:11:53.401: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    Translating "CISCO-CAPWAP-CONTROLLER.dpu.edu.tr"...domain server (194.27.43.17) [OK]
    *Mar  1 00:12:02.006: %CAPWAP-5-DHCP_OPTION_43: Controller address 172.16.64.10 obtained through DHCP
    wmmAC status is FALSE
    *Dec 10 14:03:03.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 172.16.64.10 peer_port: 5246
    *Dec 10 14:03:03.000: %CAPWAP-5-CHANGED: CAPWAP changed state to 
    *Dec 10 14:03:03.836: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 172.16.64.10 peer_port: 5246
    *Dec 10 14:03:03.837: %CAPWAP-5-SENDJOIN: sending Join Request to 172.16.64.10
    *Dec 10 14:03:03.837: %CAPWAP-5-CHANGED: CAPWAP changed state to JOIN
    *Dec 10 14:03:03.983: %CAPWAP-5-CHANGED: CAPWAP changed state to CFG
    *Dec 10 14:03:04.100: %LINK-3-UPDOWN: Interface Dot11Radio0, changed state to down
    *Dec 10 14:03:04.114: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Dec 10 14:03:04.114: %CAPWAP-5-CHANGED: CAPWAP changed state to UP
    *Dec 10 14:03:04.115: %LINK-3-UPDOWN: Interface Dot11Radio0, changed state to up
    *Dec 10 14:03:04.166: %CAPWAP-5-JOINEDCONTROLLER: AP has joined controller DPU_WIFI_KONTROLLER

  • Color code problem

    Hello.
    I have this code:
    colors = [0xFFCC00,
    0xFFFF00];
    alphas = [100, 100];
    ratios = [0, 0xFF];
    matrix = {a:100, b:20, c:5, d:100, e:0, f:10, g:100, h:10,
    i:5};
    beginGradientFill("linear", colors, alphas, ratios, matrix);
    I use it to fill a clip with a gradient color.
    I want the second color (in first line) to be taken from a
    variable.
    I tried:
    my_color = "0x"+"FFFFCC";
    colors = [0xFFCC00,
    my_color];
    alphas = [100, 100];
    ratios = [0, 0xFF];
    matrix = {a:100, b:20, c:5, d:100, e:0, f:10, g:100, h:10,
    i:5};
    beginGradientFill("linear", colors, alphas, ratios, matrix);
    It doesnt work, it doesn't read the variable as a color and
    the color it sets is black.
    Anyone knows how the color code should be composed so that I
    can have that color code taken from a variable?
    Thank you.
    - Adrian.

    quote:
    Originally posted by:
    Rothrock
    I'm not certain, but I would try:
    my_color=0xFFFFCC;
    How does that work for ya?
    Hi.
    That would normally work as you wrote it but I need the color
    to be made from a variable value that doesnt contain the # or 0x.
    So I have a value as "FFCC00" and I cannot merge the 0x with
    it because it only allows the color code to be added after 0x and
    not a variable name.
    a_variable="FFCC00"
    my_color = "0x" + a_variable
    that doesnt work. It only works if I type color code
    directley after the 0x as you said 0xFFCC00.
    Do I make sense ? :)

  • Color code a stacked bar chart?

    Post Author: mmueller12
    CA Forum: Charts and Graphs
    Is there a way to color code a stacked bar chart?  We need to have one horizontal bar with the colors listed below.  In other words, we need to color code a date range to a specific color based on the "Color" column.  I have it to the point of different colors for each date range in a single stacked bar, but cannot figure out how to link to a specific color.
    ID
    StartDate
    EndDate
    Color
    1
    10/18/2007
    11/15/2007
    YELLOW
    1
    05/31/2007
    10/18/2007
    YELLOW
    1
    03/08/2007
    05/31/2007
    YELLOW
    1
    01/25/2007
    03/08/2007
    YELLOW
    1
    06/09/2006
    01/25/2007
    ORANGE
    1
    03/17/2006
    06/09/2006
    RED
    Thanks in advance,Melissa Lord

    Post Author: mmueller12
    CA Forum: Charts and Graphs
    Thanks for the replies - here are the answers to your follow-up questions:
    Lugh - I am using Crystal v10, I don't find a "Color Highlight tab".
    Ranjit - I found this tab, but the only "conditional format" must be based on the start date (x-axis) which is not the field that I need to use to change the color.  It appears that I can only use the x-axis values when conditionally formatting a bar, which is not what I need.  I need to use a field not actually used in the graph to conditionally format the colors.

  • Some color codes appearing on my ipad screen. What should i do?

    Hi,
    I have a Ipad 1 bought in US and i'm currently in India. My ipad screen has some issues. The screen is displaying some rainbow color codes both horizontal and vertical. Could you please advice on the course of action.
    Regards,
    Manoj

    OK.  Now it's getting ugly.  You need to do a Restore without reloading from the backup.
    IF you choose to follow my advice, here are some cautions.  Make absolutely certain that all apps, music, movies, etc. are present in the iTunes library.  Also make absolutely certain that all "regular" data, such as pdf files, Word files, etc. are present and accessible somewhere on the computer's hard drive.  Be aware that you will probably lose all game data (scores, etc.).  Finally, be forewarned that it is a bit tedius recreating all your folders and putting each app where you want it.
    When the Restore finishes, remember NOT to load from backup.  However, do a normal "sync."  Then, rearrange your apps on the iPad.

  • Color code table (optimizat​ion)

    I want to be able to color code a large table. it takes a very long time to do this. i assume it takes a lot of time because each change in color generates a paint event. i am trying to avoid the same by one of the following approaches
    1) hide the table, update colors and show table
    2) disable front panel updating of the vi and updte the table and enable front panel updating
    Neither of the approches give me much performance gain. is there a way to make it faster?

    Hi Anand
    I am surprised that "Defer Panel Update" is not speeding the process for you.
    I also have to update large table cell color, and "Defer Panel Update" does make a difference. One think to note, if your table is in a Subpanel, it seem that "Defer Panel Update" does NOT work in subpanel (LV7.0, have not tested in LV7.1)
    Another trick that I used (and it is not mentionend in the table help but in the multi column list box help) is that you can paint full rows (or cols) in one single shot (of course if you do not have rows/cols of the same color, it is not very usefull).
    Here is a snapshot of the multi column list box help
    Active Cell Property
    Property of MulticolumnListbox.
    "Sets the row and column of the cell(s) to which you want to apply
    subsequent property changes. The following table lists example values for this property.
    Row Column Result
    �2 0 Selects all cells in the first column, including the column header.
    �2 �2 Selects all rows and columns, including column headers.
    �1 0 Selects the header of the first column.
    �1 �2 Selects the headers of all columns.
    0 �2 Selects all cells of the first row, including the row header.
    0 �1 Selects the header of the first row."
    Hope it help.
    PJM
    Got EasyXML?
    JKI.VIPM.EasyXML.OpenG.LAVA.Builder.blog

Maybe you are looking for