It's been a while since I've dealt with image manipulations in Java, but I believe I recall the java.awt.image capable of such transformations -- take a look at those.
There was once upon a time a really nice (and free) java image-manipulation package, but Sun bought it out (to incorporate into...
To be honest with you, if you think you're comfortable enough with Java, I believe that the Timer object would best suit your needs. It works in real time, and uses the common mechanism of listeners/events. The documentation is at http://java.sun.com/j2se/1.4.1/docs/api/javax/swing/Timer.html...
Just so nobody gets confused, when Gutes said
'GET allows other objects to change the value of the property,
he obviously meant LET.
Also, I don't know how familiar C++ programmers are with properties, but C# programmers definitely should be.
ed
[afro]
Sure, you could use a scrollbar in combination with some other control(s). But a ListBox would be so much easier for this purpose, why not use that?
ed
Yeah, you're right, in general you should definitely keep the variable in a separate module if multiple forms share it.
But yeah, whatever works works... [wink]
ed
Sean-
It's indeed the correct behavior for BOF to not be TRUE until you hit the "before-the-first" record. Therefore, if what you're trying to do is find out if you're on the first record, you're gonna have to scan back a record and see if that's BOF, and if so, then disable the...
Nate-
That does sound strange. I quickly created a series of forms and functions like what you described, and it worked fine (as long as you get rid of the parantheses after "End Sub" and after the call to "UpdateMainForm". It sounds like your problem is that...
Well Brad, I don't know if you're being serious or not.
But in case you are, a constructor is actually a specific kind of method that is automatically invoked when an object is created. It usually contains any initialization code that the object needs. There is a lot more to it, but that's...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.