CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: xeross

Search: Search took 0.05 seconds.

  1. Managing a network with a C# client/server app ?

    Hey,

    I've been working on an application for a while now that allows me to perform actions on computers in a network, so far it can clean the PCs by launching CCleaner, uninstalling programs that...
  2. Replies
    0
    Views
    522

    CSV Reading using ADO wont delimit.

    Hey,

    I've got the following code:



    Sub processImport()
    Set fileConn = connectCsv()

    Set rs = fileConn.Execute("SELECT * FROM import.csv")
  3. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    Ye that's the only problem, microsoft discontinuing the functioning of vb6 apps. I just love C++ because it's multi-platform and it's more advanced then vb6, just need to get the hang of all the...
  4. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    Hmm, well I am just starting to learn C++ and VB6 is the language I know like second best (PHP is my specialty and thats not useful for making programs), VB6 is just getting dated and it has all this...
  5. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    Or just GTFO of this crappy programming language and use a real one :P
  6. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    Didn't even notice that
  7. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    That might work.

    And I think I just figured out why it would flash back up and then down: When you set the contents the thing gets emptied (Causing the scroll-up) and then it gets filled again.
    ...
  8. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    It adds when adding new lines, replacing lines, or adding something to the current line.
  9. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    I'm using the selStart again, but somehow I still get these jumps to the top though they are almost unnoticable.
  10. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    I found it now, I had a call in the log script that did frm_log.Show() which triggered it to get focus, I just added a check now if it's already visible and that fixed it.

    The only problem...
  11. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    With frm_log.txtLog
    If .Text <> "" Then
    .Text = .Text & vbNewLine
    End If
    .Text = .Text & "[" & cDay & "/" & UCase(MonthName(Month(Now), True)) & "/" & cYear &...
  12. Replies
    34
    Views
    15,451

    Re: Scrolling to textbox bottom without focus ?

    It seems just adding text to it gives it focus somehow.
  13. Replies
    34
    Views
    15,451

    Scrolling to textbox bottom without focus ?

    Hey,

    I have a textbox control that functions as a log window for my application, and I've successfully made it scroll to the bottom automatically.

    Unfortunately the function used gives the...
  14. Replies
    4
    Views
    1,060

    Re: Product Licensing

    Well if it takes em a long while to crack the application it means they have to spend that time cracking it with every new version, so the longer it takes them the less it will be cracked.

    Also I...
  15. Replies
    4
    Views
    1,060

    Re: Product Licensing

    I'll just make it as hard to crack as possible, not as in complicated protection but just simple protection on a massive scale. so they just give up because it takes too long.
  16. Replies
    4
    Views
    1,060

    Product Licensing

    Hey,

    I was wondering, I've just finished a program I was developing and I intend to sell this, however I can't seem to figure out how to implement licensing, so far I've made it login to a...
  17. Re: EnumWindows filter to only windows that show up on alt-tab

    Thanks, I'll try it out.
  18. EnumWindows filter to only windows that show up on alt-tab

    Hey People,

    I've been working on an application that needs to create a list of all open windows.

    So far I've got EnumWindows working with a callback, but I can't seem to filter all windows out...
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured