Introduction
Customizing the Action Bar in Acumatica allows developers to add custom buttons to specific grids, enhancing user experience and functionality. This guide walks through the process of adding a new action button using C# and ASPX.
Understanding the Requirements
To add a button in the...
Introduction
In this article, I'll guide you through the process of extracting data from .mdf and .ldf database files using C# and Acumatica's tools. Occasionally, you may need to extract data from detached SQL Server .mdf and .ldf files, export it to a CSV format, and handle database attachment/...
Hello everybody,
today I want to make short post on how to confiugre one to many relationship in Entity Framework 6.
Imagine following: One group can have multiple students. So one to many relationship. For this purpose you can use following convention configuration agreement:
public class&n...
Hello everybody,
today I want to document simple but very useful feature if you work with multiple threads in Winforms application.
Quite often it happens that you execute in some paralel thread long running calculations and would like time from the time notify results to UI.
But if y...
Hello everyboydy,
today I want to share with anybody mine implementation of DAC class generator.
By default Acumatica provides you with DAC class generator which is pretty good.
But time from the time I had a need to generate DAC class into text field, and then
put it somewhere in my solution, an...
Hello everybody,
today I want to show sample of code that you can use for your plugins.
Sometime it can happen that you have some application with it's dlls and you can decide to make ad hoc dlls.
In order to demonstrate how to do it I prepared following code:
Create first class library as BaseLi...
Hello everybody,
today I want to document a few lines of code which can help to convert excel file to CSV file with help of OLE:
static void ConvertExcelToCsv(string excelFileName, string csvOutputFileName, int worksheetNumber = 1)
{
&...
Hello everybody,
today I want to give sample of reading available types from dll .net assembly, check if at least one of them implements interface, and if implements then to create instance of that type and return it.
So, imagine you have such interface declaration in your code:
public ...
Hello everybody,
today I want to write few words about Concurent collections in C#. First of all I want to point there there are only four of them:
ConcurrentDictionary
ConcurrentQueue
ConcurrentStack
ConcurrentBag
BlockingCollection
Partitioner
EnumerablePartitionerOptions
IProducerConsum...
Hello everybody,
today I want to document few features of System.Reflection namespace.
It has following important types:
Type ( with methods GetType, GetMemberInfo, GetPropertyInfo, GetFieldInfo ), Activator ( with method CreateInstance ), Assembly ( Load, LoadFrom, GetTypes, GetName, GetFiles ),...