15,993,495 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Punamchand Dhuppad (Top 18 by date)
Punamchand Dhuppad
5-Dec-14 5:54am
View
Did you get mycanvas1 object value in "obj" object ?
Punamchand Dhuppad
8-Aug-14 4:29am
View
I got the solution for this on MSDN refer this link and example this will solved your problem. This is explain you "How to bind Command to button in DataTemplate in Windows Store app". Download this example and us its Command folder classes.
http://code.msdn.microsoft.com/windowsapps/Command-binding-inside-3cef5eea
Hope this will help you.
Punamchand Dhuppad
7-Aug-14 7:24am
View
you can do this with file extension also.
Path.GetExtension(filepath);
Punamchand Dhuppad
7-Aug-14 7:16am
View
what is mean by "kind" of file ?
You mean "filetype" ?
Punamchand Dhuppad
24-Jul-14 5:09am
View
http://stackoverflow.com/questions/16339398/mvc4-passing-model-from-view-to-controller
or
Search on google "pass data form Controller To View" it will give you lots of example
Now hope it will help you. It just a matter of binding any SelectList value to your dropdown.
Punamchand Dhuppad
24-Jul-14 4:29am
View
Then pass the Model to your view and use it.
Punamchand Dhuppad
23-Jun-14 5:15am
View
FlowChartItemStyle ???
Punamchand Dhuppad
25-Mar-14 3:39am
View
It means that your file has special characters and it is save in UTF 8 format. But if you want to read special characters then use Encoding.UTF8 type in second argument.
Punamchand Dhuppad
25-Mar-14 3:10am
View
0001 - 1 and 0010 - 2 then 00010010 - 18. So what do you want ?
Either 18 or ("0001" + "0010") "12"
Punamchand Dhuppad
6-Feb-14 2:04am
View
Hello Friend, This is not a general discussion forum. you can share your ideas or view to "discussions" link. Thank you.
Punamchand Dhuppad
4-Feb-14 5:01am
View
sorry, Updated the link
Punamchand Dhuppad
14-Jan-14 22:36pm
View
If you understood MVVM pattern perfectly. Then you implemented it correctly.
Punamchand Dhuppad
17-Oct-13 23:20pm
View
Please provide public property in RaisePropertyChanged.
It means RaisePropertyChanged("PageOfPage"). I just update my solution, that is my mistake.
Punamchand Dhuppad
17-Oct-13 8:24am
View
Instead of assigning value to private variable assign string to Public variable (PageOfPage). So that RaisePropertyChanged("pageofpage") will call.
Punamchand Dhuppad
3-Sep-13 2:09am
View
nice one
Punamchand Dhuppad
2-Sep-13 7:09am
View
Then do one thing...
Make the owner null for your child window closing event inside the child window itself.
like - do this code inside class sub_window1
this.Closing += sub_window1_Closing;
void sub_window1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
this.Owner = null;
}
This is necessary to get the focus on your mainwindow.
Thanks
Punamchand Dhuppad
20-Aug-13 3:28am
View
nice one
Punamchand Dhuppad
9-Aug-13 5:54am
View
Thank you Ahmad ;-)
Show More