How to edit label in custom UITableViewCell?

Hi, I'm a newby in iPhone programming, I have created a custom UITableViewCell with 3 labels and I have populated an UITableView with some rows. I need to change the text of one of the labels when the user select the cell.
I wrote this:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *theCellSelected = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
theCellSelected = [theTableView cellForRowAtIndexPath:indexPath.row];
UILabel *theLabelToEdit = (UILabel *)[theCellSelected viewWithTag:1];
theLabelToEdit.text = @"Some Text..";
..but nothing happen to the label, the text doesn't change..
What's wrong?
Thank you!
PS: sorry for my english, I'm italian and I don't speak it very well..

Hi Zoodany, and welcome to the Dev Forum!
zoodany wrote:
I wrote this:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
theTableView = tableView;
// remove --> static NSString *CellIdentifier = @"Cell";
UITableViewCell *theCellSelected;
// remove --> = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
theCellSelected = [theTableView cellForRowAtIndexPath:indexPath]; // <-- remove '.row'
UILabel *theLabelToEdit = (UILabel *)[theCellSelected viewWithTag:1];
theLabelToEdit.text = @"Some Text..";
Assuming your @interface, xib and DataSource methods are consistent with the above, the only thing stopping your code from working would be the 'indexPath.row' arg as commented. The lines which dequeue a cell won't prevent your code from running, though if any cells are actually in the queue, you'll have a memory leak there.
However, I doubt the code you posted is the same as the code you tested. If you actually coded cellForRowAtIndexPath:indexPath.row, you should have gotten a warning since 'row' is an int instead of a pointer. And if you had ignored that warning the program would have crashed at that line. This kind of mixup often happens when the programmer keys code into the forum instead of pasting it directly from the source file. Please copy and paste when posting your code here (also see the alert about formatting code, the first topic of the forum), ok?
If indeed 'indexPath.row' is a red herring, I think we need to look elsewhere in your project for the problem.
I have created a custom UITableViewCell
This contradicts your code somewhat. If you subclassed UITableViewCell, you'd normally add ivars with matching @properties to the custom cell so you could access the subviews as cell.label1, cell.label2, etc. Using viewWithTag to find one of the labels suggests that you simply added the labels to vanilla UITableViewCell objects rather that subclassing (adding the labels without subclassing is probably the best choice if no further customization is required).
So please let us know whether or not you actually defined a subclass of UITableViewCell. Assuming you didn't, here's an example of how to add labels to your cells (only two labels are added below to simplify the example):
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier] autorelease];
// make label 1
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20, 3, 140, 38)];
label.text = @"Label 1";
label.backgroundColor = [UIColor lightGrayColor];
label.font = [UIFont boldSystemFontOfSize:20];
label.tag = 1;
[cell.contentView addSubview:label];
[label release];
// make label 2
label = [[UILabel alloc] initWithFrame:CGRectMake(160, 3, 140, 38)];
label.text = @"Label 2";
label.backgroundColor = [UIColor yellowColor];
label.font = [UIFont boldSystemFontOfSize:20];
label.tag = 2;
[cell.contentView addSubview:label];
[label release];
// Set up the cell...
return cell;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *theCellSelected = [tableView cellForRowAtIndexPath:indexPath];
UILabel *theLabelToEdit = (UILabel *)[theCellSelected viewWithTag:1];
theLabelToEdit.text = @"Some Text..";
Note that 'tableView' is used in the delegate method instead of an instance variable such as 'theTableView'. The 'tableView' parameter will always be set to the address of the table view which is calling the delegate method, so there's no need to use an ivar in this case. In fact, 'theTableView' could also be the cause of your problem. For example if you made the table view in IB, you might have forgotten to connect the 'theTableView' outlet of the controller (or File's Owner) to the UITableView object. So you might also check that connection, though the code above doesn't depend on it.
Hope that helps!
- Ray

