by mikes | Aug 8, 2019 | Vue.js
in our first part of this series we looked at simply using Vue router to switch pages Another important piece to the router puzzle is using dynamic routes with parameters for example we had a route as follows /customers that would show the customers screen and...
by mikes | Aug 8, 2019 | Vue.js
In this post we will take a look at using Vue Router first we will create a new vue app usign webpack vue init webpack vuerouter 1 vue init webpack vuerouter after the project is created, navigate to the folder and run npm run dev 1 npm run dev first we will...
by mikes | Jun 5, 2019 | Vue.js
In this short post we will look into adding Internationalization to a Vue.js project. This will allow us to support multiple languages for all our text elements to start we will create a simple Vue project using the Vue cli as follows vue init webpack i18nSample 1 vue...
by mikes | May 29, 2019 | .NET Core, C#
by mikes | May 27, 2019 | .NET Core, C#, Windows
by mikes | Mar 23, 2019 | WPF
The following two lines will restart a running WPF application C# /* restart WPF Application */ System.Diagnostics.Process.Start(Application.ResourceAssembly.Location); Application.Current.Shutdown(); 12345 /* restart WPF...
by mikes | Feb 9, 2019 | DataFlex WebApp
Another control in Development is our Dashboard and KPI Display. A Dahsboard control to visualize data and one of the components a KPI Display to show Key Performance Indicators The control also supports automated updates to refresh the data when needed ...
by mikes | Feb 9, 2019 | DataFlex WebApp
This new control currently in development enables a DataFlex WebApp application to show different types of charts For example a 3D Pie Chart Or as seen in the little video clip we can also create a number of different chart types including Donut, Columns as well as...
by mikes | Nov 19, 2018 | DataFlex, DataFlex WebApp, React Native
Another post on native applications will cover building a simple native mobile application using React Native. What is React Native? React Native is a JavaScript framework that allows you to write native mobile applications for iOS and Android. It is based on React...