Using Vue Router Part 2 – Dynamic Routes

Using Vue Router Part 2 – Dynamic Routes

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...
Using Vue Router Part 2 – Dynamic Routes

Using Vue Router – Part 1

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 after the project is created, navigate to the folder and run  npm run dev first we will create a simple main screen with 3 different...
Vue.js and Internationalization

Vue.js and Internationalization

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 we...
.NET Core Web API – Part 2

.NET Core Web API – Part 2

In this second part we will start adding an endpoint for authentication to our web API. To do this we need to add a new controller. We will add an empty API controller and call it AccountsController. We will use dependency injection to add a UserManager, a...
.NET Core Web API – Part 2

.NET Core Web API – Part 1

In this multi part blog post we will be creating a .NET Core based Web API with authentication and a number of other features. To start we will create a new project in Visual Studio by selecting the ASP.NET Core Web Application project type then we select the API...
Restarting a WPF application

Restarting a WPF application

The following two lines will restart a running WPF application /* restart WPF Application */ System.Diagnostics.Process.Start(Application.ResourceAssembly.Location); Application.Current.Shutdown();  

WebApp Custom Controls – Dashboard KPI

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  ...

WebApp Custom Controls – Charts

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...