├── .gitattributes ├── .gitignore ├── Dictionaries ├── en_US.aff ├── en_US.dic ├── it_IT.aff └── it_IT.dic ├── ERPFramework ├── AssemblyInfo.cs ├── Controls │ ├── BreadCrumbs.Designer.cs │ ├── BreadCrumbs.cs │ ├── BreadCrumbs.resx │ ├── DBCheckBox.cs │ ├── DBCheckBox.resx │ ├── DateTextBox.cs │ ├── EnumsManager.cs │ ├── ExCheckedListBox.cs │ ├── ExMetroToolbar.cs │ ├── ExTabPage.cs │ ├── ExtendedDataGridView.cs │ ├── FindableIntelliTextBox.cs │ ├── FindableTextBox.cs │ ├── HorizontalSeparator.cs │ ├── ImageButton.cs │ ├── ImageButton.resx │ ├── ImageCombo.cs │ ├── ImageCombo.resx │ ├── ImageComboItem.cs │ ├── ListComboBox.Designer.cs │ ├── ListComboBox.cs │ ├── ListComboBox.resx │ ├── MetroFiscalTextBox.cs │ ├── MetroGridContainerPanel.cs │ ├── MetroGridFooterPanel.Designer.cs │ ├── MetroGridFooterPanel.cs │ ├── MetroGridFooterPanel.resx │ ├── MetroGridHeaderPanel.cs │ ├── MetroGridTotalControl.cs │ ├── MetroGridTotalFooterPanel.Designer.cs │ ├── MetroGridTotalFooterPanel.cs │ ├── MetroGridTotalFooterPanel.resx │ ├── MetroInputDateRange.Designer.cs │ ├── MetroInputDateRange.cs │ ├── MetroInputDateRange.it-IT.resx │ ├── MetroInputDateRange.resx │ ├── MetroMailTextBox.cs │ ├── Multiselect.Designer.cs │ ├── Multiselect.cs │ ├── Multiselect.resx │ ├── PanelUserControl.cs │ ├── PanelUserControl.resx │ ├── PopUpCalendar.Designer.cs │ ├── PopUpCalendar.cs │ ├── PopUpCalendar.resx │ ├── PopUpComboBox.cs │ ├── PopUpComboBox.resx │ ├── PopUpListBox.Designer.cs │ ├── PopUpListBox.cs │ ├── PopUpListBox.resx │ ├── ProgressStatusBar.cs │ ├── ProgressStatusBar.resx │ ├── RadarComboBox.cs │ ├── RadarForm.Designer.cs │ ├── RadarForm.cs │ ├── RadarForm.it-IT.resx │ ├── RadarForm.resx │ ├── RadarTextBox.cs │ ├── SnapLinesDesigner.cs │ ├── StringTextBox.cs │ ├── StringTextBox.resx │ ├── TextFolderBrowse.cs │ ├── ToolstripNumericUpDown.cs │ ├── UserTabControl.cs │ ├── Wizard.cs │ ├── Wizard.it-IT.resx │ ├── Wizard.resx │ ├── WizardPage.cs │ ├── WizardPage.resx │ └── WizardPagesCollection.cs ├── CounterManager │ ├── CodesControl.Designer.cs │ ├── CodesControl.cs │ ├── CodesControl.resx │ ├── CodesForm.cs │ ├── CodesForm.it-IT.resx │ ├── CodesManager.cs │ ├── CounterControl.Designer.cs │ ├── CounterControl.cs │ ├── CounterControl.resx │ ├── CounterFormatter.cs │ ├── CounterManager.cs │ ├── CounterText.cs │ ├── ICounter.cs │ ├── MetroCounterTextBox.cs │ ├── RadarCodes.Designer.cs │ ├── RadarCodes.cs │ ├── RadarCodes.resx │ ├── RadarCounter.Designer.cs │ ├── RadarCounter.cs │ ├── RadarCounter.resx │ ├── codesForm.Designer.cs │ ├── codesForm.resx │ ├── counterForm.Designer.cs │ ├── counterForm.cs │ ├── counterForm.it-IT.resx │ └── counterForm.resx ├── Data │ ├── Columns.cs │ ├── DBManager.cs │ ├── DataReaderUpdater.cs │ ├── FormatData.cs │ ├── ImportExportData.cs │ ├── ImportExportForm.Designer.cs │ ├── ImportExportForm.cs │ ├── ImportExportForm.resx │ ├── OldQueryBuilder.cs │ ├── QueryBuilder.cs │ ├── RegisterModule.cs │ ├── SqlApplicationBuilder.cs │ ├── SqlManager.cs │ ├── SqlParametersCollection.cs │ ├── SqlProxy.cs │ └── Table.cs ├── DataGridViewControls │ ├── CalendarTextBoxDataGridViewControl.cs │ ├── ComboboxDataGridViewControl.cs │ ├── CustomComboBox.cs │ ├── DateTimeTextBoxDataGridViewControl.cs │ ├── ListComboBoxDataGridViewControl.cs │ ├── MetroComboBoxDataGridViewControl.cs │ ├── MetroComboBoxDataGridViewControl.resx │ ├── NumericTextBoxDataGridViewControl.cs │ ├── NumericTextBoxDataGridViewControl.resx │ ├── RadarCodesDataGridViewControl.cs │ ├── RadarCodesDataGridViewControl.resx │ ├── RadarCounterDataGridViewControl.cs │ ├── RadarCounterDataGridViewControl.resx │ ├── RadarTextBoxDataGridViewControl.cs │ ├── RadarTextBoxDataGridViewControl.resx │ ├── TextBoxDataGridViewControl.cs │ └── TrimMaskedTextBoxDataGridViewControl.cs ├── Defaults.cs ├── ERPFramework.csproj ├── Emailer │ ├── EmailSender.cs │ ├── emailAddress.Designer.cs │ ├── emailAddress.cs │ ├── emailAddress.resx │ ├── emailForm.Designer.cs │ ├── emailForm.cs │ ├── emailForm.it-IT.resx │ └── emailForm.resx ├── Enums.cs ├── Extender.cs ├── Forms │ ├── AskForm.Designer.cs │ ├── AskForm.cs │ ├── AskForm.it-IT.resx │ ├── AskForm.resx │ ├── BatchForm.Designer.cs │ ├── BatchForm.cs │ ├── BatchForm.it-IT.resx │ ├── BatchForm.resx │ ├── ControlBinder.cs │ ├── ControlFinder.cs │ ├── DocumentBase.Designer.cs │ ├── DocumentBase.cs │ ├── DocumentBase.resx │ ├── DocumentForm.Designer.cs │ ├── DocumentForm.cs │ ├── DocumentForm.it-IT.resx │ ├── DocumentForm.resx │ ├── FastInsertForm.Designer.cs │ ├── FastInsertForm.cs │ ├── FastInsertForm.it-IT.resx │ ├── FastInsertForm.resx │ ├── IDocumentDataManager.cs │ ├── ReportForm.Designer.cs │ ├── ReportForm.cs │ ├── ReportForm.it-IT.resx │ ├── ReportForm.resx │ ├── iAddons.cs │ ├── iDocument.cs │ ├── printerForm.Designer.cs │ ├── printerForm.cs │ ├── printerForm.it-IT.resx │ └── printerForm.resx ├── GlobalInfo.cs ├── GlobalSuppressions.cs ├── Hunspellx64.dll ├── Hunspellx86.dll ├── Interfaces.cs ├── Libraries │ ├── ComboBoxManager.cs │ ├── MetroComboBoxManager.cs │ ├── RegistryManager.cs │ ├── ThreadHelper.cs │ └── UserControlHelper.cs ├── Login │ ├── ChgPwdForm.Designer.cs │ ├── ChgPwdForm.cs │ ├── ChgPwdForm.cs.add │ ├── ChgPwdForm.it-IT.resx │ ├── ChgPwdForm.resx │ ├── ChgPwdForm.resx.add │ ├── ConnectionForm.Designer.cs │ ├── ConnectionForm.cs │ ├── ConnectionForm.it-IT.resx │ ├── ConnectionForm.resx │ ├── CryptionManager.cs │ ├── PasswordManager.cs │ ├── loginForm.Designer.cs │ ├── loginForm.cs │ ├── loginForm.it-IT.resx │ └── loginForm.resx ├── ModuleData │ ├── DBRadar.cs │ ├── DBReader.cs │ ├── DBTables.cs │ └── RegisterModule.cs ├── ModulesHelper │ ├── ActivationManager.cs │ ├── DllManager.cs │ ├── ModuleManager.cs │ ├── OpenDocument.cs │ ├── USBSerialNumber.cs │ └── UserControlHelper.cs ├── Preferences │ ├── GenericPreferencePanel.Designer.cs │ ├── GenericPreferencePanel.cs │ ├── GenericPreferencePanel.it-IT.resx │ ├── GenericPreferencePanel.resx │ ├── GlobalPreferencePanel.Designer.cs │ ├── GlobalPreferencePanel.cs │ ├── GlobalPreferencePanel.it-IT.resx │ ├── GlobalPreferencePanel.resx │ ├── MailPreferencePanel.Designer.cs │ ├── MailPreferencePanel.cs │ ├── MailPreferencePanel.it-IT.resx │ ├── MailPreferencePanel.resx │ ├── NHunspellPreferencePanel.Designer.cs │ ├── NHunspellPreferencePanel.cs │ ├── NHunspellPreferencePanel.it-IT.resx │ ├── NHunspellPreferencePanel.resx │ ├── PreferenceControl.cs │ ├── PreferenceControl.resx │ ├── PreferenceForm.Designer.cs │ ├── PreferenceForm.cs │ ├── PreferenceForm.it-IT.resx │ ├── PreferenceForm.resx │ ├── PreferencePanel.Designer.cs │ ├── PreferencePanel.cs │ ├── PreferencePanel.it-IT.resx │ ├── PreferencePanel.resx │ ├── Preferences.cs │ ├── PrinterPreferencePanel.Designer.cs │ ├── PrinterPreferencePanel.cs │ ├── PrinterPreferencePanel.it-IT.resx │ └── PrinterPreferencePanel.resx ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.it-IT.resx │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── licenses.licx ├── Report1.rdlc ├── Resources │ ├── AlignTableCellMiddleCenterHS.bmp │ ├── AlignTableCellMiddleLeftJustHS.bmp │ ├── AlignTableCellMiddleRightHS.bmp │ ├── Application.png │ ├── ApplicationSelect.png │ ├── Attachment.png │ ├── Automatic16.png │ ├── Automatic16g.png │ ├── BackGroundLogin.png │ ├── Blu.PNG │ ├── Calendar.png │ ├── Calendar16.png │ ├── Calendar16g.png │ ├── Calendar24.png │ ├── Calendar24g.png │ ├── Cancel.png │ ├── Checked32.png │ ├── Checked32g.png │ ├── CircledLeft32.png │ ├── CircledLeft32g.png │ ├── Collate.png │ ├── Collate32.png │ ├── Collate32g.png │ ├── CollateK32.png │ ├── CollateK32g.png │ ├── Computer.png │ ├── Computer32.png │ ├── Computer32g.png │ ├── ComputerSelect.png │ ├── Connect.png │ ├── Copy32.png │ ├── Copy32g.png │ ├── Delete.png │ ├── Delete24.png │ ├── Delete24g.png │ ├── Delete32.png │ ├── Delete32g.png │ ├── Download32.png │ ├── Download32g.png │ ├── Edit.png │ ├── Edit24.png │ ├── Edit24g.png │ ├── Edit32.png │ ├── Edit32g.png │ ├── Envelope.png │ ├── Exit24.png │ ├── Exit24g.png │ ├── Exit32.png │ ├── Exit32g.png │ ├── Filter24.png │ ├── Filter24g.png │ ├── Filter32.png │ ├── Filter32g.png │ ├── Find.png │ ├── FindHS.bmp │ ├── FindNextHS.bmp │ ├── Form32.png │ ├── Form32ck.png │ ├── Form32ckg.png │ ├── Form32g.png │ ├── Gear.png │ ├── Grid.png │ ├── IndentHS.bmp │ ├── InsertPictureHS.bmp │ ├── Laptop32.png │ ├── Laptop32ck.png │ ├── Laptop32ckg.png │ ├── Laptop32g.png │ ├── Lente.png │ ├── Lightning.png │ ├── Link24.png │ ├── Link24g.png │ ├── List32.png │ ├── List32g.png │ ├── List_BulletsHS.bmp │ ├── Logo.png │ ├── LogoBackground.png │ ├── Mail.png │ ├── Manual16.png │ ├── Manual16g.png │ ├── Message16.png │ ├── Message32.png │ ├── Message32g.png │ ├── More32.png │ ├── More32g.png │ ├── New.png │ ├── New24.png │ ├── New24g.png │ ├── New32.png │ ├── New32g.png │ ├── Orange.PNG │ ├── OrangeDark.PNG │ ├── OrangeLight.PNG │ ├── OutdentHS.bmp │ ├── Pen.png │ ├── Pin.bmp │ ├── Pin.png │ ├── Pin2.bmp │ ├── Play32.png │ ├── Play32g.png │ ├── Preview.png │ ├── Preview24.png │ ├── Preview24g.png │ ├── Preview32.png │ ├── Preview32g.png │ ├── Print24.png │ ├── Print24g.png │ ├── Print32.png │ ├── Print32g.png │ ├── Printer.png │ ├── Save.png │ ├── Save24.png │ ├── Save24g.png │ ├── Save32.png │ ├── Save32g.png │ ├── Search.png │ ├── Search16.png │ ├── Search16g.png │ ├── Search24.png │ ├── Search24g.png │ ├── Search32.png │ ├── Search32g.png │ ├── SendEmail.png │ ├── Setting32.png │ ├── Setting32g.png │ ├── Settings24.png │ ├── Settings24g.png │ ├── Sfondo.png │ ├── Shutdown32.png │ ├── Shutdown32g.png │ ├── SortDown32.png │ ├── SortDown32g.png │ ├── SortLeft32.png │ ├── SortLeft32g.png │ ├── SortRight32.png │ ├── SortRight32g.png │ ├── SortUp32.png │ ├── SortUp32g.png │ ├── Stop32.png │ ├── Stop32g.png │ ├── Themes.xml │ ├── TriangleDown16.png │ ├── TriangleDown16g.png │ ├── TriangleLeft16.png │ ├── TriangleLeft16g.png │ ├── TriangleRight16.png │ ├── TriangleRight16g.png │ ├── TriangleUp16.png │ ├── TriangleUp16g.png │ ├── Undo.png │ ├── Undo24.png │ ├── Undo24g.png │ ├── Undo32.png │ ├── Undo32g.png │ ├── User.png │ ├── User32.png │ ├── User32ck.png │ ├── User32ckg.png │ ├── User32g.png │ ├── UserChecked32.png │ ├── UserChecked32g.png │ ├── UserSelect.png │ ├── ZoomIn.bmp │ ├── ZoomIn32.png │ ├── ZoomIn32g.png │ ├── ZoomOut.bmp │ ├── ZoomOut32.png │ ├── ZoomOut32g.png │ ├── counter.png │ ├── email.png │ ├── exit.png │ ├── filter.png │ ├── invoice.png │ ├── plus.png │ ├── preferences.png │ ├── run.png │ ├── stop.png │ └── thesaurus.png ├── RicherTextBox │ ├── FindForm.Designer.cs │ ├── FindForm.cs │ ├── FindForm.resx │ ├── ReplaceForm.Designer.cs │ ├── ReplaceForm.cs │ ├── ReplaceForm.resx │ ├── RicherTextBox.Designer.cs │ ├── RicherTextBox.cs │ ├── RicherTextBox.it-IT.resx │ └── RicherTextBox.resx ├── app.config └── packages.config ├── ERPManager ├── App.ico ├── ApplicationModules.config ├── Defaults.cs ├── ERPManager.csproj ├── Forms │ ├── InfoForm.Designer.cs │ ├── InfoForm.cs │ ├── InfoForm.it-IT.resx │ ├── InfoForm.resx │ ├── NotifyForm.Designer.cs │ ├── NotifyForm.cs │ ├── NotifyForm.resx │ ├── dateForm.Designer.cs │ ├── dateForm.cs │ ├── dateForm.it-IT.resx │ ├── dateForm.resx │ ├── mainForm.Designer.cs │ ├── mainForm.cs │ ├── mainForm.it-IT.resx │ ├── mainForm.resx │ ├── registerForm.Designer.cs │ ├── registerForm.cs │ ├── registerForm.it-IT.resx │ ├── registerForm.resx │ ├── settingForm.Designer.cs │ ├── settingForm.cs │ ├── settingForm.it-IT.resx │ ├── settingForm.resx │ ├── usersForm.Designer.cs │ ├── usersForm.cs │ ├── usersForm.it-IT.resx │ └── usersForm.resx ├── Library │ ├── CheckNewVersion.cs │ ├── DllManager.cs │ ├── Enums.cs │ ├── FtpUploader.cs │ ├── ModuleManager.cs │ ├── SerialManager.cs │ └── USBSerialNumber.cs ├── MenuManager │ ├── ApplicationTabControl.cs │ ├── FavoriteButton.cs │ ├── FavoritesMenu.cs │ ├── MenuButton.cs │ ├── MenuControl.Designer.cs │ ├── MenuControl.cs │ ├── MenuControl.resx │ ├── ModuleButton.cs │ ├── ModuleTile.cs │ ├── PanelFolder.cs │ ├── PanelModules.cs │ └── PanelPreferences.cs ├── ModuleData │ ├── DBRadar.cs │ └── RegisterModule.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.it-IT.resx │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── About24.png │ ├── AddUser24.png │ ├── Batch16.png │ ├── Batch16g.png │ ├── Batch24.png │ ├── Batch24g.png │ ├── Blu.PNG │ ├── Calendar.png │ ├── Calendar32.png │ ├── Calendar32G.png │ ├── Checkout24.png │ ├── ChristmasStar16g.png │ ├── CircledLeft32.png │ ├── CircledLeft32g.png │ ├── Code.png │ ├── Code24.png │ ├── Counter24.png │ ├── Delete16.png │ ├── Delete16g.png │ ├── Export24.png │ ├── Export24g.png │ ├── Form.png │ ├── Form16.png │ ├── Form16g.png │ ├── Form24.png │ ├── Form24g.png │ ├── Gear.png │ ├── Info.png │ ├── Info24.png │ ├── Info32.png │ ├── Key24.png │ ├── LastUser24.png │ ├── New-24.png │ ├── New24.png │ ├── NuovoLogo.psd │ ├── Orange.PNG │ ├── OrangeDark.PNG │ ├── OrangeLight.PNG │ ├── Outline24.png │ ├── Outline24g.png │ ├── Print16.png │ ├── Print16g.png │ ├── Print24.png │ ├── Print24g.png │ ├── Process24.png │ ├── Process24g.png │ ├── Setting32.png │ ├── Setting32g.png │ ├── Sfondo.png │ ├── Shutdown32.png │ ├── Shutdown32g.png │ ├── Splash.png │ ├── Splash.psd │ ├── StarFilled16g.png │ ├── TriangleDown16.png │ ├── TriangleDown32.png │ ├── Unlock.png │ ├── Unlock24.png │ ├── User.png │ ├── User32.png │ ├── User32G.png │ ├── Users.png │ ├── counter.png │ ├── logo.png │ ├── newversion.png │ ├── preferences.png │ └── remove_user.png ├── app.config ├── applicationConfig.xml ├── mainApplication.cs └── packages.config ├── ERPStudio.sln ├── LICENSE ├── MetroFramework.Extender ├── Dictionary.cs ├── Interfaces.cs ├── MetroAddOnPanel.cs ├── MetroAutosizePanel.cs ├── MetroBreadCrumbs.cs ├── MetroCollapsiblePanel.cs ├── MetroExToolbar.cs ├── MetroFlowLayoutPanel.cs ├── MetroFramework.Extender.csproj ├── MetroFrameworkExtenderDefaults.cs ├── MetroIntelliTextBox.cs ├── MetroLinkChecked.cs ├── MetroListBox.cs ├── MetroMaskedTextbox.cs ├── MetroNumericTextBox.cs ├── MetroNumericUpDown.cs ├── MetroNumericUpDown.resx ├── MetroPopUpCalendar.Designer.cs ├── MetroPopUpCalendar.cs ├── MetroPopUpCalendar.resx ├── MetroPropertyGrid.cs ├── MetroProvaTile.cs ├── MetroRichTextBox.cs ├── MetroTableLayoutPanel.cs ├── MetroTextBoxButtonState.cs ├── MetroTextBoxButtonState.resx ├── MetroTextFolderBrowse.cs ├── MetroToolbar.Designer.cs ├── MetroToolbar.cs ├── MetroToolbar.resx ├── MetroToolbarButton.cs ├── MetroToolbarButtons │ ├── MetroToolbarButton.cs │ ├── MetroToolbarCombobox.cs │ ├── MetroToolbarContainer.cs │ ├── MetroToolbarDropDownButton.cs │ ├── MetroToolbarLabel.cs │ ├── MetroToolbarLinkChecked.cs │ ├── MetroToolbarNumericUpDown.cs │ ├── MetroToolbarPushButton.cs │ └── MetroToolbarSeparator.cs ├── MetroTreeView.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.it-IT.resx │ └── Resources.resx ├── Resources │ ├── AlphabeticalSorting24.png │ ├── AlphabeticalSorting24ck.png │ ├── AlphabeticalSorting24ckg.png │ ├── AlphabeticalSorting24g.png │ ├── Calendar16.png │ ├── Circle10.png │ ├── Delete32.png │ ├── Delete32g.png │ ├── Down8.png │ ├── Down8g.png │ ├── Edit32.png │ ├── Edit32g.png │ ├── Exit32.png │ ├── Exit32g.png │ ├── Filter32.png │ ├── Filter32g.png │ ├── GroupofQuestions24.png │ ├── GroupofQuestions24ck.png │ ├── GroupofQuestions24ckg.png │ ├── GroupofQuestions24g.png │ ├── Minus8.png │ ├── Minus8g.png │ ├── More32.png │ ├── More32g.png │ ├── New32.png │ ├── New32g.png │ ├── Pin24.png │ ├── Pin24g.png │ ├── Pin32.png │ ├── Pin32g.png │ ├── Play32.png │ ├── Play32g.png │ ├── Plus8.png │ ├── Plus8g.png │ ├── Preview32.png │ ├── Preview32g.png │ ├── Print32.png │ ├── Print32g.png │ ├── Save32.png │ ├── Save32g.png │ ├── Search16.png │ ├── Search16g.png │ ├── Search32.png │ ├── Search32g.png │ ├── Setting32.png │ ├── Setting32g.png │ ├── SortDown10.png │ ├── SortRight10.png │ ├── Stop32.png │ ├── Stop32g.png │ ├── TriangleDown16.png │ ├── TriangleDown16g.png │ ├── TriangleFillDown16.png │ ├── TriangleFillDown16g.png │ ├── TriangleFillDown8.png │ ├── TriangleFillDown8g.png │ ├── TriangleLeft16.png │ ├── TriangleLeft16g.png │ ├── TriangleRight16.png │ ├── TriangleRight16g.png │ ├── TriangleUp16.png │ ├── TriangleUp16g.png │ ├── Undo32.png │ ├── Undo32g.png │ ├── Unpin24.png │ ├── Unpin24g.png │ ├── Unpin32.png │ ├── Unpin32g.png │ ├── Up8.png │ ├── Up8g.png │ └── VerticalLine32.png └── packages.config ├── NHunspellComponent.dll ├── README.md ├── Serializer ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Checked32.png │ ├── Checked32g.png │ ├── CircledLeft32.png │ ├── CircledLeft32g.png │ ├── CreateArchive32.png │ ├── CreateArchive32g.png │ ├── Emerald.png │ ├── Open32.png │ └── Open32g.png ├── SerialManager.cs ├── Serializer.cs ├── Serializer.csproj ├── Serializer.sln ├── USBSerialNumber.cs ├── app.config ├── licenseForm.Designer.cs ├── licenseForm.cs ├── licenseForm.resx ├── packages.config ├── registerForm.Designer.cs ├── registerForm.cs ├── registerForm.resx ├── serialForm.Designer.cs ├── serialForm.cs └── serialForm.resx └── SqlProviders ├── ProvaProviders ├── App.config ├── FrameworkClass.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ProvaProviders.csproj ├── SqlProxy.cs └── packages.config ├── SqLiteProvider ├── SqLiteProvider.csproj ├── SqlProviderCommand.cs ├── SqlProviderConnection.cs ├── SqlProviderConnectionStringBuilder.cs ├── SqlProviderDataAdapter.cs ├── SqlProviderDataBaseHelper.cs ├── SqlProviderDataReader.cs ├── SqlProviderParameter.cs ├── SqlProviderParameterCollection.cs ├── SqlProviderTransaction.cs └── packages.config ├── SqlProvider ├── Properties │ └── AssemblyInfo.cs ├── SqlProviderCommand.cs ├── SqlProviderCommandBuilder.cs ├── SqlProviderConnection.cs ├── SqlProviderConnectionStringBuilder.cs ├── SqlProviderDataAdapter.cs ├── SqlProviderDataBaseHelper.cs ├── SqlProviderDataReader.cs ├── SqlProviderParameter.cs ├── SqlProviderParameterCollection.cs ├── SqlProviderTransaction.cs └── SqlServerProvider.csproj ├── SqlProviders.sln ├── SqlProxyProvider ├── ISqlProviderCommand.cs ├── ISqlProviderCommandBuilder.cs ├── ISqlProviderConnection.cs ├── ISqlProviderConnectionStringBuilder.cs ├── ISqlProviderDataAdapter.cs ├── ISqlProviderDataReader.cs ├── ISqlProviderDatabaseHelper.cs ├── ISqlProviderParameter.cs ├── ISqlProviderParameterCollection.cs ├── ISqlProviderRowUpdatingEventArgs.cs ├── ISqlProviderTransaction.cs ├── Properties │ └── AssemblyInfo.cs └── SqlProxyProvider.csproj └── SqlceProviders ├── Properties └── AssemblyInfo.cs ├── SqlProviderConnection.cs ├── SqlceProviders.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /Dictionaries/en_US.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Dictionaries/en_US.aff -------------------------------------------------------------------------------- /Dictionaries/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Dictionaries/en_US.dic -------------------------------------------------------------------------------- /Dictionaries/it_IT.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Dictionaries/it_IT.aff -------------------------------------------------------------------------------- /Dictionaries/it_IT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Dictionaries/it_IT.dic -------------------------------------------------------------------------------- /ERPFramework/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/AssemblyInfo.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/BreadCrumbs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/BreadCrumbs.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/BreadCrumbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/BreadCrumbs.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/BreadCrumbs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/BreadCrumbs.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/DBCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/DBCheckBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/DBCheckBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/DBCheckBox.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/DateTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/DateTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/EnumsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/EnumsManager.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ExCheckedListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ExCheckedListBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ExMetroToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ExMetroToolbar.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ExTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ExTabPage.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ExtendedDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ExtendedDataGridView.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/FindableIntelliTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/FindableIntelliTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/FindableTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/FindableTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/HorizontalSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/HorizontalSeparator.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ImageButton.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ImageButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ImageButton.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/ImageCombo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ImageCombo.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ImageCombo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ImageCombo.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/ImageComboItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ImageComboItem.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ListComboBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ListComboBox.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ListComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ListComboBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ListComboBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ListComboBox.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroFiscalTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroFiscalTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridContainerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridContainerPanel.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridFooterPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridFooterPanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridFooterPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridFooterPanel.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridFooterPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridFooterPanel.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridHeaderPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridHeaderPanel.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridTotalControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridTotalControl.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridTotalFooterPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridTotalFooterPanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridTotalFooterPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridTotalFooterPanel.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroGridTotalFooterPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroGridTotalFooterPanel.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroInputDateRange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroInputDateRange.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroInputDateRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroInputDateRange.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroInputDateRange.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroInputDateRange.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroInputDateRange.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroInputDateRange.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/MetroMailTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/MetroMailTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/Multiselect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/Multiselect.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/Multiselect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/Multiselect.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/Multiselect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/Multiselect.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/PanelUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PanelUserControl.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/PanelUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PanelUserControl.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpCalendar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpCalendar.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpCalendar.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpCalendar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpCalendar.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpComboBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpComboBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpComboBox.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpListBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpListBox.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpListBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/PopUpListBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/PopUpListBox.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/ProgressStatusBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ProgressStatusBar.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ProgressStatusBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ProgressStatusBar.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/RadarComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/RadarComboBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/RadarForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/RadarForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/RadarForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/RadarForm.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/RadarForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/RadarForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/RadarForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/RadarForm.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/RadarTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/RadarTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/SnapLinesDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/SnapLinesDesigner.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/StringTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/StringTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/StringTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/StringTextBox.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/TextFolderBrowse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/TextFolderBrowse.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/ToolstripNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/ToolstripNumericUpDown.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/UserTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/UserTabControl.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/Wizard.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/Wizard.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/Wizard.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/Wizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/Wizard.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/WizardPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/WizardPage.cs -------------------------------------------------------------------------------- /ERPFramework/Controls/WizardPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/WizardPage.resx -------------------------------------------------------------------------------- /ERPFramework/Controls/WizardPagesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Controls/WizardPagesCollection.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CodesControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CodesControl.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CodesControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CodesControl.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CodesControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CodesControl.resx -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CodesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CodesForm.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CodesForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CodesForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CodesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CodesManager.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CounterControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CounterControl.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CounterControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CounterControl.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CounterControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CounterControl.resx -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CounterFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CounterFormatter.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CounterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CounterManager.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/CounterText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/CounterText.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/ICounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/ICounter.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/MetroCounterTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/MetroCounterTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/RadarCodes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/RadarCodes.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/RadarCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/RadarCodes.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/RadarCodes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/RadarCodes.resx -------------------------------------------------------------------------------- /ERPFramework/CounterManager/RadarCounter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/RadarCounter.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/RadarCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/RadarCounter.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/RadarCounter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/RadarCounter.resx -------------------------------------------------------------------------------- /ERPFramework/CounterManager/codesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/codesForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/codesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/codesForm.resx -------------------------------------------------------------------------------- /ERPFramework/CounterManager/counterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/counterForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/counterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/counterForm.cs -------------------------------------------------------------------------------- /ERPFramework/CounterManager/counterForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/counterForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/CounterManager/counterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/CounterManager/counterForm.resx -------------------------------------------------------------------------------- /ERPFramework/Data/Columns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/Columns.cs -------------------------------------------------------------------------------- /ERPFramework/Data/DBManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/DBManager.cs -------------------------------------------------------------------------------- /ERPFramework/Data/DataReaderUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/DataReaderUpdater.cs -------------------------------------------------------------------------------- /ERPFramework/Data/FormatData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/FormatData.cs -------------------------------------------------------------------------------- /ERPFramework/Data/ImportExportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/ImportExportData.cs -------------------------------------------------------------------------------- /ERPFramework/Data/ImportExportForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/ImportExportForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Data/ImportExportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/ImportExportForm.cs -------------------------------------------------------------------------------- /ERPFramework/Data/ImportExportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/ImportExportForm.resx -------------------------------------------------------------------------------- /ERPFramework/Data/OldQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/OldQueryBuilder.cs -------------------------------------------------------------------------------- /ERPFramework/Data/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/QueryBuilder.cs -------------------------------------------------------------------------------- /ERPFramework/Data/RegisterModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/RegisterModule.cs -------------------------------------------------------------------------------- /ERPFramework/Data/SqlApplicationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/SqlApplicationBuilder.cs -------------------------------------------------------------------------------- /ERPFramework/Data/SqlManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/SqlManager.cs -------------------------------------------------------------------------------- /ERPFramework/Data/SqlParametersCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/SqlParametersCollection.cs -------------------------------------------------------------------------------- /ERPFramework/Data/SqlProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/SqlProxy.cs -------------------------------------------------------------------------------- /ERPFramework/Data/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Data/Table.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/CalendarTextBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/CalendarTextBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/ComboboxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/ComboboxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/CustomComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/CustomComboBox.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/DateTimeTextBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/DateTimeTextBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/ListComboBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/ListComboBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/MetroComboBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/MetroComboBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/MetroComboBoxDataGridViewControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/MetroComboBoxDataGridViewControl.resx -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/NumericTextBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/NumericTextBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/NumericTextBoxDataGridViewControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/NumericTextBoxDataGridViewControl.resx -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/RadarCodesDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/RadarCodesDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/RadarCodesDataGridViewControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/RadarCodesDataGridViewControl.resx -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/RadarCounterDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/RadarCounterDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/RadarCounterDataGridViewControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/RadarCounterDataGridViewControl.resx -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/RadarTextBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/RadarTextBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/RadarTextBoxDataGridViewControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/RadarTextBoxDataGridViewControl.resx -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/TextBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/TextBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/DataGridViewControls/TrimMaskedTextBoxDataGridViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/DataGridViewControls/TrimMaskedTextBoxDataGridViewControl.cs -------------------------------------------------------------------------------- /ERPFramework/Defaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Defaults.cs -------------------------------------------------------------------------------- /ERPFramework/ERPFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ERPFramework.csproj -------------------------------------------------------------------------------- /ERPFramework/Emailer/EmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/EmailSender.cs -------------------------------------------------------------------------------- /ERPFramework/Emailer/emailAddress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/emailAddress.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Emailer/emailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/emailAddress.cs -------------------------------------------------------------------------------- /ERPFramework/Emailer/emailAddress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/emailAddress.resx -------------------------------------------------------------------------------- /ERPFramework/Emailer/emailForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/emailForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Emailer/emailForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/emailForm.cs -------------------------------------------------------------------------------- /ERPFramework/Emailer/emailForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/emailForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Emailer/emailForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Emailer/emailForm.resx -------------------------------------------------------------------------------- /ERPFramework/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Enums.cs -------------------------------------------------------------------------------- /ERPFramework/Extender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Extender.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/AskForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/AskForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/AskForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/AskForm.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/AskForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/AskForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/AskForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/AskForm.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/BatchForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/BatchForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/BatchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/BatchForm.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/BatchForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/BatchForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/BatchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/BatchForm.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/ControlBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/ControlBinder.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/ControlFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/ControlFinder.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/DocumentBase.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/DocumentBase.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/DocumentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/DocumentBase.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/DocumentBase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/DocumentBase.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/DocumentForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/DocumentForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/DocumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/DocumentForm.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/DocumentForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/DocumentForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/DocumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/DocumentForm.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/FastInsertForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/FastInsertForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/FastInsertForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/FastInsertForm.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/FastInsertForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/FastInsertForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/FastInsertForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/FastInsertForm.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/IDocumentDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/IDocumentDataManager.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/ReportForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/ReportForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/ReportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/ReportForm.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/ReportForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/ReportForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/ReportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/ReportForm.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/iAddons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/iAddons.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/iDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/iDocument.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/printerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/printerForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/printerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/printerForm.cs -------------------------------------------------------------------------------- /ERPFramework/Forms/printerForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/printerForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Forms/printerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Forms/printerForm.resx -------------------------------------------------------------------------------- /ERPFramework/GlobalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/GlobalInfo.cs -------------------------------------------------------------------------------- /ERPFramework/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/GlobalSuppressions.cs -------------------------------------------------------------------------------- /ERPFramework/Hunspellx64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Hunspellx64.dll -------------------------------------------------------------------------------- /ERPFramework/Hunspellx86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Hunspellx86.dll -------------------------------------------------------------------------------- /ERPFramework/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Interfaces.cs -------------------------------------------------------------------------------- /ERPFramework/Libraries/ComboBoxManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Libraries/ComboBoxManager.cs -------------------------------------------------------------------------------- /ERPFramework/Libraries/MetroComboBoxManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Libraries/MetroComboBoxManager.cs -------------------------------------------------------------------------------- /ERPFramework/Libraries/RegistryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Libraries/RegistryManager.cs -------------------------------------------------------------------------------- /ERPFramework/Libraries/ThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Libraries/ThreadHelper.cs -------------------------------------------------------------------------------- /ERPFramework/Libraries/UserControlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Libraries/UserControlHelper.cs -------------------------------------------------------------------------------- /ERPFramework/Login/ChgPwdForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ChgPwdForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Login/ChgPwdForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ChgPwdForm.cs -------------------------------------------------------------------------------- /ERPFramework/Login/ChgPwdForm.cs.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ChgPwdForm.cs.add -------------------------------------------------------------------------------- /ERPFramework/Login/ChgPwdForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ChgPwdForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Login/ChgPwdForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ChgPwdForm.resx -------------------------------------------------------------------------------- /ERPFramework/Login/ChgPwdForm.resx.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ChgPwdForm.resx.add -------------------------------------------------------------------------------- /ERPFramework/Login/ConnectionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ConnectionForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Login/ConnectionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ConnectionForm.cs -------------------------------------------------------------------------------- /ERPFramework/Login/ConnectionForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ConnectionForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Login/ConnectionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/ConnectionForm.resx -------------------------------------------------------------------------------- /ERPFramework/Login/CryptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/CryptionManager.cs -------------------------------------------------------------------------------- /ERPFramework/Login/PasswordManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/PasswordManager.cs -------------------------------------------------------------------------------- /ERPFramework/Login/loginForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/loginForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Login/loginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/loginForm.cs -------------------------------------------------------------------------------- /ERPFramework/Login/loginForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/loginForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Login/loginForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Login/loginForm.resx -------------------------------------------------------------------------------- /ERPFramework/ModuleData/DBRadar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModuleData/DBRadar.cs -------------------------------------------------------------------------------- /ERPFramework/ModuleData/DBReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModuleData/DBReader.cs -------------------------------------------------------------------------------- /ERPFramework/ModuleData/DBTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModuleData/DBTables.cs -------------------------------------------------------------------------------- /ERPFramework/ModuleData/RegisterModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModuleData/RegisterModule.cs -------------------------------------------------------------------------------- /ERPFramework/ModulesHelper/ActivationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModulesHelper/ActivationManager.cs -------------------------------------------------------------------------------- /ERPFramework/ModulesHelper/DllManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModulesHelper/DllManager.cs -------------------------------------------------------------------------------- /ERPFramework/ModulesHelper/ModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModulesHelper/ModuleManager.cs -------------------------------------------------------------------------------- /ERPFramework/ModulesHelper/OpenDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModulesHelper/OpenDocument.cs -------------------------------------------------------------------------------- /ERPFramework/ModulesHelper/USBSerialNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModulesHelper/USBSerialNumber.cs -------------------------------------------------------------------------------- /ERPFramework/ModulesHelper/UserControlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/ModulesHelper/UserControlHelper.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/GenericPreferencePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GenericPreferencePanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/GenericPreferencePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GenericPreferencePanel.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/GenericPreferencePanel.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GenericPreferencePanel.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/GenericPreferencePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GenericPreferencePanel.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/GlobalPreferencePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GlobalPreferencePanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/GlobalPreferencePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GlobalPreferencePanel.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/GlobalPreferencePanel.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GlobalPreferencePanel.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/GlobalPreferencePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/GlobalPreferencePanel.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/MailPreferencePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/MailPreferencePanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/MailPreferencePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/MailPreferencePanel.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/MailPreferencePanel.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/MailPreferencePanel.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/MailPreferencePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/MailPreferencePanel.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/NHunspellPreferencePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/NHunspellPreferencePanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/NHunspellPreferencePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/NHunspellPreferencePanel.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/NHunspellPreferencePanel.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/NHunspellPreferencePanel.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/NHunspellPreferencePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/NHunspellPreferencePanel.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferenceControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferenceControl.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferenceControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferenceControl.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferenceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferenceForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferenceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferenceForm.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferenceForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferenceForm.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferenceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferenceForm.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferencePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferencePanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferencePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferencePanel.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferencePanel.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferencePanel.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/PreferencePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PreferencePanel.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/Preferences.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PrinterPreferencePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PrinterPreferencePanel.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PrinterPreferencePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PrinterPreferencePanel.cs -------------------------------------------------------------------------------- /ERPFramework/Preferences/PrinterPreferencePanel.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PrinterPreferencePanel.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Preferences/PrinterPreferencePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Preferences/PrinterPreferencePanel.resx -------------------------------------------------------------------------------- /ERPFramework/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Properties/Resources.resx -------------------------------------------------------------------------------- /ERPFramework/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Properties/Settings.settings -------------------------------------------------------------------------------- /ERPFramework/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Properties/licenses.licx -------------------------------------------------------------------------------- /ERPFramework/Report1.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Report1.rdlc -------------------------------------------------------------------------------- /ERPFramework/Resources/AlignTableCellMiddleCenterHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/AlignTableCellMiddleCenterHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/AlignTableCellMiddleLeftJustHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/AlignTableCellMiddleLeftJustHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/AlignTableCellMiddleRightHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/AlignTableCellMiddleRightHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/Application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Application.png -------------------------------------------------------------------------------- /ERPFramework/Resources/ApplicationSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ApplicationSelect.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Attachment.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Automatic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Automatic16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Automatic16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Automatic16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/BackGroundLogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/BackGroundLogin.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Blu.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Blu.PNG -------------------------------------------------------------------------------- /ERPFramework/Resources/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Calendar.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Calendar16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Calendar16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Calendar16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Calendar16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Calendar24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Calendar24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Calendar24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Calendar24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Cancel.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Checked32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Checked32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Checked32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Checked32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/CircledLeft32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/CircledLeft32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/CircledLeft32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/CircledLeft32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Collate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Collate.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Collate32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Collate32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Collate32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Collate32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/CollateK32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/CollateK32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/CollateK32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/CollateK32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Computer.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Computer32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Computer32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Computer32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Computer32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/ComputerSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ComputerSelect.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Connect.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Copy32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Copy32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Copy32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Copy32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Delete.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Delete24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Delete24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Delete24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Delete24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Delete32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Delete32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Delete32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Delete32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Download32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Download32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Download32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Download32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Edit.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Edit24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Edit24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Edit24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Edit24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Edit32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Edit32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Edit32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Edit32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Envelope.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Exit24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Exit24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Exit24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Exit24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Exit32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Exit32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Exit32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Exit32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Filter24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Filter24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Filter24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Filter24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Filter32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Filter32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Filter32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Filter32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Find.png -------------------------------------------------------------------------------- /ERPFramework/Resources/FindHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/FindHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/FindNextHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/FindNextHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/Form32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Form32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Form32ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Form32ck.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Form32ckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Form32ckg.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Form32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Form32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Gear.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Grid.png -------------------------------------------------------------------------------- /ERPFramework/Resources/IndentHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/IndentHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/InsertPictureHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/InsertPictureHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/Laptop32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Laptop32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Laptop32ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Laptop32ck.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Laptop32ckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Laptop32ckg.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Laptop32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Laptop32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Lente.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Lente.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Lightning.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Link24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Link24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Link24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Link24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/List32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/List32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/List32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/List32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/List_BulletsHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/List_BulletsHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Logo.png -------------------------------------------------------------------------------- /ERPFramework/Resources/LogoBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/LogoBackground.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Mail.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Manual16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Manual16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Manual16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Manual16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Message16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Message16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Message32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Message32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Message32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Message32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/More32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/More32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/More32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/More32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/New.png -------------------------------------------------------------------------------- /ERPFramework/Resources/New24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/New24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/New24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/New24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/New32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/New32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/New32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/New32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Orange.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Orange.PNG -------------------------------------------------------------------------------- /ERPFramework/Resources/OrangeDark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/OrangeDark.PNG -------------------------------------------------------------------------------- /ERPFramework/Resources/OrangeLight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/OrangeLight.PNG -------------------------------------------------------------------------------- /ERPFramework/Resources/OutdentHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/OutdentHS.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/Pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Pen.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Pin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Pin.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Pin.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Pin2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Pin2.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/Play32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Play32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Play32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Play32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Preview.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Preview24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Preview24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Preview24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Preview24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Preview32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Preview32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Preview32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Preview32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Print24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Print24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Print24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Print24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Print32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Print32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Print32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Print32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Printer.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Save.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Save24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Save24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Save24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Save24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Save32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Save32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Save32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Save32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Search.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Search16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Search16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Search16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Search16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Search24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Search24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Search24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Search24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Search32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Search32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Search32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Search32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SendEmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SendEmail.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Setting32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Setting32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Setting32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Setting32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Settings24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Settings24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Settings24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Settings24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Sfondo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Sfondo.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Shutdown32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Shutdown32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Shutdown32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Shutdown32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortDown32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortDown32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortDown32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortDown32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortLeft32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortLeft32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortLeft32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortLeft32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortRight32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortRight32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortRight32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortRight32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortUp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortUp32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/SortUp32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/SortUp32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Stop32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Stop32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Stop32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Stop32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Themes.xml -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleDown16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleDown16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleDown16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleDown16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleLeft16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleLeft16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleLeft16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleLeft16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleRight16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleRight16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleRight16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleRight16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleUp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleUp16.png -------------------------------------------------------------------------------- /ERPFramework/Resources/TriangleUp16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/TriangleUp16g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Undo.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Undo24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Undo24.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Undo24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Undo24g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Undo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Undo32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/Undo32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/Undo32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/User.png -------------------------------------------------------------------------------- /ERPFramework/Resources/User32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/User32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/User32ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/User32ck.png -------------------------------------------------------------------------------- /ERPFramework/Resources/User32ckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/User32ckg.png -------------------------------------------------------------------------------- /ERPFramework/Resources/User32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/User32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/UserChecked32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/UserChecked32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/UserChecked32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/UserChecked32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/UserSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/UserSelect.png -------------------------------------------------------------------------------- /ERPFramework/Resources/ZoomIn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ZoomIn.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/ZoomIn32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ZoomIn32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/ZoomIn32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ZoomIn32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/ZoomOut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ZoomOut.bmp -------------------------------------------------------------------------------- /ERPFramework/Resources/ZoomOut32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ZoomOut32.png -------------------------------------------------------------------------------- /ERPFramework/Resources/ZoomOut32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/ZoomOut32g.png -------------------------------------------------------------------------------- /ERPFramework/Resources/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/counter.png -------------------------------------------------------------------------------- /ERPFramework/Resources/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/email.png -------------------------------------------------------------------------------- /ERPFramework/Resources/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/exit.png -------------------------------------------------------------------------------- /ERPFramework/Resources/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/filter.png -------------------------------------------------------------------------------- /ERPFramework/Resources/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/invoice.png -------------------------------------------------------------------------------- /ERPFramework/Resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/plus.png -------------------------------------------------------------------------------- /ERPFramework/Resources/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/preferences.png -------------------------------------------------------------------------------- /ERPFramework/Resources/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/run.png -------------------------------------------------------------------------------- /ERPFramework/Resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/stop.png -------------------------------------------------------------------------------- /ERPFramework/Resources/thesaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/Resources/thesaurus.png -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/FindForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/FindForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/FindForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/FindForm.cs -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/FindForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/FindForm.resx -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/ReplaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/ReplaceForm.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/ReplaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/ReplaceForm.cs -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/ReplaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/ReplaceForm.resx -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/RicherTextBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/RicherTextBox.Designer.cs -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/RicherTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/RicherTextBox.cs -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/RicherTextBox.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/RicherTextBox.it-IT.resx -------------------------------------------------------------------------------- /ERPFramework/RicherTextBox/RicherTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/RicherTextBox/RicherTextBox.resx -------------------------------------------------------------------------------- /ERPFramework/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/app.config -------------------------------------------------------------------------------- /ERPFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPFramework/packages.config -------------------------------------------------------------------------------- /ERPManager/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/App.ico -------------------------------------------------------------------------------- /ERPManager/ApplicationModules.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/ApplicationModules.config -------------------------------------------------------------------------------- /ERPManager/Defaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Defaults.cs -------------------------------------------------------------------------------- /ERPManager/ERPManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/ERPManager.csproj -------------------------------------------------------------------------------- /ERPManager/Forms/InfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/InfoForm.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Forms/InfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/InfoForm.cs -------------------------------------------------------------------------------- /ERPManager/Forms/InfoForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/InfoForm.it-IT.resx -------------------------------------------------------------------------------- /ERPManager/Forms/InfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/InfoForm.resx -------------------------------------------------------------------------------- /ERPManager/Forms/NotifyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/NotifyForm.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Forms/NotifyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/NotifyForm.cs -------------------------------------------------------------------------------- /ERPManager/Forms/NotifyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/NotifyForm.resx -------------------------------------------------------------------------------- /ERPManager/Forms/dateForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/dateForm.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Forms/dateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/dateForm.cs -------------------------------------------------------------------------------- /ERPManager/Forms/dateForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/dateForm.it-IT.resx -------------------------------------------------------------------------------- /ERPManager/Forms/dateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/dateForm.resx -------------------------------------------------------------------------------- /ERPManager/Forms/mainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/mainForm.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Forms/mainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/mainForm.cs -------------------------------------------------------------------------------- /ERPManager/Forms/mainForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/mainForm.it-IT.resx -------------------------------------------------------------------------------- /ERPManager/Forms/mainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/mainForm.resx -------------------------------------------------------------------------------- /ERPManager/Forms/registerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/registerForm.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Forms/registerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/registerForm.cs -------------------------------------------------------------------------------- /ERPManager/Forms/registerForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/registerForm.it-IT.resx -------------------------------------------------------------------------------- /ERPManager/Forms/registerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/registerForm.resx -------------------------------------------------------------------------------- /ERPManager/Forms/settingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/settingForm.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Forms/settingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/settingForm.cs -------------------------------------------------------------------------------- /ERPManager/Forms/settingForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/settingForm.it-IT.resx -------------------------------------------------------------------------------- /ERPManager/Forms/settingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/settingForm.resx -------------------------------------------------------------------------------- /ERPManager/Forms/usersForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/usersForm.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Forms/usersForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/usersForm.cs -------------------------------------------------------------------------------- /ERPManager/Forms/usersForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/usersForm.it-IT.resx -------------------------------------------------------------------------------- /ERPManager/Forms/usersForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Forms/usersForm.resx -------------------------------------------------------------------------------- /ERPManager/Library/CheckNewVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Library/CheckNewVersion.cs -------------------------------------------------------------------------------- /ERPManager/Library/DllManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Library/DllManager.cs -------------------------------------------------------------------------------- /ERPManager/Library/Enums.cs: -------------------------------------------------------------------------------- 1 | namespace ERPManager 2 | { 3 | //enum CodeType {E_Integer, E_String} 4 | } -------------------------------------------------------------------------------- /ERPManager/Library/FtpUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Library/FtpUploader.cs -------------------------------------------------------------------------------- /ERPManager/Library/ModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Library/ModuleManager.cs -------------------------------------------------------------------------------- /ERPManager/Library/SerialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Library/SerialManager.cs -------------------------------------------------------------------------------- /ERPManager/Library/USBSerialNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Library/USBSerialNumber.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/ApplicationTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/ApplicationTabControl.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/FavoriteButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/FavoriteButton.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/FavoritesMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/FavoritesMenu.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/MenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/MenuButton.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/MenuControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/MenuControl.Designer.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/MenuControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/MenuControl.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/MenuControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/MenuControl.resx -------------------------------------------------------------------------------- /ERPManager/MenuManager/ModuleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/ModuleButton.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/ModuleTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/ModuleTile.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/PanelFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/PanelFolder.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/PanelModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/PanelModules.cs -------------------------------------------------------------------------------- /ERPManager/MenuManager/PanelPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/MenuManager/PanelPreferences.cs -------------------------------------------------------------------------------- /ERPManager/ModuleData/DBRadar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/ModuleData/DBRadar.cs -------------------------------------------------------------------------------- /ERPManager/ModuleData/RegisterModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/ModuleData/RegisterModule.cs -------------------------------------------------------------------------------- /ERPManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ERPManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /ERPManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Properties/Resources.resx -------------------------------------------------------------------------------- /ERPManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ERPManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Properties/Settings.settings -------------------------------------------------------------------------------- /ERPManager/Resources/About24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/About24.png -------------------------------------------------------------------------------- /ERPManager/Resources/AddUser24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/AddUser24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Batch16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Batch16.png -------------------------------------------------------------------------------- /ERPManager/Resources/Batch16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Batch16g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Batch24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Batch24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Batch24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Batch24g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Blu.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Blu.PNG -------------------------------------------------------------------------------- /ERPManager/Resources/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Calendar.png -------------------------------------------------------------------------------- /ERPManager/Resources/Calendar32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Calendar32.png -------------------------------------------------------------------------------- /ERPManager/Resources/Calendar32G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Calendar32G.png -------------------------------------------------------------------------------- /ERPManager/Resources/Checkout24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Checkout24.png -------------------------------------------------------------------------------- /ERPManager/Resources/ChristmasStar16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/ChristmasStar16g.png -------------------------------------------------------------------------------- /ERPManager/Resources/CircledLeft32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/CircledLeft32.png -------------------------------------------------------------------------------- /ERPManager/Resources/CircledLeft32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/CircledLeft32g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Code.png -------------------------------------------------------------------------------- /ERPManager/Resources/Code24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Code24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Counter24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Counter24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Delete16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Delete16.png -------------------------------------------------------------------------------- /ERPManager/Resources/Delete16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Delete16g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Export24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Export24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Export24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Export24g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Form.png -------------------------------------------------------------------------------- /ERPManager/Resources/Form16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Form16.png -------------------------------------------------------------------------------- /ERPManager/Resources/Form16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Form16g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Form24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Form24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Form24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Form24g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Gear.png -------------------------------------------------------------------------------- /ERPManager/Resources/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Info.png -------------------------------------------------------------------------------- /ERPManager/Resources/Info24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Info24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Info32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Info32.png -------------------------------------------------------------------------------- /ERPManager/Resources/Key24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Key24.png -------------------------------------------------------------------------------- /ERPManager/Resources/LastUser24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/LastUser24.png -------------------------------------------------------------------------------- /ERPManager/Resources/New-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/New-24.png -------------------------------------------------------------------------------- /ERPManager/Resources/New24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/New24.png -------------------------------------------------------------------------------- /ERPManager/Resources/NuovoLogo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/NuovoLogo.psd -------------------------------------------------------------------------------- /ERPManager/Resources/Orange.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Orange.PNG -------------------------------------------------------------------------------- /ERPManager/Resources/OrangeDark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/OrangeDark.PNG -------------------------------------------------------------------------------- /ERPManager/Resources/OrangeLight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/OrangeLight.PNG -------------------------------------------------------------------------------- /ERPManager/Resources/Outline24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Outline24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Outline24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Outline24g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Print16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Print16.png -------------------------------------------------------------------------------- /ERPManager/Resources/Print16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Print16g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Print24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Print24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Print24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Print24g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Process24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Process24.png -------------------------------------------------------------------------------- /ERPManager/Resources/Process24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Process24g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Setting32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Setting32.png -------------------------------------------------------------------------------- /ERPManager/Resources/Setting32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Setting32g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Sfondo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Sfondo.png -------------------------------------------------------------------------------- /ERPManager/Resources/Shutdown32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Shutdown32.png -------------------------------------------------------------------------------- /ERPManager/Resources/Shutdown32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Shutdown32g.png -------------------------------------------------------------------------------- /ERPManager/Resources/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Splash.png -------------------------------------------------------------------------------- /ERPManager/Resources/Splash.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Splash.psd -------------------------------------------------------------------------------- /ERPManager/Resources/StarFilled16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/StarFilled16g.png -------------------------------------------------------------------------------- /ERPManager/Resources/TriangleDown16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/TriangleDown16.png -------------------------------------------------------------------------------- /ERPManager/Resources/TriangleDown32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/TriangleDown32.png -------------------------------------------------------------------------------- /ERPManager/Resources/Unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Unlock.png -------------------------------------------------------------------------------- /ERPManager/Resources/Unlock24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Unlock24.png -------------------------------------------------------------------------------- /ERPManager/Resources/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/User.png -------------------------------------------------------------------------------- /ERPManager/Resources/User32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/User32.png -------------------------------------------------------------------------------- /ERPManager/Resources/User32G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/User32G.png -------------------------------------------------------------------------------- /ERPManager/Resources/Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/Users.png -------------------------------------------------------------------------------- /ERPManager/Resources/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/counter.png -------------------------------------------------------------------------------- /ERPManager/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/logo.png -------------------------------------------------------------------------------- /ERPManager/Resources/newversion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/newversion.png -------------------------------------------------------------------------------- /ERPManager/Resources/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/preferences.png -------------------------------------------------------------------------------- /ERPManager/Resources/remove_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/Resources/remove_user.png -------------------------------------------------------------------------------- /ERPManager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/app.config -------------------------------------------------------------------------------- /ERPManager/applicationConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/applicationConfig.xml -------------------------------------------------------------------------------- /ERPManager/mainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/mainApplication.cs -------------------------------------------------------------------------------- /ERPManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPManager/packages.config -------------------------------------------------------------------------------- /ERPStudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/ERPStudio.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/LICENSE -------------------------------------------------------------------------------- /MetroFramework.Extender/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Dictionary.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Interfaces.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroAddOnPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroAddOnPanel.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroAutosizePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroAutosizePanel.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroBreadCrumbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroBreadCrumbs.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroCollapsiblePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroCollapsiblePanel.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroExToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroExToolbar.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroFlowLayoutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroFlowLayoutPanel.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroFramework.Extender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroFramework.Extender.csproj -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroFrameworkExtenderDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroFrameworkExtenderDefaults.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroIntelliTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroIntelliTextBox.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroLinkChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroLinkChecked.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroListBox.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroMaskedTextbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroMaskedTextbox.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroNumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroNumericTextBox.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroNumericUpDown.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroNumericUpDown.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroNumericUpDown.resx -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroPopUpCalendar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroPopUpCalendar.Designer.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroPopUpCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroPopUpCalendar.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroPopUpCalendar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroPopUpCalendar.resx -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroPropertyGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroPropertyGrid.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroProvaTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroProvaTile.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroRichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroRichTextBox.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroTableLayoutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroTableLayoutPanel.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroTextBoxButtonState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroTextBoxButtonState.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroTextBoxButtonState.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroTextBoxButtonState.resx -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroTextFolderBrowse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroTextFolderBrowse.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbar.Designer.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbar.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbar.resx -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButton.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarButton.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarCombobox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarCombobox.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarContainer.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarDropDownButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarDropDownButton.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarLabel.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarLinkChecked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarLinkChecked.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarNumericUpDown.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarPushButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarPushButton.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroToolbarButtons/MetroToolbarSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroToolbarButtons/MetroToolbarSeparator.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/MetroTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/MetroTreeView.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MetroFramework.Extender/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /MetroFramework.Extender/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Properties/Resources.resx -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/AlphabeticalSorting24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/AlphabeticalSorting24.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/AlphabeticalSorting24ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/AlphabeticalSorting24ck.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/AlphabeticalSorting24ckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/AlphabeticalSorting24ckg.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/AlphabeticalSorting24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/AlphabeticalSorting24g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Calendar16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Calendar16.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Circle10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Circle10.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Delete32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Delete32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Delete32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Delete32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Down8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Down8.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Down8g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Down8g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Edit32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Edit32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Edit32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Edit32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Exit32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Exit32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Exit32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Exit32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Filter32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Filter32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Filter32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Filter32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/GroupofQuestions24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/GroupofQuestions24.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/GroupofQuestions24ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/GroupofQuestions24ck.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/GroupofQuestions24ckg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/GroupofQuestions24ckg.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/GroupofQuestions24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/GroupofQuestions24g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Minus8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Minus8.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Minus8g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Minus8g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/More32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/More32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/More32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/More32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/New32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/New32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/New32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/New32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Pin24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Pin24.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Pin24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Pin24g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Pin32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Pin32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Pin32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Pin32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Play32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Play32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Play32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Play32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Plus8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Plus8.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Plus8g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Plus8g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Preview32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Preview32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Preview32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Preview32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Print32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Print32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Print32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Print32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Save32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Save32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Save32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Save32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Search16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Search16.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Search16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Search16g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Search32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Search32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Search32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Search32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Setting32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Setting32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Setting32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Setting32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/SortDown10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/SortDown10.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/SortRight10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/SortRight10.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Stop32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Stop32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Stop32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Stop32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleDown16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleDown16.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleDown16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleDown16g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleFillDown16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleFillDown16.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleFillDown16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleFillDown16g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleFillDown8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleFillDown8.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleFillDown8g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleFillDown8g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleLeft16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleLeft16.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleLeft16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleLeft16g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleRight16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleRight16.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleRight16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleRight16g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleUp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleUp16.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/TriangleUp16g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/TriangleUp16g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Undo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Undo32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Undo32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Undo32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Unpin24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Unpin24.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Unpin24g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Unpin24g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Unpin32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Unpin32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Unpin32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Unpin32g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Up8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Up8.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/Up8g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/Up8g.png -------------------------------------------------------------------------------- /MetroFramework.Extender/Resources/VerticalLine32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/Resources/VerticalLine32.png -------------------------------------------------------------------------------- /MetroFramework.Extender/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/MetroFramework.Extender/packages.config -------------------------------------------------------------------------------- /NHunspellComponent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/NHunspellComponent.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/README.md -------------------------------------------------------------------------------- /Serializer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Program.cs -------------------------------------------------------------------------------- /Serializer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Serializer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Serializer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Properties/Resources.resx -------------------------------------------------------------------------------- /Serializer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Serializer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Properties/Settings.settings -------------------------------------------------------------------------------- /Serializer/Resources/Checked32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/Checked32.png -------------------------------------------------------------------------------- /Serializer/Resources/Checked32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/Checked32g.png -------------------------------------------------------------------------------- /Serializer/Resources/CircledLeft32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/CircledLeft32.png -------------------------------------------------------------------------------- /Serializer/Resources/CircledLeft32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/CircledLeft32g.png -------------------------------------------------------------------------------- /Serializer/Resources/CreateArchive32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/CreateArchive32.png -------------------------------------------------------------------------------- /Serializer/Resources/CreateArchive32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/CreateArchive32g.png -------------------------------------------------------------------------------- /Serializer/Resources/Emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/Emerald.png -------------------------------------------------------------------------------- /Serializer/Resources/Open32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/Open32.png -------------------------------------------------------------------------------- /Serializer/Resources/Open32g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Resources/Open32g.png -------------------------------------------------------------------------------- /Serializer/SerialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/SerialManager.cs -------------------------------------------------------------------------------- /Serializer/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Serializer.cs -------------------------------------------------------------------------------- /Serializer/Serializer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Serializer.csproj -------------------------------------------------------------------------------- /Serializer/Serializer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/Serializer.sln -------------------------------------------------------------------------------- /Serializer/USBSerialNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/USBSerialNumber.cs -------------------------------------------------------------------------------- /Serializer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/app.config -------------------------------------------------------------------------------- /Serializer/licenseForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/licenseForm.Designer.cs -------------------------------------------------------------------------------- /Serializer/licenseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/licenseForm.cs -------------------------------------------------------------------------------- /Serializer/licenseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/licenseForm.resx -------------------------------------------------------------------------------- /Serializer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/packages.config -------------------------------------------------------------------------------- /Serializer/registerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/registerForm.Designer.cs -------------------------------------------------------------------------------- /Serializer/registerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/registerForm.cs -------------------------------------------------------------------------------- /Serializer/registerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/registerForm.resx -------------------------------------------------------------------------------- /Serializer/serialForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/serialForm.Designer.cs -------------------------------------------------------------------------------- /Serializer/serialForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/serialForm.cs -------------------------------------------------------------------------------- /Serializer/serialForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/Serializer/serialForm.resx -------------------------------------------------------------------------------- /SqlProviders/ProvaProviders/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/ProvaProviders/App.config -------------------------------------------------------------------------------- /SqlProviders/ProvaProviders/FrameworkClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/ProvaProviders/FrameworkClass.cs -------------------------------------------------------------------------------- /SqlProviders/ProvaProviders/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/ProvaProviders/Program.cs -------------------------------------------------------------------------------- /SqlProviders/ProvaProviders/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/ProvaProviders/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SqlProviders/ProvaProviders/ProvaProviders.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/ProvaProviders/ProvaProviders.csproj -------------------------------------------------------------------------------- /SqlProviders/ProvaProviders/SqlProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/ProvaProviders/SqlProxy.cs -------------------------------------------------------------------------------- /SqlProviders/ProvaProviders/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/ProvaProviders/packages.config -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqLiteProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqLiteProvider.csproj -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderCommand.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderConnection.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderConnectionStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderConnectionStringBuilder.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderDataAdapter.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderDataBaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderDataBaseHelper.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderDataReader.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderParameter.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderParameterCollection.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/SqlProviderTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/SqlProviderTransaction.cs -------------------------------------------------------------------------------- /SqlProviders/SqLiteProvider/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqLiteProvider/packages.config -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderCommand.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderCommandBuilder.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderConnection.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderConnectionStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderConnectionStringBuilder.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderDataAdapter.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderDataBaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderDataBaseHelper.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderDataReader.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderParameter.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderParameterCollection.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlProviderTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlProviderTransaction.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProvider/SqlServerProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProvider/SqlServerProvider.csproj -------------------------------------------------------------------------------- /SqlProviders/SqlProviders.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProviders.sln -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderCommand.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderCommandBuilder.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderConnection.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderConnectionStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderConnectionStringBuilder.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderDataAdapter.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderDataReader.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderDatabaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderDatabaseHelper.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderParameter.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderParameterCollection.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderRowUpdatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderRowUpdatingEventArgs.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/ISqlProviderTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/ISqlProviderTransaction.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SqlProviders/SqlProxyProvider/SqlProxyProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlProxyProvider/SqlProxyProvider.csproj -------------------------------------------------------------------------------- /SqlProviders/SqlceProviders/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlceProviders/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SqlProviders/SqlceProviders/SqlProviderConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlceProviders/SqlProviderConnection.cs -------------------------------------------------------------------------------- /SqlProviders/SqlceProviders/SqlceProviders.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlceProviders/SqlceProviders.csproj -------------------------------------------------------------------------------- /SqlProviders/SqlceProviders/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauro-rogledi/ERPStudio/HEAD/SqlProviders/SqlceProviders/packages.config --------------------------------------------------------------------------------