How to create a custom progress bar on msi using wix3? - custom-action

I am Building an MSI Installer using Wix 3, I need a progressbar to show to the user the progress of a custom action that is being executed, I've created the Dialog with the progressbar but how to 'link' the progressbar to my custom action? My custom action is in C++, I already tried using WcaProgressMessage but the progress still empty.

Related

Xamarin.Froms MVVMCross loading modal view

My team have been struggling with this for few days.
We are porting a swift app over to Xamarin.Forms using MVVMCross
(This is our first play with Xamarin.Forms)
Our app consists of 4 main viewcontrollers and we have numerous modals views that appear as a 'FormSheet' (so they appear NOT full screen and can be sized). In swift we embed each modal view within a navigation controller.
We are struggling how to do this behaviour in Xamarin.Forms
We have created our main view controllers and can switch using
await _navigationService.Navigate<...ViewModel>();
What we can't do is either load the modal view (so they appear as modal view) or load the view in a new navigation window (again as a modal view)
In order to open a page as a modal you must add the attribute to forms page on code behind
[MvxModalPresentation(WrapInNavigationPage = false)]
public partial class YourModalView : MvxContentPage<YourModalViewModel>
I would highly recommend you to check the presentation attributes from MvvmCross for Xamarin.Forms

BackButton Focus on title bar UWP

I Have built a UWP application with a back button in the title bar.I want to access the back button in title bar using TAB key. Like we could able to access other button control which are inside the application, Seems these button of outside of application control.
If we need to make the focus on to to back button using TAB key then we need to customize the tile bar. They are various links available for reference learn.microsoft.com/en-us/windows/uwp/design/shell/title-bar

How to design process with view and edit mode?

I have process as shown below.
Simple Process
Here I have two task i.e., Draft and Review.(fig1)
In draft i have outcomes as "save & submit".
When i click on save the draft task should display in read only mode so for this i have created the new task as Draft view using display value pallet element(fig 2), in the draft view i have again outcome like edit, submit.
when i click on edit again it moves to draft task. The thing is here i have created the new task for draft view. As this is simple process i can create but for complex project it requires me to create one extra task.
And for the review also i have review view task.
In activiti there is save button is provided, but here if i click on save button it will be in edit mode not in the view mode. And for view mode i have different outcomes for example: edit and submit, when i click on edit outcome again the task should open in edit mode(should show outcomes save and submit). The submit always move to next task.
Please Can anyone provide me the solution to avoid creating the task as draft view and review view.
Thanks & Regards
Amruta Wandakar
Instead of relying on the OOTB buttons create your custom buttons "save" turns your form to read-only, and "edit" makes it writable. you find examples on creating custom form fields in activiti. if you are using activiti embedded in Alfresco you can customize your task definition (model) to include buttons and then register onClick listeners using js

let npapi windowed plugin droppable

I create a windowed npapi plugin on windows, and expect when dragging a file over the plugin, the cursor shows the
accepting drop effect.
For the aim, I tried the following two methods, which both work well in native window app.
call DragAcceptFiles(hwn, TRUE) for the npapi plugin's native window handler
create a IDropTarget class for the handler
But both show forbidden drop cursor. Any idea?
A plus, the program's architecture is Qt embedding CEF.
#Georg Fritzsche and #taxilian give the answer, add a child window to the windowed npapi plugin.
And do drag and drop in the child window.
In my project, I use another solution, described below.
Provide a drag move api in windowed npapi plugin.
This native api handles mouse over test, cursor set, fire custom event so etc.
When drag and drop started, trigger a timer in javascript end to call the api.

drupal how to refresh the page when the content is created in the popups

i have designed a panel where i have to used
to popup links and automodal class for creation of content....
view objects
now after saving the content , and closing the popup the panel page is to be refreshed
how it is done.....
it sounds simple but
i m newbie to drupal
From your class name, it would seem you are using the popups module? If that is true, and you want the parent where the popup is launched from to refresh when the popup is closed, you want the class to be "popups-form-reload"
view objects
Seems like you have a link on a page that launches the popup when clicked. You can use the Drupal l syntax, l for link
l("view objects", 'testviewprintpdf', array('attributes'=>array
(array('class' => 'popups-form-reload'))))

Resources