Search:

Type: Posts; User: Absolute_Zero

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: Your first BASIC computer? Has your software survived?

    (1) Casio FX-770P computer http://pocket.free.fr/html/casio/fx-770p_e.html

    169509





    (2) MSX computer https://www.msx.org/wiki/Sakhr_AX-170
  2. How to make Microsoft XMl v3 DOMDocument indent saved file using spaces?

    I made a project that can edit XML files using Microsoft XMl v3 DOMDocument (msxml3.dll), everything works perfect except one thing i want to fix, by default DOMDocument indent saved file using Tabs...
  3. Replies
    4
    Views
    1,787

    Re: TreeListView and XML

    Thanks for your answer, unfortunately it is not what i want, i'm talking about ObjectListView (see link in first post), the source code contains an example how to use TreeListView but with file...
  4. Replies
    4
    Views
    1,787

    Re: TreeListView and XML

    Any help is appreciated!
  5. Replies
    4
    Views
    1,787

    TreeListView and XML

    I'm using TreeListView a member of ObjectListView https://www.codeproject.com/Articles/16009/A-Much-Easier-to-Use-ListView

    I need a VB example explain how to use it to show the content of XML file...
  6. Re: [VS 2015] Command line to start with new project ready to use?

    Thank you! It's better than nothing.
  7. Re: [VS 2015] Command line to start with new project ready to use?

    I have visited this page https://msdn.microsoft.com/en-us/library/xee0c8y7.aspx before asking, i was hoping there is something not listed or workaround :(
  8. [VS 2015] Command line to start with new project ready to use?

    Is there a Command line param to start VS with a new project ready to use? (Windows Forms Application or any other template)
  9. Replies
    17
    Views
    6,842

    Re: VB6 app mysterious temp file

    Thanks to all of you

    4x2y had revealed the mystery
  10. Replies
    17
    Views
    6,842

    [RESOLVED] VB6 app mysterious temp file

    Someone uses one of my programs said that each time he run it, a file created in temp folder with random name like "~DF383B89D0B766850A.TMP", that program don't access temp folder at all!

    To test...
  11. Re: How to load control from its type string?

    WOW... worked like a charm, thank you!
  12. Re: How to load control from its type string?

    upppppp!
  13. Re: How to load control from its type string?

    I searched the web before asking here but didn't find the answer i want!

    Can you please provide an example?
  14. [RESOLVED] How to load control from its type string?

    I have file like this

    System.Windows.Forms.Label
    System.Windows.Forms.Button
    System.Windows.Forms.TextBox


    How to load each control directly from its type string without checking like this
  15. Re: TabControl with Close button on TabPages (with Design-Time support)

    @Pradeep1210 Thank you!

    I have a problem with TabControlEx, when set Multiline property to True or change Appearance, all close buttons disappear, i tried to call the method RePositionCloseButtons...
  16. Replies
    11
    Views
    3,487

    Re: How to set Tag property of any Type

    Why not using that something which according to your description is not used except for accessing controls via the Controls property of their parent, and i don't need this in the app i'm working in. ...
  17. Replies
    6
    Views
    1,167

    Re: How this is work?

    Sorry, i'm not talking about TextBox but most UI controls, e.g. Button, CheckBox, RadioButton, Label, ToolStripMenuItem, ToolStripStatusLabel etc...

    It is an old localization method.
  18. Replies
    11
    Views
    3,487

    Re: How to set Tag property of any Type

    Thanks, but i'm going to use Name instead of Tag, reason is here http://www.vbforums.com/showthread.php?853055-How-this-is-work
  19. Replies
    6
    Views
    1,167

    Re: How this is work?

    @jmcilhinney Thank you very much for this awesome description.



    What i want to do is that, at design time each control will have an Integer ID stored in the Text property, these IDs will...
  20. Replies
    6
    Views
    1,167

    How this is work?

    The following code change Button1.Name on each click, however Button1 is still linked to Button1.Click event! not only that but also i can access it from another Form using Form1.Button1.Text =...
  21. Replies
    11
    Views
    3,487

    Re: How to set Tag property of any Type

    No, ToolStripButton, ToolStripLabel, etc... are not of type Control


    System.Object
      System.MarshalByRefObject
        System.ComponentModel.Component
          System.Windows.Forms.ToolStripItem...
  22. Replies
    56
    Views
    45,805

    Re: VBIDEUtils now open sources

    Thanks!
  23. Replies
    11
    Views
    3,487

    How to set Tag property of any Type

    I want a method where i can use to set Tag property of any Type passed to it without turn off Option Strict


    Option Strict On
    Option Explicit On

    Public Class Form1

    Private mTypes As...
  24. Replies
    56
    Views
    45,805

    Re: VBIDEUtils now open sources

    How can i install? The Readme.txt say run "install.exe" but i cannot find it in the downloaded archive.
  25. Replies
    23
    Views
    30,191

    Re: Contest 12 - Knight Moves

    Congrats 2kaud, but I liked 4x2y's entry, he used a smart way to find moves out of board :thumb:
  26. Replies
    23
    Views
    30,191

    Re: Contest 12 - Knight Moves

    I see, but it takes too long to judge just 3 entries :)
  27. Replies
    23
    Views
    30,191

    Re: Contest 12 - Knight Moves

    Is it canceled? Is all entries are wrong?
  28. Replies
    2
    Views
    895

    Re: Inno setup question

    Thanks!
    I'll go to organize using sub-folders

    [Icons]
    Name: "{group}\Main Program"; Filename: "{app}\Main Program.exe"
    Name: "{group}\Folder1\Program 1"; Filename: "{app}\Program 1.exe"
    Name:...
  29. Replies
    2
    Views
    895

    Inno setup question

    My VB6 application contains 5 programs beside the main one, i want to include all of them in the Start menu, no problem here, what i want is grouping by adding menu separator, how can i do?

    here...
  30. Replies
    22
    Views
    38,917

    Re: Control Arrays in VB.NET

    Thanks!
  31. Replies
    22
    Views
    38,917

    Re: Control Arrays in VB.NET

    What is the meaning of question mark used in GetIndex and SetIndex methods?

    Public Function GetIndex(ByVal control As TControl) As Integer?
    Return If(Me.Contains(control),...
  32. Replies
    22
    Views
    38,917

    Re: Control Arrays in VB.NET

    Then let the standard conventions go to hell for now. :D
  33. Replies
    22
    Views
    38,917

    Re: Control Arrays in VB.NET

    Have to do just to follow the standard conventions for events or there is performance issue?
  34. Replies
    22
    Views
    38,917

    Re: Control Arrays in VB.NET

    I do it like this, first added declaration for events i want

    Public Event Click As EventHandler
    Private Sub Click_internal(sender As Object, e As EventArgs)
    RaiseEvent...
  35. Replies
    22
    Views
    38,917

    Re: Control Arrays in VB.NET

    How to share one procedure for all control in an array?
    I know i can do with

    For Each b In Buttons
    AddHandler b.Click, AddressOf Buttons_Click
    Next


    Is it...
  36. Re: How to show 16x16 icon in form's title bar and 32x32 icon in Windows Taskbar?

    I have found the solution here http://www.vbforums.com/showthread.php?674575-How-to-use-up-to-128x128-alpha-channel-icons-as-the-application-and-form-icons-in-VB6
  37. [RESOLVED] How to show 16x16 icon in form's title bar and 32x32 icon in Windows Taskbar?

    I set the main form's Icon property to an icon file contains two size 16x16 and 32x32, the small icon is shown in both form's Title bar (good) and Window 7 Taskbar (uggly)

    How can i show the small...
  38. Thread: s

    by Absolute_Zero
    Replies
    1
    Views
    3,660

    Re: s

    system 32
  39. Thread: s

    by Absolute_Zero
    Replies
    1
    Views
    3,660

    s

    system32
  40. Replies
    4
    Views
    5,083

    Re: Typewriter Simulation

    Because using Task class, that code requires .NET Framework 4.0 https://msdn.microsoft.com/en-us/library/system.threading.tasks.task(v=vs.110).aspx

    What is the benefit of using Task class here?
Results 1 to 40 of 197
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width