Hi all, Normally the application config file name is app.config, but in my application have many application config file so I want to change it to xxxx_en.config or xxxx_fr.config for each module(DLL file), for each language thanks, cuong
nguyentuancuong
Posts
-
How to change app.config file name? -
The application developed in VB.Net can use menu with unicode in Windows 98?Hi all, I developed an application in Windows 2000, menu of application i used unicode font and then it run well, but when i bring it to Windows 98 so menu dose'nt appear in unicode font, i dont know why can you help me!!! Thanks, cuongnt
-
Error while loading document object reference not set to an instance of an objectare you put any usercontrol on tabcontrol? remove tabcontrol and try on form only
-
Error while putting usercontrol on tabcontroli was developed usercontrol inherits TextBox control, when i put it on form is ok (in design mode), but when i put it on tabcontrol and switching between code window and design window show following error message: - An error occured while loading the document. Fix the error, and then try loading document again. The varible 'control name' is either undeclared or was never assigned ... but i press F5 it run thanks cuong, Imports System.ComponentModel Imports System.Windows.Forms Imports System.Drawing Public Class VPIDSTextBox Inherits TextBox Private _mandatory As Boolean Private _tagData As Boolean Private _enterFocusColor As Color = Color.FromArgb(200, 210, 215) Private _leaveFocusColor As Color = Color.FromArgb(0, 0, 0) Private _fieldName As String Private _dataType As Int16 ' 0: Text; 1: Number ; 2: Date Private _dataFormat As String Private _keep As Boolean Private _isSaveData As Boolean = True Private _showButton As Boolean = False Public WithEvents ErrPro As System.Windows.Forms.ErrorProvider 'Public WithEvents cmdButton As Button 'Event ButtonClick(ByVal sender As System.Object, ByVal e As System.EventArgs) #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() call 'init error provider ErrPro = New System.Windows.Forms.ErrorProvider() End Sub 'UserControl overrides dispose to clean up the component list. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. Private Sub InitializeComponent() ' 'VPIDSTextBox ' End Sub #End Region _ Property IsSaveData() As
-
How to remove assembly at runtimehi all, i'm using dynamic assembly at runtime, but i want to change it at the runtime by overwrite on it. System message: "Can not copy (file.dll): It is being used by an other person or program. Close any programs that might be using the file and try again." could you tell me how to change or replace assembly at runtime thanks cuong