March 24th, 2010 05:42 AM
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...
December 14th, 2009 02:34 PM
Hey,
I've got the following code:
Sub processImport()
Set fileConn = connectCsv()
Set rs = fileConn.Execute("SELECT * FROM import.csv")
November 7th, 2009 12:52 PM
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...
November 7th, 2009 12:18 PM
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...
November 7th, 2009 11:23 AM
Or just GTFO of this crappy programming language and use a real one :P
November 7th, 2009 03:05 AM
November 6th, 2009 04:42 PM
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.
...
November 6th, 2009 11:52 AM
It adds when adding new lines, replacing lines, or adding something to the current line.
November 5th, 2009 04:11 PM
I'm using the selStart again, but somehow I still get these jumps to the top though they are almost unnoticable.
November 5th, 2009 02:51 PM
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...
November 5th, 2009 11:38 AM
With frm_log.txtLog
If .Text <> "" Then
.Text = .Text & vbNewLine
End If
.Text = .Text & "[" & cDay & "/" & UCase(MonthName(Month(Now), True)) & "/" & cYear &...
November 5th, 2009 11:36 AM
It seems just adding text to it gives it focus somehow.
November 5th, 2009 09:22 AM
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...
November 4th, 2009 01:01 PM
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...
November 1st, 2009 03:56 AM
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.
October 31st, 2009 06:20 PM
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...
September 27th, 2009 06:44 AM
September 3rd, 2009 03:27 PM
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...