0
votes
3answers
31 views
How to bind in PDO a string with %
I have the following query, (which don't work).
How do I bid strings inside an existing string with % (I believe the % is not the problem, but really not sure).
$sql="SELECT * FROM T WHERE f LIKE …
0
votes
1answer
19 views
WPF Combobox behavior weird
Hi guys, I have 2 comboboxes which we will call cbo1 and cbo2. Now, there is a relationship between cbo1 and cbo2. when i select an item at cbo1, the cbo2 ItemsSource is updated (since it is bound to …
0
votes
1answer
11 views
WPF Data Binding - Bind to UI Control from a Template
I have a template in my section. I want to bind the Width of one of the values in that template to the width of a control in my Main XAML section.
Can this be done? Expression Blend only shows the …
2
votes
2answers
44 views
Dictionary to ListView TwoWay binding - possible?
I'm attempting to bind a Dictionary to a ListView who's item template constist of a grid with 2 textboxes. Ideally I'd like to be able to modify both the key and the value of the KeyValuePair …
0
votes
3answers
29 views
WPF Data Binding - Data Template is not Getting Values
I have the following DataTemplate:
<DataTemplate DataType="{x:Type Client:WorkItem}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
…
0
votes
3answers
30 views
Model binding and display trimmed string property
My strongly typed View inherits from a "Person" object that is created with Linq to SQL. In my "Edit" View, i have to display of course old values:
<%= Html.TextBox("FirstName") %>
…
0
votes
3answers
29 views
How to choose a WCF binding?
WCF binding chooser algorithm
I have watched a speak at a TechEd conference that showed a simple algorithm for choosing a WCF binding. I can't find this algorithm but I remember some of the main …
0
votes
1answer
20 views
DateTime binding default error message using Linq to SQL
Hi, i'm using Linq to SQL for my model with a custom validation layer. I cannot find the way to edit or change the default message:
The value '29/34/1980' is not valid for BirthDate.
BirthDate …
0
votes
1answer
21 views
WPF ComboBox DropDown using PlacementTarget
I have a ContentControl comprised from left to right of a Button, partition and a ComboBox. I want the ComboBox dropdown to line up with the left side of the control as opposed to the left side of the …
-2
votes
0answers
35 views
monoTouch: objective-c binding
i´m trying to call methods written in objective-c from c# (using monodevelop)
on monotouch.com under documentation -> "binding objective-c" is written how to make it, but i have no success.. :-(
my …
0
votes
0answers
13 views
sqlite_bind_?(character) how to bind characters in sqlite?
Hi all,
May be its a silly question but I am a bit confused in it, I want to bind a character into sqlite database (neither as varchar, nor as text but as character only)
Hence we can not use
…
1
vote
2answers
53 views
WPF - Binding in XAML to an object created in the code behind
Can an object created in the code (ie C#) be used for binding in the XAML?
For example:
public class MyForm
{
private MyComplexObject complexObject;
public MyForm()
{
…
0
votes
1answer
49 views
Binding a DataGridView to multiple Tables in DataViewManager or DataSet
I have created three data tables by pulling data from an sql database. DT1, DT2, DT3.
I have added these three tables to a data set, myDS.
I have added relations between these three tables.
I …
0
votes
2answers
52 views
Launch my app using email attachement
Hi,
I want to bind my app to some file extension so when I receive an email with an attached file with the correct extension, clicking on it will launch my app and pass it the attached file.
Is it …
1
vote
1answer
11 views
Declaring list and binding property values via XAML for a custom silverlight control
I feel like I've missed something obvious, but when creating a custom control in Silverlight I can declare properties as public and they will be exposed when making XAML declarations, so I can easily …
