active questions tagged custom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:36:21Z http://stackoverflow.com/feeds/tag/custom http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1910595/add-a-second-address-line-into-this-custom-function-filemaker-pro 0 Add a second Address line into this custom function (Filemaker Pro) Ryan 2009-12-15T21:39:07Z 2009-12-21T07:10:55Z <p><strong>I want to add a second Address field into this custom function (ie. Apt. #101). If you wanted, you could explain how the Case(not IsEmpty works and I would be willing to attempt to add the second address field in myself...</strong></p> <pre><code>Let( [ x1 = Name; x2 = x1 &amp; Case(not IsEmpty(Address); Case(not IsEmpty(x1); "¶") &amp; Address); x3 = Case(not IsEmpty(City); City &amp; ", ") &amp; Case(not IsEmpty(State); Upper ( State ) &amp; " ") &amp; Zip; x4 = x2 &amp; Case(not IsEmpty(x3); "¶") &amp; x3; x5 = x4 &amp; Case(not IsEmpty(Country); Case( not IsEmpty(x4); "¶") &amp; Country) ]; x5 ) </code></pre> http://stackoverflow.com/questions/1934738/custom-sort-order-with-sql-server-and-net-entity-framework 0 Custom sort-order with SQL-Server and .NET Entity-Framework Shimmy 2009-12-20T03:24:40Z 2009-12-21T02:45:36Z <p>Hello!</p> <p>I have a table I store contacts and their phones.<br> <em>Contact</em>: ContactId (int, PK), FirstName (varchar), LastName (varchar)<br> <em>Phone</em>: PhoneId (int, PK), ContactId(int FK), Number (varchar), SortOrder (tinyint) </p> <p>I want that under each contact, the user should be able to maintain the priority of the phones, meaning that the SortOrder column of phone should be under each ContactId by consecutive numbers.</p> <p>For exmple, when adding the first phone to a user, its SortOrder should become 1, for the second 2 and so on.</p> <p>Say the user added 5 phone to a user, now he wants to move phone (with order) 3 to place 2, it should push current 2 to place 3 and vice versa.</p> <p>If he want to make phone 1 to last it should 'pull' all the phones' SortOrder by -1, then assign previous 1 to 5.</p> <p>I want this system to be consistent and not to have open edges where I have:</p> <ul> <li>2 phones with identical sort-order values in one group</li> <li>First phone in group with value higher than 1</li> <li>Last phone in group with value higher or smaller than amount of phones in group</li> <li>etc. etc. etc.</li> </ul> <p>I think I am pretty clear so far (am I).</p> <p>Now my question is, considering I retrieve the data with .NET EF in a desktop app, and I will be accessing the phones using the Contact.Phones navigation property.</p> <p>Should implement this system in the DAL or in server <code>AFTER INSERT, UPDATE</code> trigger?<br> I personally think this has to be implemented on the server, cuz imagine different users play around with the same contact-phones at the same time, this might break the consistency, huh? </p> <p>Any tips, links, code, advice jokes regarding this custom-sorting issue will be welcommed. </p> <p>I also thought about ROWNUMBER() as a good idea of retrieving the data, but I need to maintain the sorting, not only selecting it.</p> <p>Notes:<br> In general I asked the question in continuation of <a href="http://stackoverflow.com/questions/1923009/need-advice-in-designing-tables-in-sql-server/1923106#1923106">this</a> answer, I decided to use, the contact-phone example was just to make things simple. I've found <a href="http://www.tek-tips.com/viewthread.cfm?qid=1499127&amp;page=5" rel="nofollow">this</a> post discussing my issue but no technical advise was provided there.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1507441/email-synching-into-custom-app 0 Email Synching into Custom App Don 2009-10-02T02:01:03Z 2009-12-20T04:18:09Z <p>Hello, How have people intergrated custom CRM type applications with email?</p> <p>I have a Access 2003 front-end application with a SQL Server 2005 backend. One CRM part of the application tracks the activity with the customer in a traffic log table. Sometimes the salesstaff has communication with their customer using email instead. What do people do to synch this up with an application? I was thinking about creating a form to enter the initial message, so I could save it into a table and then have the system generate a email, of course, this doesn't handle the email communication after the initial email.</p> <p>Thanks</p> http://stackoverflow.com/questions/1931496/wpf-custom-media-element 0 Wpf Custom Media element Nate Gates 2009-12-19T00:37:44Z 2009-12-19T01:31:58Z <p>Hey guys I'm fairly green when it comes to wpf, so I need a little help, here is what im looking to do. </p> <p>I want to create a custom media element, I want to be able to load a video and play any where from 15 secs to 1 min of the video, I want to be able to dynamically set this on load up based on user settings. I'm loading tons of videos essentially into a list view control and I want the video to play, but im trying to save on resources by playing only a small preview of the video. </p> <p>Things I've looked into</p> <ul> <li>custom control - somewhat lost</li> <li>subclassing</li> <li>pre build control</li> </ul> <p>Im just really unsure on where to go next. I would greatly appericate any help you can give me.</p> http://stackoverflow.com/questions/1923127/using-jna-with-far-pascal-custom-dll 0 using jna with FAR PASCAL custom dll Barret85 2009-12-17T16:58:08Z 2009-12-17T19:49:52Z <p>Hi, I am using JNA to access a custom DLL which seems to be using the FAR PASCAL Calling Conventions, but the JVM crashes every time i try to access it.</p> <p>Development Guide of the dll says: BOOL FAR PASCAL GetIomemVersion(LPSTR);</p> <p>And Dependency Walker tells me: _GetIomemVersion@4</p> <pre><code>public class PebblePrinter{ </code></pre> <p>public interface Iomem extends StdCallLibrary { boolean _GetIomemVersion(String version); } </p> <pre><code>String version; Iomem INSTANCE; StdCallFunctionMapper myMapper; </code></pre> <p>public PebblePrinter(){ HashMap optionMap = new HashMap(); myMapper = new StdCallFunctionMapper(); optionMap.put(Library.OPTION_FUNCTION_MAPPER, myMapper); INSTANCE = (Iomem)Native.loadLibrary("iomem", Iomem.class,optionMap); } public String getIomemVersion(){ INSTANCE._GetIomemVersion(version); return version; } }</p> <p>With C# code it works well using</p> <pre><code>[DllImport("iomem.dll", EntryPoint = "_GetIomemVersion@4")] public static extern bool GetIomemVersion(IntPtr version); </code></pre> <p>Can you tell me what i am doing wrong? Thanks in advance!!!</p> http://stackoverflow.com/questions/132030/deployment-of-custom-content-type-forms-cqwp-and-xsl 2 Deployment of custom content type, forms, cqwp, and xsl. mortenbpost 2008-09-25T07:57:51Z 2009-12-16T19:57:20Z <p>Right now I have a visual studio project which contains a custom content type that I made. It also contains all the necessary files for making a sharepoint solution (wsp) file and a script to generate this. </p> <p>Now, I would like to do 2 things. </p> <p>First, I'd like to create a custom display form for the content type and include it in my solution so that it is automatically deployed when I deploy my solution. How do I include this in my solution and make my content type use it?</p> <p>Secondly, you can query this type with the CQWP. I've thought about exporting it, adding more common view fields, and then modifying the XSL that is used to render it. How do I include this into my solution so that it is also deployed. I know i can export the CQWP webpart once it's all setup and include it in my project as a feature. But what abuot the XSL?</p> <p>Looking forward to see your suggestions, cheers.</p> <p>Did as described in the first answer. Worked like a charm.</p> http://stackoverflow.com/questions/2158/creating-a-custom-button-in-java 13 Creating a custom button in Java Anton 2008-08-05T12:15:08Z 2009-12-16T13:40:06Z <p>Is there a way to make a JButton with your own button graphic not just with an image inside the button? If not is another way to create a custom button in java?</p> http://stackoverflow.com/questions/1913953/iphone-dev-create-own-index 0 iPhone Dev: Create own index Infinite 2009-12-16T11:07:44Z 2009-12-16T11:16:29Z <p>I currently got two problems I, both about the index of a UITableView</p> <ol> <li>I want to change the color of some section-tags in the index, to show that there are new changes within this section.</li> <li>I need to position the index on the left side of the table so it doesn't interfere with the detail disclosure Button</li> </ol> <p>Is there a way to realize this with the standard-index? And if not, is it possible with a custom index? How would I realize such a thing and would apple tolerate it?</p> http://stackoverflow.com/questions/1913895/fckeditor-how-to-add-a-toolbar-button 0 FCKEditor how to add a Toolbar Button ? Datacenter Hellas 2009-12-16T10:56:57Z 2009-12-16T10:56:57Z <p>Hello all readers.</p> <p>I like to add a button on FCKEditor toolbar that will execute some JQuery code on Click event.</p> <p>Is there any solution ?</p> <p>What I like to do with that is the following:</p> <p>I have create a database driven File System Manager that is build on ExtJS and CakePHP. Now on some other page I have create a form that use the FCKEditor and I Like to open with a Fancybox the page that hold the File System Manager, to allow the user to select the file that he like to use and then Copy file location.</p> <p>Until now I do this work with a regular link, but I think is better and more professional to open the Fancybox with button from FCKEditor toolbar.</p> <p>Anybody to help ?</p> http://stackoverflow.com/questions/1909730/rails-custom-routing-for-auto-login 0 Rails custom routing for auto-login Shagymoe 2009-12-15T19:20:52Z 2009-12-15T22:21:01Z <p>I want to set up auto-login by giving the user a link/key they can use like <a href="http://domain.com/4yT67rw" rel="nofollow">http://domain.com/4yT67rw</a>. The last 7 digits are random and assigned to the user model.</p> <p>Is it possible to do this with custom routing? I imagine it would have to be something like a regex to detect that it is a key and not a model name or error.</p> <p>Would be great if I could do something like:</p> <pre><code>map.connect 'reg_ex_here', :controller =&gt; 'users', :action =&gt; 'key_redirect' </code></pre> <p>and then in the users controller:</p> <pre><code>def key_redirect user = User.find_by_key(key) redirect_to user_path(user) end </code></pre> <p>Or probably some other easy way that I don't know about. ;)</p> <p>Thanks</p> http://stackoverflow.com/questions/1909068/custom-functions-in-crystal-reports-8-5 0 Custom Functions in Crystal Reports 8.5 ? eidylon 2009-12-15T17:32:41Z 2009-12-15T19:48:55Z <p>Hi all... I could've sworn there was a way to do this (without DLLs), but going through the first several pages of google, I can't find it. Maybe I'm thinking of something else. </p> <p>I'm having to do some development in Crystal Reports 8.5. I thought there was a way to write custom functions. Something like creating a custom formula then writing a function in the code of the formula and putting the formula field at the top of your report, making it then available to anything else needing it. </p> <p>Was there not a way to do this? </p> http://stackoverflow.com/questions/1837246/google-custom-search-results-are-different-than-expected 0 Google Custom Search results are different than expected Art 2009-12-03T02:18:20Z 2009-12-15T15:42:11Z <p>I am using a GCS engine on a site. I don't want a custom search, just a regular google search with the Adsense linking. If I use the main google.com site to search for "gallerykunst" the expected result shows up as #1, in the CSE it does not exist at all.</p> <p>Any ideas!?</p> http://stackoverflow.com/questions/1905785/wpf-custom-theme-for-ribboncontrollibrary 0 WPF: Custom Theme for RibbonControlLibrary Anurag 2009-12-15T07:40:44Z 2009-12-15T13:14:20Z <p>I am using RibbonControlLibrary by Microsoft. It has three predefined themes and one can use them by</p> <pre><code>&lt;ResourceDictionary Source="/RibbonControlsLibrary;component/Themes/Office2007Black.xaml"/&gt; or &lt;ResourceDictionary Source="/RibbonControlsLibrary;component/Themes/Office2007Blue.xaml"/&gt; or &lt;ResourceDictionary Source="/RibbonControlsLibrary;component/Themes/Office2007Silver.xaml"/&gt; </code></pre> <p>How can i define my own custom theme for this Ribbon? Is there any custom theme available?</p> http://stackoverflow.com/questions/1904971/best-approach-to-creating-a-custom-extjs-of-pure-html 0 Best approach to creating a custom ExtJS of pure HTML Jamie Love 2009-12-15T03:22:52Z 2009-12-15T05:27:55Z <p>So I have a need to create an ExtJS component (version 2.3.0). The component is simply plain HTML (styled) - it is a heading.</p> <p>My current approach is to create a custom component as follows:</p> <pre><code>/** * A ExtJS component for a header for the application */ Ext.ux.AppHeader = Ext.extend(Ext.Component, { height: 32, tpl: new Ext.Template ('&lt;div class="title-bar"&gt;&lt;h1&gt;My App&lt;/h1&gt;&lt;/div&gt;'), onRender: function(ct) { this.el = this.tpl.append (ct); Ext.ux.AppHeader.superclass.onRender.apply(this, arguments); } }); Ext.reg('AppHeader', Ext.ux.AppHeader); </code></pre> <p>This works fine, but I'm not convinced it is the "right" way to go about it. If anyone can share a more idiomatic way to do it, or a way that utilises some inner magic in ExtJS better, that would be great.</p> <p>If on the other hand this is the "right" way to do it - let this be an example of how one can.</p> http://stackoverflow.com/questions/1900591/flex-combobox-in-a-datagrid-loses-values-when-i-scroll-horizontally 1 Flex ComboBox in a Datagrid loses values when I scroll horizontally Tenakha 2009-12-14T12:14:45Z 2009-12-14T14:51:29Z <p>Hello,</p> <p>I have a very strange problem in a Flex 3.4 Datagrid. One of the columns is a ComboBox - I have my own custom renderer for the ComboBox. I use it to select my data and then make a "save" to the db. Upon return the comboBox loses its value. Even stranger is that when I scroll the datagrid area to the left (by moving scrollbar right) - the values in the ComboBox change!! When I scroll the datagrid right (by moving the scrollbar left) - the values in the ComboBox don't change.</p> <p>Has anyone seen anything remotely like this in a Flex app?</p> <p>Thanks</p> <p>Khalid</p> http://stackoverflow.com/questions/1900208/php-custom-error-handler-handling-parse-fatal-errors 0 PHP : Custom error handler - handling parse & fatal errors Saiful 2009-12-14T10:57:15Z 2009-12-14T11:08:24Z <p>How can i handle <strong>parse</strong> &amp; <strong>fatal</strong> errors using a <strong>custom</strong> error handler?</p> http://stackoverflow.com/questions/1894690/c-set-path-to-pdb 1 C# - Set path to pdb Metal450 2009-12-12T21:00:45Z 2009-12-12T22:25:26Z <p>Is there any way to set a custom path to Program Database files (*.pdb) in C# under Visual Studio 2008? With C++ this was quite simple (Project settings -> Linker -> Debugging -> Generate Program Database File), but for some reason Microsoft seems to have removed (or hidden) it for C#.</p> <p>I'm aware that the "standard" usage is to have pdb's located in the bin dir alongside the executable, but that directory is becoming quite a mess so I'd really prefer for them to be located in /obj, which is what I always used to do in C++.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1764300/how-to-get-instance-of-net-control-which-is-in-child-page-from-user-control-in-m 0 how to get instance of .net control which is in child page from user control in master page Pragnesh Patel 2009-11-19T15:53:41Z 2009-12-12T19:44:09Z <p>i have user control called shopping cart. which i have used in master page. i want to get the textbox value from the child page in to user control. is it possible to access control from child page in "Custom User Control" which is on master page?</p> http://stackoverflow.com/questions/1682871/custom-collection-extends-listt-add-method 0 Custom Collection extends List<T> Add method unknown (google) 2009-11-05T19:11:48Z 2009-12-12T12:00:01Z <p>I want to create a custom collection and add my own custom Add method. Scenario:</p> <p>Teacher.Students.Add(Student s)</p> <p>I want to put LINQ methods to save the teacher/student relationship to the database, not just add it to the list.</p> <p>How can I do that? How can I know what "Teacher" object this is?</p> http://stackoverflow.com/questions/1892121/wordpress-custom-value-if-elseif-doesnt-work 0 Wordpress Custom Value If/ElseIf - Doesn't Work Greg 2009-12-12T03:04:42Z 2009-12-12T03:11:05Z <p>I'm outside the loop and want to call a custom value "featvideo" and display it. If there isn't "featvideo" then print an image...</p> <p>The video displays, but when there isn't a video a blank box displays. You can see the the issue here: <a href="http://wgl.buildthesis.com" rel="nofollow">http//wgl.buildthesis.com</a></p> <p>(and yes, $images is a function defined in functions.php and works)</p> <pre><code>&lt;?php $feat_catbox_1 = new WP_Query("cat=$tt_feat_id&amp;showposts=$tt_feat_postcount"); while ($feat_catbox_1-&gt;have_posts()) : $feat_catbox_1-&gt;the_post(); $key = 'featvideo'; $video_url = get_post_custom_values($key); $featuredvideo = $video_url[0]; ?&gt; &lt;div class="contentdiv"&gt; &lt;div id="featured-thumb"&gt; &lt;?php if ($key=="featvideo") echo $featuredvideo; elseif ($key=="") echo $images('1', '390', '244', 'alignleft', true); ?&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1043922/wpf-textbox-custom-dictionary-support 3 WPF TextBox Custom Dictionary Support Tom Allen 2009-06-25T13:26:58Z 2009-12-11T10:02:31Z <p>Has anyone found a workaround yet for getting custom dictionary support working for the built in spellchecking on WPF TextBoxes/RichTextBoxes? We've been probing the spelling stuff with reflector hoping to find where the dictionary entries are coming from, but it's looking very much like it's going to be a COM object....</p> <p>I know it's not currently supported and that Microsoft were looking into supporting it in a future release, but that was quite a while ago and I can't seem to find any recent news about it.</p> <p>Clutching at staws, I've posted a suggestion up on Connect: </p> <p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=470233" rel="nofollow">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=470233</a></p> http://stackoverflow.com/questions/1871826/magento-and-unsetting-a-custom-boolean-attribute 0 Magento and unsetting a custom boolean attribute Spongeboy 2009-12-09T05:44:45Z 2009-12-11T05:36:54Z <p>Hi,</p> <p>I've added an attribute to a customer address entity. Attribute setup code is as follows-</p> <pre><code>'entity_type_id'=&gt;$customer_address_type_id, 'attribute_code'=&gt;'signature_required', 'backend_type'=&gt;'int', 'frontend_input'=&gt;'boolean', 'frontend_label' =&gt; 'Signature required', 'is_global' =&gt; '1', 'is_visible' =&gt; '1', 'is_required' =&gt; '0', 'is_user_defined' =&gt; '0', </code></pre> <p>I have then -</p> <ul> <li>added attribute to model\entity\setup.php</li> <li>added a HTML field on the edit form</li> </ul> <p>I am now getting the attribute saved to the database when the checkbox is checked. However, it is not being unset when checkbox is unchecked (I'm guessing due to checkbox input not being 'post'-ed if unchecked.</p> <p>What is the best way to uncheck this? Should I add a default value of 0? Or unset/delete the attribute before save in the controller? Should I add get/set methods to the model?</p> http://stackoverflow.com/questions/1051215/wpf-listview-turn-off-selection 2 WPF ListView turn off selection Martin Konicek 2009-06-26T20:46:56Z 2009-12-11T01:15:35Z <p>Hi everyone,</p> <p>I have a simple WPF ListView and a simple question:</p> <p>Is it possible to turn off the selection, so when user clicks row, the row is not highlighted?</p> <p><img src="http://artax.karlin.mff.cuni.cz/~konim5am/Vis/wpfGrid.png" alt="ListView"></p> <p>I would like the row 1 to look just like row 0 when clicked.</p> <p>Possibly related: can I style the look of the hover / selection? Eg. to replace the blue gradient hover look (line 3) with a custom solid color. I have found <a href="http://stackoverflow.com/questions/382006/wpf-listview-inactive-selection-color">this</a> and <a href="http://blogs.msdn.com/wpfsdk/archive/2007/08/31/specifying-the-selection-color-content-alignment-and-background-color-for-items-in-a-listbox.aspx" rel="nofollow">this</a>, unfortunately not helping.</p> <p>(Achieving the same without using ListView is acceptable too. I'd just like to be able to use logical scrolling and UI virtualization as ListView does)</p> <p>Thank you very much for your help.</p> <p>The XAML for ListView is:</p> <pre><code>&lt;ListView Height="280" Name="listView"&gt; &lt;ListView.Resources&gt; &lt;!-- attempt to override selection color --&gt; &lt;SolidColorBrush x:Key="{x:Static SystemColors.HighlightColorKey}" Color="Green" /&gt; &lt;/ListView.Resources&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridView.Columns&gt; &lt;GridViewColumn Header="Name" DisplayMemberBinding="{Binding Name}" /&gt; &lt;!-- more columns --&gt; &lt;/GridView.Columns&gt; &lt;/GridView&gt; &lt;/ListView.View&gt; &lt;/ListView&gt; </code></pre> http://stackoverflow.com/questions/1880149/encryption-decryption-using-x509-certificate-in-biztalk-custome-pipeline-componen 0 Encryption/Decryption using X509 certificate in biztalk custome pipeline component Howard 2009-12-10T10:46:02Z 2009-12-10T18:08:32Z <p>Hi All,</p> <p>I need to use X509 certificate in the BizTalk Custom Pipeline component to Encrypt/Sign the message and to Decrypt/Verify signature, please let me know some good samples/artcile/blogs etc which explains how to acheive this. </p> <p>RSA needs to be the encrypton algoritham.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1469676/google-earth-browser-plugin-does-not-accept-custom-markers-with-custom-images 0 Google earth browser plugin does not accept custom markers with custom images. Jayesh 2009-09-24T03:48:55Z 2009-12-10T17:00:02Z <p>I use custom images in google maps markers. I have included google earth control through google earth browser plugin. But they don't show custom images in google earth control? Any way I can solve this problem?</p> <p>Thanks, Jayesh</p> http://stackoverflow.com/questions/1872951/wrap-latex-command-in-environment 1 wrap LaTeX command in environment kvaruni 2009-12-09T10:20:24Z 2009-12-10T00:51:05Z <p>How can I wrap a LaTeX command in an environment? In essence, how can I turn \somecommand{contents} into \begin{somecommand} contents \end{somecommand}? I have tried the obvious in creating a new environment as such:</p> <pre><code>\newenvironment{somecommand}[0]{ \somecommand{ } { } } </code></pre> <p>but this causes problems with the curly brackets. Let me give a more concrete example. Say that you want to create the environment very-important and you want to use the command emph to accomplish this. An straightforward (but incorrect) solution would be to write something as</p> <pre><code>\newenvironment{very-important}[0]{ \emph{ } { } } </code></pre> <p>The problem here is that the command works with the information that is found inside the environment, so it is not one of the opening commands of the environment, nor is it a closing command of the environment. The question is then: how can you do this?</p> http://stackoverflow.com/questions/1871454/help-please-no-bnclicked-for-custom-radio-button-mfc-vc6 0 Help please: No BN_CLICKED for custom radio button (MFC, VC++6) SparkyNZ 2009-12-09T03:42:23Z 2009-12-09T20:32:49Z <p>Hi, I have derived a CButton class and created my own radion button control. Its all working nicely with the exception that I can't get the parent dialog to detect when the radio button it clicked.</p> <p>The parent dialog will detect the radio button click if I call CButton::OnLButtonUp() but the problem in doing that is that the framework also draws the radio button as well. I don't want to do that as I am drawing the radio button myself. </p> <p>Can somebody please tell me how to stop Windows/MFC framework from drawing the control in this case? If I don't call CButton::OnLButtonUp() then yeah, Windows/MFC won't draw the control but my parent dialog won't get a BN_CLICKED notification either. </p> <p>I know I could send a custom message back to my dialog but I don't want that - I want compatability with the BN_CLICKED message.</p> <p>As you will see below, I have also tried posting a message back to the owning dialog and this doesn't work either.</p> <pre><code>void CNCCheckBox::OnLButtonUp(UINT nFlags, CPoint point) { if( m_Owner ) m_Owner-&gt;PostMessage( BN_CLICKED, (WPARAM) IDC_RAD_1/*GetDlgCtrlID()*/, (LPARAM) this-&gt;m_hWnd ); //CButton::OnLButtonUp(nFlags,point); // Can't use this!! } </code></pre> http://stackoverflow.com/questions/1873694/how-to-create-custom-asp-net-validator-that-works-with-updatepanel 0 How to create custom asp.net validator that works with UpdatePanel? Goran 2009-12-09T12:52:06Z 2009-12-09T13:01:30Z <p>I think that subject summs it pretty well...</p> <p>I have created my custom validators that work great when I put them on page in design mode. However if I place them in a usercontrol, and then try to add this user control to the parent page via updatepanel, then my custom validators just won't trigger. They simply don't work.</p> <p>Does anyone have any clue on what I have to do here?</p> <p>.net 3.5</p> http://stackoverflow.com/questions/1565828/customize-callout-bubble-for-annotationview 1 customize callout bubble for annotationview? Zach 2009-10-14T12:02:27Z 2009-12-09T12:43:23Z <p>I'm currently working with the mapkit and am stuck.</p> <p>I have a custom annotation view I am using, and I want to use the image property to display the point on the map with my own icon. I have this working fine. But what I would also like to do is to override the default callout view (the bubble that shows up with the title/subtitle when the annotation icon is touched). I want to be able to control the callout itself: the mapkit only provides access to the left and right ancillary callout views, but no way to provide a custom view for the callout bubble, or to give it zero size, or anything else.</p> <p>My idea was to override selectAnnotation/deselectAnnotation in my MKMapViewDelegate, and then draw my own custom view by making a call to my custom annotation view. This works, but only when canShowCallout is set to YES in my custom annotation view class. These methods are NOT called if I have this set to NO (which is what I want, so that the default callout bubble is not drawn). So I have no way of knowing if the user touched on my point on the map (selected it) or touched a point that is not part of my annotation views (delected it) without having the default callout bubble view show up.</p> <p>I tried going down a different path and just handling all touch events myself in the map, and I can't seem to get this working. I read other posts related to catching touch events in the map view, but they aren't exactly what I want. Is there a way to dig into the map view to remove the callout bubble before drawing? I'm at a loss.</p> <p>Any suggestions? Am I missing something obvious?</p> <p>Thanks in advance. </p> http://stackoverflow.com/questions/1868651/echoing-a-string-that-contains-php-in-wordpress 0 Echoing a string that contains PHP (in WordPress) chris 2009-12-08T17:46:26Z 2009-12-08T18:11:01Z <p>I have a custom field in WordPress called "thumb-url" which contains the exact location of an image. I want to <strong>only</strong> display the image if "thumb-url" contains the location of the image.</p> <p>I'm start with an if statement that echoes <strong>photo exists</strong> if there's a value in the "thumb-url" custom field, otherwise it does nothing.</p> <pre><code>&lt;div class="excerpt"&gt; &lt;?php $key = 'thumb-url'; $themeta = get_post_meta($post-&gt;ID, $key, TRUE); if($themeta != '') { echo 'photo exists'; } ?&gt; </code></pre> <p>Now, here's the code that I really want the above if statement to echo if there's a value in "thumb-url":</p> <pre><code>&lt;img alt="&lt;?php the_title() ?&gt;" src="&lt;?php if ( function_exists('get_custom_field_value') ){ get_custom_field_value('thumb-url', true); } ?&gt;" align="absmiddle" height="62" width="62" class="writtenpostimg" /&gt; </code></pre> <p>How do I get that &uarr; inside the echo part of the if statement?</p> <p>Much appreciated...</p>