Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JimmyK

    Refresh list view but keep position

    Hello, remember ListBox1.SelectedIndex and set it to old value after refresh Jimmy Le nhan_tiags@yahoo.com
  2. JimmyK

    Moving around Forms 2.0 ListBox

    Thank all, I am RELUCTANT to use microsoft forms 2.0 control. The reason is that I have to support Win98 users with UNICODE. If YOU DON'T want to see or to hear any more about it, i am really sorry. Did I flood this forum? I always appreciate all your anwers. Jimmy Le nhan_tiags@yahoo.com
  3. JimmyK

    Moving around Forms 2.0 ListBox

    Hello, In VB 6.0 I can use key UP & DOWN arrow keys to scroll Microsoft Forms 2.0 ListBox . I mean i can select item by UP or DOWN arrow keys. But in VB.NET, i can't. I can only select an item by mouse. Why? please help. Thank a lot Jimmy Le nhan_tiags@yahoo.com
  4. JimmyK

    Additem in Microsoft forms2 2.0 Combobox

    Hello everybody. I found the problem. In .NET Combobox1.List becomes ComboBox1.set_List and ComboxBox1.Get_List The code will be changed to look like this Me.AxComboBox1.AddItem("Row 1 Col 1") Me.AxComboBox1.set_List(0, 1, "Row 1 Col 2") Me.AxComboBox1.AddItem("Row 2 Col 1")...
  5. JimmyK

    Additem in Microsoft forms2 2.0 Combobox

    Hi Christiaan, thank for your instant reply. But Microsft Forms 2.0 ComboBox really supports multi column in VB 6.0. This code works fine in VB 6.0. Combobox1 is Microsoft Forms 2.0 ComboBox ComboBox1.Clear ComboBox1.Width = 4580 ComboBox1.ColumnCount = 2 ComboBox1.ListWidth = "8cm"...
  6. JimmyK

    Additem in Microsoft forms2 2.0 Combobox

    Hi, Please tell me how to use Additem to Microsoft forms2 2.0 Combobox which have 2 column Thank in advance Jimmy Le nhan_tiags@yahoo.com
  7. JimmyK

    DataTable Report

    Crystal report will help, i think. Jimmy Le nhan_tiags@yahoo.com
  8. JimmyK

    Data Binding Error - Ms Forms 2.0 Textbox

    Thank Christiaan, So, do you know where to download the new version? Thank again, and i am still waiting for solution Jimmy Le nhan_tiags@yahoo.com
  9. JimmyK

    Data Binding Error - Ms Forms 2.0 Textbox

    Hello, Plese help me. Binding data to Microsoft Forms 2.0 TextBox error. Here is my code to bind data Dim da As SqlDataAdapter Dim cn As SqlConnection cn = New SqlConnection("Initial Catalog=Nhan;Data Source=localhost;Integrated Security=False;User=sa;Password=") da = New...
  10. JimmyK

    Unicode on Windows 9x

    Thank you ChipH, i did read the web page you mentioned many time but i dont know how to use it in visual studio.net. In VS.NET you cant link a .lib file. Thank again. Jimmy Le nhan_tiags@yahoo.com
  11. JimmyK

    DataGrid and Dataset

    Hello, try this Dim xx As DataSet xx = CType(Me.DataGrid1.DataSource, DataTable).DataSet i hope this help Jimmy Le nhan_tiags@yahoo.com
  12. JimmyK

    Unicode on Windows 9x

    Hi Chip H, Thank for your reply. I donwload MSLU from Microsoft site, it is just one file unicows.dll. Install it? You mean copy it system folder? I dont think so. You have to load it by LoadLibary Win API. But i dont know the steps to do it. I am still waiting for solution. Thank you in...
  13. JimmyK

    Unicode on Windows 9x

    Hello, I heard that MSLU will solve the problem but i don't know how to use it in VB.NET please help me Jimmy Le nhan_tiags@yahoo.com
  14. JimmyK

    Unicode on Windows 9x

    Hello, At this page http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbconunicodecharacterdisplayinwfcprojects.asp which say Windows Forms are entirely Unicode-enabled, ...... You can also write a single set of code which will work on all platforms. This is a change...
  15. JimmyK

    files included in project

    Thank you very much, Rick! Jimmy Le nhan_tiags@yahoo.com
  16. JimmyK

    files included in project

    Thank you all, Maybe i have to do so because there is no other way! Ramani, i will be seeing you more often in this forum, thanks once again. Jimmy Jimmy Le nhan_tiags@yahoo.com
  17. JimmyK

    files included in project

    Hi all, I include a bitmap (test.bmp) file in my project, say MYPROJ i build it to EXE, say MYPROJ.EXE How can i copy this bitmap file to hard disk while running EXE? The command copy test.bmp to c:\test2.bmp cause an error say : File test.bmp does not exist! How can i work around this...
  18. JimmyK

    Get client IP

    Hello, Could you please tell me how to know the client ip in COM+ ? (The ip of computer that creates object ) ObjectContext does not have such property or method. Thank a lot!. Jimmy Le nhan_tiags@yahoo.com
  19. JimmyK

    How to return to active row in Grid?

    Hi, i think this works Thisrow = Recno() ...printing current row Go ThisRow MYGRID.SETFOCUS() Jimmy Le nhan_tiags@yahoo.com
  20. JimmyK

    get dll function parameter

    Hi, I have a DLL. i use Dependency Walker to look at exported function but i dont know how many parameters it requires and what kind of data type. Is there any way to debug? or any utility to help? Thank in advance Jimmy Le nhan_tiags@yahoo.com

Part and Inventory Search

Back
Top