Similar Messages

  • How to edit/delete a custom label for a tel number for example in contacts?

    How to edit/delete a custom label for a tel number for example in contacts?

    Alfre311 wrote:
    I've been trying to find a way to do this since I updated to IOS 7, and I've just found the solution/explanation, even tho is a bit heavy to carry out.
    IOS 6 creates custom labels and save them giving you the option to delete them.
    IOS 7 creates custom labels but don't save them, so there is no need to have the option to delete them.
    But here comes the problem, if you have some custom labes saved in you Iphone / Ipad with IOS 6 and you update it to IOS 7, the device will keep those labels saved, but you wont be able to delete them.
    I realized this by going to contacts on Icloud. There those labels that I had on my devices weren't there. So simply restoring your device and configuring it as a new one to later sync your Icloud Contacts, will solve the problem.
    I know this post is old, but I might just try this with iOS 8. I have outdated custom labels that annoy me, because I still seem them in the list as options. If I get desperate enough, I may try your solution.

  • How to localize labels in customized forms in SCSM?

    Hi,
    when customizing SCSM forms I add label controls with the Authoring Tool. This results in a XML like this:
              <AddControl Parent="StackPanel499" Assembly="PresentationFramework, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Type="System.Windows.Controls.Label"
    Left="63.5" Top="39.0357407407408" Right="0" Bottom="0" Row="0" Column="0" />
              <PropertyBindingChange Object="Label_1" Property="Content">
                <NewBinding Enabled="False" />
              </PropertyBindingChange>
              <PropertyChange Object="Label_1" Property="Content">
                <NewValue>Requested by:</NewValue>
              </PropertyChange>
    The content of the label is hard coded within the XML and therefore is always the same, independently from the chosen language of the console.
    The question is: How can I refer/bind the Content property to a DisplayString from the LanguagePacks section of the Management Pack?
    I tried something like this in my Management Pack:
    Defined a FormStrings section:
            <FormStrings>
              <FormString ID="formTestString">$MPElement[Name="dhTestString"]$</FormString>
            </FormStrings>       
    Defined a new binding to the form string (googled from different souces):
              <PropertyBindingChange Object="Label_1" Property="Content">
                <NewBinding Enabled="True" Path="Strings[formTestString].Value" Mode="Default" BindsDirectlyToSource="False" UpdateSourceTrigger="Default" />        
              </PropertyBindingChange>
    Defined a string resource:
        <StringResources>
          <StringResource ID="dhTestString" />
        </StringResources>
    Defined the display strings in the LanguagePacks section of the MP:
            <DisplayString ElementID="dhTestString">
              <Name>Hello World</Name>
            </DisplayString>
    But after importing the MP, restarting SCSM service and console, the label is not visible in the form, its content is blank.
    Can somebody help me?

    I have no proof otherwise, but I don't believe it is possible to localize a value from within a form extension.
    Label localization uses a RelativeSource binding.
    http://blogs.technet.com/b/servicemanager/archive/2010/02/25/localizing-forms-service-request-example.aspx (note: this blog post talks about localizing labels on custom forms, not form extensions)
    The <NewBinding> and <PropertyBindingChange> capability is a feature of the SCSM console framework and, as far as I can tell looking in the code, it doesn't support the creation of a RelativeSource binding.
    By the way, you're not the only one to have asked this question..a couple people have asked in the forums in the past, but I never saw an answer. In fact, the only other references I can find to localizing labels and such revolves around custom forms or
    correctly applying label values to copies of existing forms (but not applying values to new labels).
    Hopefully I'm wrong and it can be done, but I personally don't know how.
    An admittedly complicated work-around, however, would be to create your own custom XAML control and add it to your form..then you could use the relative source binding on the labels. But creating a custom control requires some experience with Visual
    Studio and C#.
    http://blog.scsmsolutions.com/2011/08/create-custom-user-control-for-scsm-2010/

  • How to handle too many custom UITableViewCells in UITableView?

    In my iphone app, I need to display many custom rows (maybe thousands or even more) in the UITableView. I add one custom UIView onto each UITableViewCell in "- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath" function, so there will be allocate much memory for the all my custom UIViews. When I add 500 rows into the UITableView, the memory ran out, then the app crashed. I think maybe there is something wrong with my code or design, I don't know how to handle this (thousands custom rows in UITableView). Please help me.... Thanks very much..
    Below is the my code:(if I have thousands of rows, the following code will allocate thousands of CustomViews), is there any way that not allocate so many CustomViews?
    // Customize the appearance of table view cells.
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    **cell = [[[UITableViewCell alloc] initWithFrame:CGRectMake(0, 0, 110, 25) reuseIdentifier:CellIdentifier] autorelease] ;
    // Set up the cell...
    CustomView *cellView = [[CustomView alloc]initWithFrame:CGRectMake(1, 1, 108, 24)];
    [cell addSubview: cellView];
    [cellView release];
    return cell;
    }

    Hi,
    well you should add the customView if you need to create a new cell only. Any reused cell will contain this customview allready since you've added it when the cell was created.
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithFrame:CGRectMake(0, 0, 110, 25) reuseIdentifier:CellIdentifier] autorelease];
    // Add customView to new cell's only
    CustomView *cellView = [CustomView alloc] initWithFrame:CGRectMake(1, 1, 108, 24)];
    [cell addSubview: cellView];
    [cellView release];
    // Set up the cell...
    return cell;

  • How to edit a captured custom .wim file?

    Hi folks,
    I am in process of gaining experience with capturing and deploying Windows 7 SP1 from our WDS server using unattend file.
    Everything is working, since we installed our applications, ran sysprep, and captured a custom .wim file.
    Now we deploy it using unattend file and everything works.
    I am trying to figure out if there is a best practice here for adding applications to this new custom .wim file?
    I've tried deploying this new image to a unit, installed app, and run sysprep but fails with this error:
    A fatal error occurred while trying to sysprep the machine.
    I am thinking this has to do with multiple syspreps or something?
    I am trying to avoid having to use a default install.wim and app install automation with MDT or something like that.  We are strict to WDS only right now.
    Appreciate any comments,
    Thanks!  romatlo

    Offline servicing allows for adding/removing drivers and updates in MSU/CAB files.
    I do not use MDT either. If you want to "install" a new application to an image that is "out of arms" then you will need to install it after deployment. If your image has an answer file, you can mount your image. Then copy the installation files to it or
    you can keep it on a network share. Then in the answer file, you can put in the commands to install it using FirstLogonCommands.
    I typically like to reference a .cmd file in my unattend that I can add/remove commands to finalized images. So if a client wants to install a new program but doesn't want to recreate the image, then I can have it installed that way.
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <Order>1</Order>
    <Description>Set up Service Account</Description>
    <CommandLine>cmd /C start /wait c:\folder\FirstLog.cmd</CommandLine>
    </SynchronousCommand>
    </FirstLogonCommands>

  • How to EDIT OM infotype.

    Hi All,
       Cna somebody help me in identifying how to edit the OM custom infotype.Where do we do the Global data Declaration and where do we write the PAI code for the required functionality to be included??
    Thanks in Advance,
    Shanmukhi.

    hi,
    Go thru following thread
    INFOTYPE for P.A. and O.M.
    <b>plz reward if helpful</b>
    Swati

  • How do you add a custom label to dates in contacts.....

    How do you add a custom label to dates in contacts- I have multiple birthdays in contact group and want to change label through customise to add additional birthday- unless another way to add second birthday to contacts and identify each one?????? or way to link contacts with same address phone number etc but id birthdays?????

    You have some contacts with more than one birthday?
    To add a custom label for a date, select Edit for an existing contact. Select Add Field. Select Date. Scroll up with the Info window above the date selection and select Other for the new date selection. Select Add Custom Label and then select this label for the new date field for the contact.
    As far as linking dates with multiple contacts, the answer is no to that.

  • How to edit custom and/or user dictionaries in OPPM v.9 (NOT P6)

    Hi All:
    Thanx, Sachim for your help on my earlier question.
    Now that I have poked around a little more, I realized that I haven't seen anything about how to EDIT the dictionary files once created. The "organizational custom dictionary" text file could just be edited with any text editor, but what about the other available OPPM dictionaries?
    I've also noticed that if a User adds a word, it goes into his/her personal dictionary. That means that its not available to other Users. How does one clean them up of accidentally (or unintentionally) added mis-spelled words? Every other application I've ever used with a spell checker has that function somewhere, but I can't see it in OPPM. It would be great to be able, as an Administrator, to be able to "harvest" those added words, to share with the other users.
    Anyone have any info on these issues? Thanx in advance.

    if you are using 12.1.3/4 then you can do using "Define Parameter" screen to create LOV and attach to integrator.

  • How can I add a custom attribute to a catalog area? (CRM Isa Sales)

    Gents,
    How can I add a custom attribute to a catalog area? (CRM Isa Sales)
    Actually I would like to use the Catalog Area Type (maintained in trx COMM_PCAT_ADM on Catalog Area Header level). This field doesn't seem to be available in J2EE webshop. (The field documentation says it is for documentation purposes only so I don't expect it to be transferred).
    As this field is not readily available, I would like to add is as an attribute to the Catalog Area. BADI's PCAT_IMS_FEED_ATT and PCAT_IMS_FEED_VAL seem to indicate that it should be possible to add additional fields not only on product level, but also on Area level:
    Example implementation code:
    method IF_EX_PCAT_IMS_FEED_ATT~READ_NEW_FIELDS.
    * Example, how to add new attributes to a indexcategory
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' carries the attributetype ('S'tring, 'I'ntegar or
    * 'F'loat)
    * Structure 'IS_OBJECTS' carries actuall identifiers
      data: ls_fields        type comt_pcat_ims_feed_ux.
      case iv_level.
        when 'C'.                        "Category Level
    *     no new field
        when 'P'.                        "Product Level
          ls_fields-field = 'CUSTOMER_EXIT_FIELD'.
          ls_Fields-value = 'S'.
          append ls_fields to ct_fields.
    *     exproduct fields
          ls_fields-field = 'REMAN_ABL'.
          APPEND ls_fields TO ct_fields.
          ls_fields-field = 'EXCH_BUS'.
          APPEND ls_fields TO ct_fields.
      endcase.
    endmethod.
    However, when I create an implementation and add some code in the when 'C' part, the attributes do not seem to get transferred. (I've checked in the debug mode of the developer studio).
    - My example code:
    METHOD if_ex_pcat_ims_feed_att~read_new_fields.
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' contains the attributetype
    * ('S'tring, 'I'ntegar or * 'F'loat)
      DATA:
      ls_fields LIKE LINE OF ct_fields.
      CASE iv_level.
        WHEN 'C'.                        "Category Level
          ls_fields-value = 'S'.
          ls_fields-field = 'ZTEST'.
           APPEND ls_fields TO ct_fields.
        WHEN 'P'.                        "Product Level
      ENDCASE.
    ENDMETHOD.
    and:
    METHOD if_ex_pcat_ims_feed_val~read_new_fields.
      CASE iv_level.
        WHEN 'C'.
         ls_fields-field = 'ZTEST'.
         ls_Fields-value = 'Value 1'.
         append ls_fields to ct_fields.
        WHEN 'P'.
      ENDCASE.
    ENDMETHOD.
    In the ABAP debugger, I can see that my code is touched during initial and delta replications, however, after replication, the fields do not show up in the Java debugger.
    Any ideas?
    regards,
    Wilco Menge

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • How to edit the list box items in labwindow/​CVI?

     how to edit the list box items in labwindow/CVI?

    Listbox items cannot be edited directly in the control: what you can do is to select a line an, transfer its content to a textbox control, edit text there and move text back to the listbox control. Available interactions with the listbox control are listed in the help.
    An alternative to it is to use a tree customized to appear like a listbox: tree item labels can be edited directly in the control, at least those in the base column of the tree. You can look at the example \samples\userint\treelist.cws that shows how a tree can be customized this way. I haven't opened it, but this old example too should show the ability to edit tree cells.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How do I label photos?

    How do I label photos?

    What kind of label do you want?
    You can add captions, custom tags (keywords), flags (favorites, flag).
    See this help page on how to add flags and tags:
    Flag, tag, hide photos: http://help.apple.com/iphoto/ipad/1.1/#blnk7c4d5c64
    And this page on how to add captions:
    Add captions: http://help.apple.com/iphoto/ipad/1.1/#blnk7c4d600f
    Select a photo and tap Add Caption.Tap Edit if you don’t see Add Caption
    Type the caption and tap Done.
    The caption appears on the photo wherever it’s used (albums, events, journals, and so on).
    Regars
    Léonie

  • Custom UITableViewCell: Recognizing which cell to update

    Hello,
    I have created a custom UITableViewCell in IB with two UIButtons and one UILabel. What I would like to do is have each button perform an action on the UILabel - lets just say change the UILabel's text for now. I have the following set up and everything works.
    MyViewController.m/h
    _ Has UITableViewCell property and IBOutlet connected to MyCustomTableCell
    _ Has two IBAction methods to handle each UIButton pressed
    MyCustomTableCell
    _ File Owner set to MyViewController
    _ Has tags denoting each item
    _ UIButtons events are connected to the custom methods in MyViewController.m
    Just as a test, I have populated 3 rows in the table. When I hit either UIButton from any row, it only updates the last row's UILabel text. The method that handles the UIButton's event is something like:
    -(IBAction)buttonOnePressed:(id)sender
    UILabel *myLabel = (UILabel*) [customLoadedCell viewWithTag:1];
    myLabel.text = @"button one";
    How do I recognize which row the button's event came from so I can only update that label?

    sptrakesh wrote:
    The button that triggered the event will be the child of the appropriate cell.
    Took me awhile but I finally understood what you meant. So basically what I did inside the method to handle the touch up event was:
    UITableViewCell *mycell = (UITableViewCell *)[[sender superview] superview];
    UILabel *myLabel = (UILabel*) [mycell viewWithTag:4];
    myLabel = @"test";
    The first line allows to get a reference to the UITableViewCell I tapped. If I needed the row number I could reference it by doing this:
    NSIndexPath *ip = [self.tableView indexPathForCell:(UITableViewCell *)[[sender superview] superview]];
    ip.row will return the row number.
    self.tableView is the reference to the table view.

  • How do you invoke the customer satisfaction guarantee on HP photo paper?

    OK, perhaps this is a silly question, but I can't find anything on the HP site or forums that addresses this.  How does one invoke the customer satisfaction guarantee on HP photo paper?  The instructions in the box (and website) tell me to call HP customer care.  I did that, and spent 25 minutes having a technician tell me it was a problem with my printer (HP Photosmart C6180), my printer was out of warranty, and I would need to exchange it and pay a fee to upgrade to a newer model with a 1 year warranty.  She seemed not to care or know anything about the customer satisfaction guarantee for paper; she was only trained to tell you the problem was most surely with the printer.
    In case anyone here can help, I have the HP Premium Plus 4x6 glossy paper, and whenever I use it the picture quality is extremely poor--not at all what I expected from the paper.  It appears the ink has "balled" up, and it looks very splotchy.  I am setting the paper type appropriately when printing, and I use original HP 02 inks.  When I use other photo paper to print photos, they come out perfectly.  Having wasted quite a bit of ink and paper trying different things, I'm just not satisfied and would like to discuss this further with HP.

    The only numbers available (I've just reached over and picked up a box of premium plus 4X6 from my supply shelves to look) are on the bottom end back of the box.  They are directly under their corresponding bar codes; the Product Number (for 4X6 premium plus it's Q1978AC) and what looks like the SKU (on my box, ignoring the small 8 and 5 at either end, that reads 0873654213).  Additionally, there is a "Lot Number" (printed in white dot printing on a gray box background) directly above the product number (which should have "US" in the upper left, and a string below that...mine is US00204805).  There is no number on the back of the paper, just the HP logo and a string of 6 small dots under it in a diagonal pattern spread across it.
    So, I expect they want all three; Product Number, SKU, and Lot Number...the last likely so that that can pull a lot sample from their QA inventory and attempt to reproduce the issue back at the lab.
    Hope that helps.
    H
    Message Edited by HLansing on 08-14-2009 06:15 AM

  • How can i create a custom object 0REQUID

    Hello all,
    I have a question. How can i create a custom object 0REQUID? Is it possible to create it without actvating BI content?
    Thanks in advance..

    Hi,
    If you want to create a new info object which is a copy of 0REQUID. then
    Go to > info object key figure / Chara catalogue> create new key figure / Chara --> enter 0REQUID in front of TEMPLATE and you will get all details of 0REQUID in your new key figure / chara.
    Hope this helps.
    Assgn pts if helpful.
    Regards
    Edited by: chintamani deshmukh on Apr 14, 2008 11:09 AM

  • How To edit Display ID/Monitor ID or erase Display ID/Monitor ID Windows 7

    Hi !
    Started a tread in the other "answers microsoft forum" bur got redirected here hence they thought that this was a developer-question...
    My original Thread:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/how-to-edit-display-idmonitor-id-or-erase-display/62eeace8-358c-4d65-8609-a3df7c3ac216?rtAction=1425277245844
    question:
    Have a problem that appears sometimes.
    Setting up workstations at work with multiple Display-Monitors, its part of my job...
    The Actual ID that the monitors get from Windows is usually not a problem, most programs can adapt to the windows settings and everything is fine.
    BUT some of the systems we run sends commands and stuff to based on the actual number of the display, the number that appears on the screen when clicking the "identify button" in the desktop/display-settings from control-panel.
    Lets call it the HardWare-ID of the Display
    the computer, or windows remember display´s EDID and stores the monitors that has been connected in  a list ?
    If I installed the monitors/displays in correct order everything is good and works like we want it to.
    So it happens that a display brakes or switch place for some reason, or maybe a driver-upgrade resets the display-list and windows now initiates the monitors in the wrong order.
    the monitor that 1 want to have HW-ID 1 now has HW-ID 2, and everything is wrong, messages and commands now end up on the wrong display.
    We have 3 options.
    1 - Fix the display HW-ID
    2 - Re-Configure the system and all that that includes, and hope that it wont change back at the next display-switch or driver-upgrade.
    3 - re-install windows and hope that the displays get the correct ID and the continue with customer applications and so on.
    I have found out that this is being stored somewhere in REG-Edit, but cant find the correct place
    Having talked to HP, they don't support this kind of things... it must be a windows-problem, try with a clean install.....   c-mon I switched a display !!
    Tried clean driver-installs from AMD and Nvidia for the graphics cards, worked one time, until I rebooted the machine, the back to square one...
    Then they ponited at Microsoft.
    Having talked to Microsoft Support they dont support this kind of things....
    I dont have the skills, but I cant se a problem with a scrips that deletes the reg-edit EDID list after a reboot ?
    then it wouldnt be so complicated, simply:
    unplug all but the display that you wan to be number 1
    run script
    reboot
    plug in display 2 and so on ?
    clearification:
    Hi !
    The question remains.
    Not sure you guys understand my problem, doesent seem so...
    I have the need to sweep the computers display-memory
    The Application we are using is sending the commands to to logical screen number, not primary or secondary screen.
    So It is Vital that I can decide or edit the logical numbers of the displays/screens
    It doesent help me at all to switch sides in controlpanel och swtich witch is primary screen for desktop.
    the application still sends the commands to teh logical numbers, and we dont want to reconfigure that if we changed a display that was faulty.
    So:
    I Need to disconnect displays så that I only have one connected
    sweep the display-memory that is on the computer so that the disconnect monitor becomes number 2 when I reconnect it, if I dont get this memory swiped windows remembers the display and gives it the old number again.
    can anyone help me `?
    NOT connected to any Domain.
    I realy cant understand how hard it can be to swipe the hardware ID of the displays and start over without having to to a clead install of windows !!

    Hi Bobbyco57,
    i've deleted my iCloud's mail ID in my iPhone 4 successfully so i've mentioned steps to delete iCould mail ID as below:
    1. Select Settings icon.
    2. Select iColud icon.
    3. Click on Delete Account.
    4. Enter new Apple ID and Password.
    5. Click on Agree.
    Thanks and Regards,
    Suresh Balakrishnan

Maybe you are looking for

  • Item text is not getting updated in Payment document generated through F110

    Hi all, After generating the payment document via Transaction Code u2013 F110, system is not updating the Text field in the payment document with the text that we have entered in the Invoice (MIRO or FI Invoice). While processing the document via tra

  • Mapping and transformation rules

    Hi experts,    pls tell  me what is this mapping and transformation rules in context wz filw to RFC scenario. what do u mean by transformation and transformation rules. Thanks veeru

  • The iTunes library file cannot be saved. You do not have enough access...

    privileges for this operation. What is going on, what do I do? Windows xp    

  • Developing online exam application

    Hi, I want to develop an online exam application using jsp/servlets technologies.Can anyone send me the source code if any for this application or else suggest me the way on how can i do this. Thanks in Advance, Regards, Siva

  • Multiple movie files after import

    I'm ****** of! Whenever I import a movie (TV-shows/Podcast/Music works great) to iTunes I get an extra copy on the disk. This occurs both if I drag-n-drop in iTunes or if I copy a movie the folder "Automaticly add to iTunes" in the iTunes media folde