Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #25.0K

8 Posted Topics

Member Avatar for Jahliah

your quotation marks are incorrect. You have: strDetails += "" + "," + "Heading1" + "," + "Heading2 + "," + strField[0] + "," + strField[5] + "," + strField[1] + "," + strField[2] + "," + strField[4] + "~"; when it should be: strDetails += "" + "," + …

Member Avatar for MarkAMalo
0
221
Member Avatar for catpoints

I think you want to use the transform on the backgrounds' Canvas.TopProperty. Like this: double To = -1000; double From = (double)Background.GetValue(Canvas.TopProperty); DoubleAnimation da = new DoubleAnimation(From, To, TimeSpan.FromMilliseconds(10)); Background.BeginAnimation(Canvas.TopProperty, da); The problem, i think you will run into, however, is that you have the UniformToFill set and so your …

Member Avatar for catpoints
0
466
Member Avatar for Sumith Asanka

Because you are specifying the font color. windows 8's default font color is White and it has default background (blackish). If your grid has the background set to: Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" you can remove that and see the difference. Mark A. Malo

Member Avatar for MarkAMalo
0
97
Member Avatar for Indah Maing

Maybet this can help? [Click Here](http://webcache.googleusercontent.com/search?q=cache:http://www.codeforge.com/s/0/Ahp-c%23) Mark A. Malo

Member Avatar for MarkAMalo
0
123
Member Avatar for rohit b k
Re: wpf

Take a look at this: [Click Here](http://wpftutorial.net/DragAndDrop.html) Mark A. Malo

Member Avatar for MarkAMalo
0
286
Member Avatar for Mr.UNOwen

I haven't used the Popup, however, most WPF controls have a Horizontal and Vertical Alignment. Have you tried: this.Popup.HorizontalAlignment = Stretch; this.Popup.VertialAlignment = Stretch; Btw, where do you get the Popup? Is this a Calisto control, or something else? Mark A. Malo

Member Avatar for MarkAMalo
0
250
Member Avatar for ahmedsa

Well, you can do one of the following: 1) Create a SQL Stored Proc to handle this for you 2) Use Linq (or nHibernate) to handle this for you 3) Do it yourself If you do it yourself, you will need to do something like (this is Psuedocode): INSERT INTO …

Member Avatar for MarkAMalo
0
238
Member Avatar for munir.ashley

Microsoft recommends that you do not create "dialog boxes" as we do in "normal" windows programming. They have some specifics about what a dialog box should look like in Modern apps. I believe there might be some built in ones in Calisto, however, I typically use a very simple (although …

Member Avatar for MarkAMalo
0
381

The End.