{"id":252168,"date":"2024-06-18T06:35:31","date_gmt":"2024-06-18T06:35:31","guid":{"rendered":"https:\/\/namso-gen.co\/blog\/?p=252168"},"modified":"2024-06-18T06:35:31","modified_gmt":"2024-06-18T06:35:31","slug":"how-to-get-the-value-of-a-repositoryitemlookupedit-in-c","status":"publish","type":"post","link":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/","title":{"rendered":"How to get the value of a RepositoryItemLookupEdit in C#?"},"content":{"rendered":"<p>**How to get the value of a RepositoryItemLookupEdit in C#?**<\/p>\n<p>The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to select a value from a predefined set of options. If you are working with this control and want to retrieve the selected value, here&#8217;s how you can do it.<\/p>\n<p>To get the value of a RepositoryItemLookupEdit in C#, you can access the EditValue property of the control and cast it to the appropriate data type. Here&#8217;s an example that demonstrates the process:<\/p>\n<p>&#8220;`csharp<br \/>\n\/\/ Assuming you have a RepositoryItemLookupEdit called lookupEdit<\/p>\n<p>\/\/ Get the selected value<br \/>\nvar selectedValue = (int)lookupEdit.EditValue;<\/p>\n<p>\/\/ Do something with the selected value<br \/>\nConsole.WriteLine(&#8220;Selected Value: &#8221; + selectedValue);<br \/>\n&#8220;`<\/p>\n<p>In this example, we are assuming that the value stored in the RepositoryItemLookupEdit control is of type integer. You may need to cast it to a different data type based on your requirements.<\/p>\n<p>The EditValue property of the RepositoryItemLookupEdit control returns the selected value as an object. To work with the value, you need to cast it to the appropriate data type. If the value cannot be casted, an exception will be thrown, so it&#8217;s essential to ensure the correct type conversion.<\/p>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_62 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title \" >Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#FAQs_about_getting_the_value_of_a_RepositoryItemLookupEdit_in_C\" title=\"FAQs about getting the value of a RepositoryItemLookupEdit in C#\">FAQs about getting the value of a RepositoryItemLookupEdit in C#<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#1_How_do_I_populate_a_RepositoryItemLookupEdit_control\" title=\"1. How do I populate a RepositoryItemLookupEdit control?\">1. How do I populate a RepositoryItemLookupEdit control?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#2_How_can_I_retrieve_the_display_text_of_the_selected_item_in_RepositoryItemLookupEdit\" title=\"2. How can I retrieve the display text of the selected item in RepositoryItemLookupEdit?\">2. How can I retrieve the display text of the selected item in RepositoryItemLookupEdit?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#3_Can_I_retrieve_both_the_value_and_display_text_of_the_selected_item\" title=\"3. Can I retrieve both the value and display text of the selected item?\">3. Can I retrieve both the value and display text of the selected item?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#4_How_can_I_get_the_index_of_the_selected_item_in_RepositoryItemLookupEdit\" title=\"4. How can I get the index of the selected item in RepositoryItemLookupEdit?\">4. How can I get the index of the selected item in RepositoryItemLookupEdit?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#5_How_do_I_clear_the_selected_value_in_RepositoryItemLookupEdit\" title=\"5. How do I clear the selected value in RepositoryItemLookupEdit?\">5. How do I clear the selected value in RepositoryItemLookupEdit?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#6_Can_I_handle_the_selected_item_change_event_in_RepositoryItemLookupEdit\" title=\"6. Can I handle the selected item change event in RepositoryItemLookupEdit?\">6. Can I handle the selected item change event in RepositoryItemLookupEdit?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#7_How_can_I_check_if_a_value_is_selected_in_RepositoryItemLookupEdit\" title=\"7. How can I check if a value is selected in RepositoryItemLookupEdit?\">7. How can I check if a value is selected in RepositoryItemLookupEdit?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-9\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#8_How_do_I_disable_or_enable_the_RepositoryItemLookupEdit_control\" title=\"8. How do I disable or enable the RepositoryItemLookupEdit control?\">8. How do I disable or enable the RepositoryItemLookupEdit control?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-10\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#9_Can_I_limit_the_values_that_can_be_selected_in_RepositoryItemLookupEdit\" title=\"9. Can I limit the values that can be selected in RepositoryItemLookupEdit?\">9. Can I limit the values that can be selected in RepositoryItemLookupEdit?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-11\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#10_How_can_I_programmatically_set_the_selected_value_in_RepositoryItemLookupEdit\" title=\"10. How can I programmatically set the selected value in RepositoryItemLookupEdit?\">10. How can I programmatically set the selected value in RepositoryItemLookupEdit?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-12\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#11_How_can_I_prevent_users_from_editing_the_RepositoryItemLookupEdit_control_directly\" title=\"11. How can I prevent users from editing the RepositoryItemLookupEdit control directly?\">11. How can I prevent users from editing the RepositoryItemLookupEdit control directly?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-13\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#12_How_can_I_display_a_tooltip_for_the_selected_value_in_RepositoryItemLookupEdit\" title=\"12. How can I display a tooltip for the selected value in RepositoryItemLookupEdit?\">12. How can I display a tooltip for the selected value in RepositoryItemLookupEdit?<\/a><\/li><\/ul><\/nav><\/div>\n<h3><span class=\"ez-toc-section\" id=\"FAQs_about_getting_the_value_of_a_RepositoryItemLookupEdit_in_C\"><\/span>FAQs about getting the value of a RepositoryItemLookupEdit in C#<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<h3><span class=\"ez-toc-section\" id=\"1_How_do_I_populate_a_RepositoryItemLookupEdit_control\"><\/span>1. How do I populate a RepositoryItemLookupEdit control?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nTo populate a RepositoryItemLookupEdit control, you need to set its DataSource property with a data source, and specify the appropriate DisplayMember and ValueMember properties to define how the items are displayed and their corresponding values.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"2_How_can_I_retrieve_the_display_text_of_the_selected_item_in_RepositoryItemLookupEdit\"><\/span>2. How can I retrieve the display text of the selected item in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nTo get the display text of the selected item, you can access the Text property of the control, like this: &#8220;`var selectedText = lookupEdit.Text;&#8220;`<\/p>\n<h3><span class=\"ez-toc-section\" id=\"3_Can_I_retrieve_both_the_value_and_display_text_of_the_selected_item\"><\/span>3. Can I retrieve both the value and display text of the selected item?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nYes, you can retrieve both the value and display text of the selected item. The ValueMember property of the RepositoryItemLookupEdit control defines the member of the underlying data source used as the value, and the DisplayMember property specifies the member used as the display text.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"4_How_can_I_get_the_index_of_the_selected_item_in_RepositoryItemLookupEdit\"><\/span>4. How can I get the index of the selected item in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nTo retrieve the index of the selected item, you can use the following code: &#8220;`var selectedIndex = lookupEdit.Properties.GetIndexByKeyValue(lookupEdit.EditValue);&#8220;`<\/p>\n<h3><span class=\"ez-toc-section\" id=\"5_How_do_I_clear_the_selected_value_in_RepositoryItemLookupEdit\"><\/span>5. How do I clear the selected value in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nTo clear the selected value, you can assign null or an appropriate default value to the EditValue property, like this: &#8220;`lookupEdit.EditValue = null;&#8220;`<\/p>\n<h3><span class=\"ez-toc-section\" id=\"6_Can_I_handle_the_selected_item_change_event_in_RepositoryItemLookupEdit\"><\/span>6. Can I handle the selected item change event in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nYes, you can handle the selected item change event using the EditValueChanged event of the control.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"7_How_can_I_check_if_a_value_is_selected_in_RepositoryItemLookupEdit\"><\/span>7. How can I check if a value is selected in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nYou can check if a value is selected by simply comparing the EditValue against null, like this: &#8220;`if (lookupEdit.EditValue != null) { \/* Value is selected *\/ }&#8220;`<\/p>\n<h3><span class=\"ez-toc-section\" id=\"8_How_do_I_disable_or_enable_the_RepositoryItemLookupEdit_control\"><\/span>8. How do I disable or enable the RepositoryItemLookupEdit control?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nTo disable or enable the control, you can set the Enabled property to true or false, respectively: &#8220;`lookupEdit.Enabled = false;&#8220;`<\/p>\n<h3><span class=\"ez-toc-section\" id=\"9_Can_I_limit_the_values_that_can_be_selected_in_RepositoryItemLookupEdit\"><\/span>9. Can I limit the values that can be selected in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nYes, you can limit the values by setting the Properties.DataSource property with a filtered data source or by handling the QueryPopUp event and modifying the data source before it is displayed.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"10_How_can_I_programmatically_set_the_selected_value_in_RepositoryItemLookupEdit\"><\/span>10. How can I programmatically set the selected value in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nTo set the selected value programmatically, assign the desired value to the EditValue property, like this: &#8220;`lookupEdit.EditValue = selectedValue;&#8220;`<\/p>\n<h3><span class=\"ez-toc-section\" id=\"11_How_can_I_prevent_users_from_editing_the_RepositoryItemLookupEdit_control_directly\"><\/span>11. How can I prevent users from editing the RepositoryItemLookupEdit control directly?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nTo prevent direct editing, you can set the RepositoryItemLookupEdit.ReadOnly property to true. This way, users can only select values from the predefined list.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"12_How_can_I_display_a_tooltip_for_the_selected_value_in_RepositoryItemLookupEdit\"><\/span>12. How can I display a tooltip for the selected value in RepositoryItemLookupEdit?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>\nYou can set the ToolTip property of the RepositoryItemLookupEdit control to display a tooltip for the selected value.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>**How to get the value of a RepositoryItemLookupEdit in C#?** The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to select a value from a predefined set of options. If you are working with this control and want to retrieve the selected value, here&#8217;s how you can do it. To get &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to get the value of a RepositoryItemLookupEdit in C#?\" class=\"read-more button\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#more-252168\">Read more<span class=\"screen-reader-text\">How to get the value of a RepositoryItemLookupEdit in C#?<\/span><\/a><\/p>\n","protected":false},"author":63,"featured_media":107420,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[86279],"tags":[],"class_list":["post-252168","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to get the value of a RepositoryItemLookupEdit in C#?<\/title>\n<meta name=\"description\" content=\"**How to get the value of a RepositoryItemLookupEdit in C#?** The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to get the value of a RepositoryItemLookupEdit in C#?\" \/>\n<meta property=\"og:description\" content=\"**How to get the value of a RepositoryItemLookupEdit in C#?** The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/\" \/>\n<meta property=\"og:site_name\" content=\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/synchronyfinancial\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-18T06:35:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Velma Ogden\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@synchrony\" \/>\n<meta name=\"twitter:site\" content=\"@synchrony\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Velma Ogden\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/\"},\"author\":{\"name\":\"Velma Ogden\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/fc93d9bf0970ea3275be2a8bb1824bee\"},\"headline\":\"How to get the value of a RepositoryItemLookupEdit in C#?\",\"datePublished\":\"2024-06-18T06:35:31+00:00\",\"dateModified\":\"2024-06-18T06:35:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/\"},\"wordCount\":645,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"articleSection\":[\"Learn\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/\",\"name\":\"How to get the value of a RepositoryItemLookupEdit in C#?\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\"},\"datePublished\":\"2024-06-18T06:35:31+00:00\",\"dateModified\":\"2024-06-18T06:35:31+00:00\",\"description\":\"**How to get the value of a RepositoryItemLookupEdit in C#?** The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to\",\"breadcrumb\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/namso-gen.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to get the value of a RepositoryItemLookupEdit in C#?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"description\":\"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co\",\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/namso-gen.co\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"contentUrl\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"width\":500,\"height\":164,\"caption\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\"},\"image\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/synchronyfinancial\",\"https:\/\/twitter.com\/synchrony\",\"https:\/\/www.youtube.com\/synchronyfinancial\",\"https:\/\/www.instagram.com\/synchrony\",\"https:\/\/www.linkedin.com\/company\/synchrony-financial\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/fc93d9bf0970ea3275be2a8bb1824bee\",\"name\":\"Velma Ogden\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Velma Ogden\"},\"description\":\"Guest author Velma Ogden has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to get the value of a RepositoryItemLookupEdit in C#?","description":"**How to get the value of a RepositoryItemLookupEdit in C#?** The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/","og_locale":"en_US","og_type":"article","og_title":"How to get the value of a RepositoryItemLookupEdit in C#?","og_description":"**How to get the value of a RepositoryItemLookupEdit in C#?** The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to","og_url":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/","og_site_name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","article_publisher":"https:\/\/www.facebook.com\/synchronyfinancial","article_published_time":"2024-06-18T06:35:31+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png","type":"image\/png"}],"author":"Velma Ogden","twitter_card":"summary_large_image","twitter_creator":"@synchrony","twitter_site":"@synchrony","twitter_misc":{"Written by":"Velma Ogden","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#article","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/"},"author":{"name":"Velma Ogden","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/fc93d9bf0970ea3275be2a8bb1824bee"},"headline":"How to get the value of a RepositoryItemLookupEdit in C#?","datePublished":"2024-06-18T06:35:31+00:00","dateModified":"2024-06-18T06:35:31+00:00","mainEntityOfPage":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/"},"wordCount":645,"commentCount":0,"publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"articleSection":["Learn"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/","url":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/","name":"How to get the value of a RepositoryItemLookupEdit in C#?","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/#website"},"datePublished":"2024-06-18T06:35:31+00:00","dateModified":"2024-06-18T06:35:31+00:00","description":"**How to get the value of a RepositoryItemLookupEdit in C#?** The RepositoryItemLookupEdit control in C# is a lookup edit control that allows users to","breadcrumb":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-the-value-of-a-repositoryitemlookupedit-in-c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/namso-gen.co\/blog\/"},{"@type":"ListItem","position":2,"name":"How to get the value of a RepositoryItemLookupEdit in C#?"}]},{"@type":"WebSite","@id":"https:\/\/namso-gen.co\/blog\/#website","url":"https:\/\/namso-gen.co\/blog\/","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","description":"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co","publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/namso-gen.co\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/namso-gen.co\/blog\/#organization","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","url":"https:\/\/namso-gen.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","contentUrl":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","width":500,"height":164,"caption":"Namso Gen Blog - Free Credit Card Generator [100% Valid]"},"image":{"@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/synchronyfinancial","https:\/\/twitter.com\/synchrony","https:\/\/www.youtube.com\/synchronyfinancial","https:\/\/www.instagram.com\/synchrony","https:\/\/www.linkedin.com\/company\/synchrony-financial"]},{"@type":"Person","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/fc93d9bf0970ea3275be2a8bb1824bee","name":"Velma Ogden","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Velma Ogden"},"description":"Guest author Velma Ogden has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here."}]}},"_links":{"self":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/252168","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/comments?post=252168"}],"version-history":[{"count":0,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/252168\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media\/107420"}],"wp:attachment":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media?parent=252168"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/categories?post=252168"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/tags?post=252168"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}