0
votes
3answers
34 views
Executing unix commands in ObjC
Hi All,
How to write a program for executing the 'ls' command in ObjC ?
Any API available ?
Thanks
0
votes
6answers
65 views
List of commands of linux which can be helpful for php develpment
Hello. Every one.
Actually I would like to know the list of commands & there use, which can be helpful for php development.
Say for example,
Crop Command => May be used to c …
1
vote
4answers
415 views
WPF - CanExecute dosn’t fire when raising Commands from a UserControl
Hi,
I've got a button strip usercontrol that I want to have on most of my forms.
I've added the commands as follows ...
public ICommand Create
{
get
{
…
2
votes
3answers
107 views
WPF Built-in Commands
I'm looking for a complete list of built-in WPF Commands.
The best list I've found so far is here, but it does not list all commands.
Some nice-to-have details would be:
Contro …
0
votes
1answer
21 views
Commands for making a photo movie
Are there any commands similar to FFMPEG commands which can be used to make a photo movie?
0
votes
6answers
2k views
bash: start multiple chained commands in background
Hello,
I'm trying to run some commands in paralel, in background, using bash. Here's what I'm trying to do:
forloop {
//this part is actually written in perl
//call command s …
1
vote
4answers
127 views
How to interpret status code in Python commands.getstatusoutput()
In a related question, I asked where to find the documentation for the C function "wait." This was an attempt to figure out return codes for the commands.getstatusoutput() module. …
2
votes
7answers
3k views
WPF MVVM : Commands are easy. How to Connect View and ViewModel with RoutedEvent
Hi
Suppose I have a view implemented as a DataTempate inside a resource Dictionary.
And I have a corresponding ViewModel.
Binding Commands are easy. But what if my View contains a …
0
votes
2answers
37 views
How To access commands on usercontrol from viewmodel
I have legacy windows forms user control that exposses several public methods. I wrapped this control on a wpf user control and encapsulated the Methods with a relaycommand on the …
0
votes
1answer
102 views
C# Button Click Events firing after Command
I am having trouble trying to get a click event to fire after the command gets executed. I am trying to follow the MVVM style of development.
Here is the scenario:
In my applicat …
0
votes
1answer
63 views
Command in a WPFToolkit DataGridTemplateColumn not working
im using the WPFToolkit's DataGrid and im trying to get an edit button working, here is the column:
<my:DataGridTemplateColumn>
<my:DataGridTemplateCo …
0
votes
1answer
26 views
Where to put Commands when injecting buttons into a ToolBar?
In my composite WPF application I am injecting some buttons into the shell's toolbar from a module. These buttons are injected using the region manager in the module's IModule Init …
1
vote
1answer
183 views
When deleting SMS, they don’t get deleted
Hi there!
I connected a GSM/GPRS-modem to my microcontroller and everything works fine.
When I want to delete all messages in the ME storage, I should use this command:
AT+CMGD=1 …
1
vote
3answers
143 views
A good aproach to events in MVVM
So I ran into this problem trying to implement MVVM. AFAIK the best way to execute a method in the ViewModel class is through a CommandBinding.
<Button Command={Binding DoSomet …
2
votes
1answer
106 views
WPF Commands - Doing it with no code-behind
I'm building a simple data entry app in WPF form using the MVVM pattern. Each form has a presenter object that exposes all the data etc. I'd like to use WPF Commands for enabling a …
