active questions tagged custom - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:36:21Zhttp://stackoverflow.com/feeds/tag/customhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1910595/add-a-second-address-line-into-this-custom-function-filemaker-pro0Add a second Address line into this custom function (Filemaker Pro)Ryan2009-12-15T21:39:07Z2009-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 & Case(not IsEmpty(Address); Case(not IsEmpty(x1); "¶") & Address);
x3 = Case(not IsEmpty(City); City & ", ") & Case(not IsEmpty(State); Upper ( State ) & " ") & Zip;
x4 = x2 & Case(not IsEmpty(x3); "¶") & x3;
x5 = x4 & Case(not IsEmpty(Country); Case( not IsEmpty(x4); "¶") & Country)
];
x5
)
</code></pre>
http://stackoverflow.com/questions/1934738/custom-sort-order-with-sql-server-and-net-entity-framework0Custom sort-order with SQL-Server and .NET Entity-FrameworkShimmy2009-12-20T03:24:40Z2009-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&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-app0Email Synching into Custom AppDon2009-10-02T02:01:03Z2009-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-element0Wpf Custom Media elementNate Gates2009-12-19T00:37:44Z2009-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-dll0using jna with FAR PASCAL custom dllBarret852009-12-17T16:58:08Z2009-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-xsl2Deployment of custom content type, forms, cqwp, and xsl.mortenbpost2008-09-25T07:57:51Z2009-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-java13Creating a custom button in JavaAnton2008-08-05T12:15:08Z2009-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-index0iPhone Dev: Create own indexInfinite2009-12-16T11:07:44Z2009-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-button0FCKEditor how to add a Toolbar Button ?Datacenter Hellas2009-12-16T10:56:57Z2009-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-login0Rails custom routing for auto-loginShagymoe2009-12-15T19:20:52Z2009-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 => 'users', :action => '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-50Custom Functions in Crystal Reports 8.5 ?eidylon2009-12-15T17:32:41Z2009-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-expected0Google Custom Search results are different than expectedArt2009-12-03T02:18:20Z2009-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-ribboncontrollibrary0WPF: Custom Theme for RibbonControlLibraryAnurag2009-12-15T07:40:44Z2009-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><ResourceDictionary Source="/RibbonControlsLibrary;component/Themes/Office2007Black.xaml"/>
or
<ResourceDictionary Source="/RibbonControlsLibrary;component/Themes/Office2007Blue.xaml"/>
or
<ResourceDictionary Source="/RibbonControlsLibrary;component/Themes/Office2007Silver.xaml"/>
</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-html0Best approach to creating a custom ExtJS of pure HTMLJamie Love2009-12-15T03:22:52Z2009-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 ('<div class="title-bar"><h1>My App</h1></div>'),
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-horizontally1Flex ComboBox in a Datagrid loses values when I scroll horizontallyTenakha2009-12-14T12:14:45Z2009-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-errors0PHP : Custom error handler - handling parse & fatal errorsSaiful2009-12-14T10:57:15Z2009-12-14T11:08:24Z
<p>How can i handle <strong>parse</strong> & <strong>fatal</strong> errors using a <strong>custom</strong> error handler?</p>
http://stackoverflow.com/questions/1894690/c-set-path-to-pdb1C# - Set path to pdbMetal4502009-12-12T21:00:45Z2009-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-m0how to get instance of .net control which is in child page from user control in master pagePragnesh Patel2009-11-19T15:53:41Z2009-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-method0Custom Collection extends List<T> Add methodunknown (google)2009-11-05T19:11:48Z2009-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-work0Wordpress Custom Value If/ElseIf - Doesn't WorkGreg2009-12-12T03:04:42Z2009-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><?php
$feat_catbox_1 = new WP_Query("cat=$tt_feat_id&showposts=$tt_feat_postcount");
while ($feat_catbox_1->have_posts()) : $feat_catbox_1->the_post();
$key = 'featvideo';
$video_url = get_post_custom_values($key);
$featuredvideo = $video_url[0];
?>
<div class="contentdiv">
<div id="featured-thumb">
<?php if ($key=="featvideo")
echo $featuredvideo;
elseif ($key=="")
echo $images('1', '390', '244', 'alignleft', true); ?>
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1043922/wpf-textbox-custom-dictionary-support3WPF TextBox Custom Dictionary SupportTom Allen2009-06-25T13:26:58Z2009-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-attribute0Magento and unsetting a custom boolean attributeSpongeboy2009-12-09T05:44:45Z2009-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'=>$customer_address_type_id,
'attribute_code'=>'signature_required',
'backend_type'=>'int',
'frontend_input'=>'boolean',
'frontend_label' => 'Signature required',
'is_global' => '1',
'is_visible' => '1',
'is_required' => '0',
'is_user_defined' => '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-selection2WPF ListView turn off selectionMartin Konicek2009-06-26T20:46:56Z2009-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><ListView Height="280" Name="listView">
<ListView.Resources>
<!-- attempt to override selection color -->
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightColorKey}"
Color="Green" />
</ListView.Resources>
<ListView.View>
<GridView>
<GridView.Columns>
<GridViewColumn Header="Name" DisplayMemberBinding="{Binding Name}" />
<!-- more columns -->
</GridView.Columns>
</GridView>
</ListView.View>
</ListView>
</code></pre>
http://stackoverflow.com/questions/1880149/encryption-decryption-using-x509-certificate-in-biztalk-custome-pipeline-componen0Encryption/Decryption using X509 certificate in biztalk custome pipeline componentHoward2009-12-10T10:46:02Z2009-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-images0Google earth browser plugin does not accept custom markers with custom images.Jayesh2009-09-24T03:48:55Z2009-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-environment1wrap LaTeX command in environmentkvaruni2009-12-09T10:20:24Z2009-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-vc60Help please: No BN_CLICKED for custom radio button (MFC, VC++6)SparkyNZ2009-12-09T03:42:23Z2009-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->PostMessage( BN_CLICKED, (WPARAM) IDC_RAD_1/*GetDlgCtrlID()*/, (LPARAM) this->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-updatepanel0How to create custom asp.net validator that works with UpdatePanel?Goran2009-12-09T12:52:06Z2009-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-annotationview1customize callout bubble for annotationview?Zach2009-10-14T12:02:27Z2009-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-wordpress0Echoing a string that contains PHP (in WordPress)chris2009-12-08T17:46:26Z2009-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><div class="excerpt">
<?php
$key = 'thumb-url';
$themeta = get_post_meta($post->ID, $key, TRUE);
if($themeta != '') {
echo 'photo exists';
}
?>
</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><img alt="<?php the_title() ?>" src="<?php if ( function_exists('get_custom_field_value') ){ get_custom_field_value('thumb-url', true); } ?>" align="absmiddle" height="62" width="62" class="writtenpostimg" />
</code></pre>
<p>How do I get that ↑ inside the echo part of the if statement?</p>
<p>Much appreciated...</p>