Search:

Type: Posts; User: Magic Ink

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    29
    Views
    2,458

    Re: Search listbox in any order vb

    Given that the first letter entered will be correct and very likely the second an autocomplete textbox of some kind may offer a solution.
    So you enter the first letter 'p' and a dropdown below the...
  2. Replies
    11
    Views
    910

    Re: Compile On Demand?

    Seems I have always had Compile on demand ticked, with no apparent issues; and always run in the IDE with an F5.
  3. Replies
    35
    Views
    3,367

    Re: Bringing Civility Back to the Forum

    If you think a post is offensive or giving dubious advice you should just use the 'Report post' button (the little triangle in the bottom left of every post).
  4. Re: PictureBox size in Print preview window

    Providing the target printer's default paper size is set to A4 (or whatever paper size if A4 is not your target paper size) this ...


    Picture1.Move 0, 0, Printer.ScaleWidth + (Picture1.Width -...
  5. Re: About a single instance of a For Next loop

    Input, output, kaput!
  6. Replies
    56
    Views
    10,958

    Poll: Re: Look what ThEiMp has done

    All over you show, what you can do...
  7. Replies
    9
    Views
    2,687

    Re: Work with paths longer than MAX_PATH

    Ref. also https://www.vbforums.com/showthread.php?844611-Long-Paths-(-gt-260)-and-Windows-Explorer
  8. Re: Installing on Windows 10 - JAVA loop

    Sam,
    Before trashing the laptop you may try a Windows System Restore if you are lucky enough to have a recent Restore Point.
    I generally create a Restore Point when installing any software...
  9. Replies
    14
    Views
    2,353

    Re: MSCOMCTL.OCX question

    A search of this forum for "Method '~' of object '~' failed" turns up quite a few results.

    It is generally considered of little consequence and or harmless.
    Quite a few posts suggest it is down...
  10. Re: Best Approach to Handling Multiple Flags - Dealing with large # Boolean variables

    Keep in mind that one Long variable has 32 bits which can be used to represent up to about 30 Boolean values (less than 32 because the Long variable uses one or two bits for its sign etc).
    This can...
  11. Re: Win10/11: How to position a form to the left edge of the desktop?

    >I found a solution by using the API GetSystemMetrics
    But is it ok for all Form BorderStyles and other versions of Windows?

    Did you see ...
  12. Re: How's too of making a compressed file, of some sorts

    Blah
  13. Thread: Menu editor

    by Magic Ink
    Replies
    8
    Views
    1,375

    Re: Menu editor

    Have you tried;
    IDE - Tools Menu - Menu editor
    or Ctrl+E
  14. Replies
    40
    Views
    7,610

    Re: [RESOLVED] MsgBox font properties

    Its working here, IDE elevated.
  15. Re: Bogus "Out of Memory" message when sitting on Ctrl+Y in the IDE

    If you are pressing Ctrl-Y and holding it down to delete lots of lines it could be that the keyboard buffer is filling faster than the actual deletes are happening. Is it possible you are getting the...
  16. Replies
    3
    Views
    1,244

    Re: perphs o.t. street of Italy

    You have already posted this question in another forum as sal21. Poor old Mike....
  17. Replies
    30
    Views
    5,193

    Re: [RESOLVED] Test if second Monitor switched on

    Seems strange that your RDP client is in someway aware of monitors plugged into the RDP server, I'm lost...
  18. Replies
    30
    Views
    5,193

    Re: [RESOLVED] Test if second Monitor switched on

    Could be I am missing something but I wonder if this issue is a serious one.

    The typical situation is a laptop which is used at home with the built-in display only, and used at work where an...
  19. Replies
    30
    Views
    5,193

    Re: [RESOLVED] Test if second Monitor switched on

    With reference to my code from https://www.vbforums.com/showthread.php?697863-VB-Appliation-on-Extended-Monitors&highlight=EnsureFormIsInsideMonitor which you referenced in post #7 there is a rem in...
  20. Replies
    30
    Views
    5,193

    Re: [RESOLVED] Test if second Monitor switched on

    >I have not tested yet as i dont have a second monitor attached to my development machine, but i will have tomo.

    So how's it going?
  21. Re: Position form at the top left corner of the screen in Windows 10

    this https://www.vbforums.com/showthread.php?824699-RESOLVED-Form-Placement-Considering-Aero-Borders old thread of mine may be of help
  22. Replies
    10
    Views
    3,426

    Re: WITH PRINTER...image

    Dile
    I was thinking about a line like

    Printer.PaintPicture picBarCode.Image, Printer.CurrentX, Printer.CurrentY, picBarCode.Width, picBarCode.Height

    From post #3 it looks like the OP wants...
  23. Replies
    10
    Views
    3,426

    Re: WITH PRINTER...image

    Checkout the CurrentX, CurrentY Properties in VB help
  24. Replies
    18
    Views
    3,299

    Re: Migrate VB6 to .NET

    >any more than you would go to England to learn to harvest bananas.
    Yes we have no bananas however with reference to Wikipedia 'Cavendish bananas, accounting for around 99% of banana exports to...
  25. Re: Rounding a 4 decimal place number to 2 decimal places

    Vb's Round function applies bankers rounding. It has its quirks and is not especially quick. See http://www.xbeat.net/vbspeed/c_Round.htm
  26. Replies
    9
    Views
    2,434

    Re: KeyUp event on TextBox ?

    Try the Change event instead of KeyPress perhaps...
  27. Re: Help me i'm drowning in my source code, hey dudes

    Not drowning just waving...
  28. Re: vb6 Friend keyword in Class1 or Com dll,OCX Control Class

    It's going to be another ...
  29. Re: Convert string to VB6 code,maximized characters

    Blah!
  30. Re: How to create all VB. Net controls dynamically with VB6?

    Blah!
  31. Re: Is there a source code for VB6 resource tools?

    Blah!
  32. Re: API For StrConv(Block, vbUnicode),MultiByteToWideChar(GetACP

    Blah...
  33. Re: Autocomplete only considers the 1st letter?

    I've never used it but;
    My reference for this would be https://www.vbforums.com/showthread.php?730409-AutoComplete-(Using-the-IAutoComplete-interface where Autocomplete for the File System seems to...
  34. Thread: Rotated text

    by Magic Ink
    Replies
    34
    Views
    5,082

    Re: Rotated text

    Did you try using ..
    Public Declare Function SetBkMode Lib "gdi32" (ByVal hdc As Long, ByVal nBkMode As Long) As Long
    'with nBkMode Constants
    Public Const TRANSPARENT = 1
    Public Const OPAQUE = 2...
  35. Re: Form border width on Win10 vs Win7

    Ref. https://www.vbforums.com/showthread.php?824699-RESOLVED-Form-Placement-Considering-Aero-Borders Post #19 may be of interest.
  36. Re: Why are VB6 IF-expressions so inefficient?

    I have never really thought of 'if … thens' being especially inefficient, surely it is down to the work which has to done to; 1. establish the value of conditions and 2. to compare them. Obviously if...
  37. Re: How to make a ListBox populate using Resource Folder fle types, like MHT files, e

    Suggest you pm xiaoyao on this one too if he very know the answer. He very accomplish at super speed multitask solution into you direct interface making good.

    如果他非常了解答案,也建议您在此推荐xiaoxiaoo。...
  38. Re: Running speed test-len/lenb/lstrlenW/CopyMemory/GetMem4

    >What's your opinion on that?

    223 posts since 23 Jan none of which has made much sense, it is spam. Time to stop it perhaps?
  39. Re: Inputbox not ready for input after form got focus

    Good one!
  40. Re: Inputbox not ready for input after form got focus

    Did you try AppActivate? See vb help.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width