Search results for query: *

  • Users: Inhua
  • Order by date
  1. Inhua

    Display content in Listbox

    What kind of database do you use? MS Access, Paradox, other? Thank's, Inhua
  2. Inhua

    Date Problem in SQL statement

    Yes, the date delimiter is ', not #
  3. Inhua

    RichTextBox1.BackColor

    or using code RichTextBox1.BackColor = Color.White Thank's, Inhua
  4. Inhua

    Display content in Listbox

    Hi 042355C, I make a new Windows application project and add a ListBox1 and Button1 controls. The code looks below: Imports System.Data.Odbc Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  5. Inhua

    gridlike table control?

    JohnH, What is difference between DataGrid and DataGridView? And where should we use each? Many thank's, Inhua
  6. Inhua

    gridlike table control?

    Hi glow360, I cannot read the title of the window you ask for. Can you tell me? Thank's, Inhua
  7. Inhua

    How to reload a form?

    falled, if you want to back to the initial page size, you have to save the initial size for later use. Thank's Inhua
  8. Inhua

    Cannot find user control in Customize Toolbox dialog box

    Have you added your custom control file (.vb) to your new project? Thank's Inhua
  9. Inhua

    Load a entire column into a combo box

    I think Berry-tan uses the simple drag-and-drop method (so its name is visual programming) and made VS.NET creates all required data-access objects automatically (OledbConnection, OledbDataAdapter, and DataSet). You will find these objects on the component tray of VS.NET. Cmr creates all...
  10. Inhua

    Updating items in a listbox

    I used to load a text file (or CSV) as data source with VB6 using data source name (DSN). Please tell me how to load your CSV file to a list box control. Anyway, to update your list box, why don't you try to execute the command for loading the file content at the first time? (fill, load?)...
  11. Inhua

    Sending Network Message to List o Users

    Hi HAAAK, I have tested my previous code with ASP.NET and it run well. The Shell function calls the net send command which results in poping a message up on the screen of target computer. Just, it needs the Messenger Service (or WinPopUp on Win9x machines) to run on the target computer, which...
  12. Inhua

    move dll to a separate directory

    You are right Raven65. Since it is not .NET assembly, you cannot use the configuration file to allow the application knowing its required dll. The PATH parameter must include the complete folder name so the application knows where to search. Thank's, Inhua
  13. Inhua

    validation help

    lingsn is right.
  14. Inhua

    OOT: Most Recent Topics & Replies

    To Moderator/Administrator, Is there a tool or some panel to know the latest topics or replies? I've seen a forum like ours has a panel on the top of it that lists all recent topics and replies. Thank's, Inhua
  15. Inhua

    validation help

    Hi Steven, Try these steps: 1. Change the user and name on the INSERT statement to [user] and [name], respectively. 2. Add a primary key constraint to field [user] to allow the application raise your error message while duplicate user entry detected.
  16. Inhua

    Windows System Configuration

    Oh I see. According to Windows Help, Selective Startup is used to isolate problems. You check each check box one at a time, then restart the computer until the problem is reproduced. I think Selective Startup won't cause an error on VB .NET 2003 forms because there are no dependencies between...
  17. Inhua

    Sending Network Message to List o Users

    Hi HAAAK, What do you mean by "by force"? The feature that you are developing on your application just can only run if the configuration of target computer allows it to run. E.g. if the target computer is not a Windows OS, then there must be a service (like Messanger Services on Windows...
  18. Inhua

    Renaming DLL's names

    I think, to rename an assembly file, you should rename the class file (.vb) using Solution Explorer windows and rebuild your project. Then, updates the other references using new name.
  19. Inhua

    write to an XML file?

    Is there another object that has method to write to an XML file? (other than dataset)
  20. Inhua

    Why does it take so long to launch a VS.NET app?

    Another considerations: 1 On the Project Property Page, set the configuration to Release (if you want to create the final release application). 2 Still on the Project Property Page, under the Optimization, set the Enable Incremental Build to True Some others idea should be expected...
Back
Top