News:

Facebook killed the radio star. And by radio star, I mean the premise of distributed forums around the internet. And that got got by Instagram/SnapChat. And that got got by TikTok. Where the fuck is the internet we once knew?

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - Hdx

#21
Botdev / Lockdown
February 24, 2007, 10:34:16 PM
[Joe Edit: Split from *me*]

Just a note:
Lockdown is completely possible to do in Java ;)
But its not working yet.
~Hdx
#22
Botdev / New CRev
August 23, 2006, 07:22:21 AM
Maby its jsut cuz its 4AM
But I can't seem to get it working >.<
http://jbls.org/CheckRevision.java
Any pointers.
I'll come back to it in the morning after some well needed sleep.
Btw <3 Skywing/Myndfry.
Anyone who looks at the code should see what I'm trying to do.
Thats what they changed in the new ix86 files.
Anyone know why it is returning the wrong values >.<
~-~(HDX)~-~
#23
General Programming / [Java] Platform information
May 24, 2006, 02:16:15 AM
Well, does anyone have any clue how to get platform imforation with Java?
Basic information, Country, Operating system, Archatecture (CPU), and anything else.
My crappy first idea was simply checking the current directory, seeing if there was a drive letter, if not :P
Anyways, anyone got any ideas?
~-~(HDX)~-~
#24
General Programming / Java 3D
May 15, 2006, 09:47:29 PM
Does anyone know ANYTHING about Java 3d?
I am really interested in making basic 3d aplications.
A basic cube will be <3!
All I could find were applet examples, but no applications, So anyone know anything?
~-~(HDX)~-~
#25
General Programming / [VB6] RTB Colors, SendMessage
April 24, 2006, 12:09:41 PM
Well, I kinda have a problem, I'm trying to append a rich text box, The text gets sent, but it is always the color of the background, so I can't see it.

How would you specify the color of the text when using SendMessage() to append it.
Dim X As CharFormat
X.cbSize = LenB(X)
X.crTextColor = vbRed
X.dwMask = CFM_COLOR

A = SendMessage(Z, WM_GETTEXTLENGTH, 0, 0) + 1
SendMessage Z, EM_SETSEL, A, 1
SendMessage Z, EM_SETCHARFORMAT, SCF_SELECTION, ByVal X
SendMessage Z, EM_REPLACESEL, 0, ByVal "Testing" & vbNewLine
SendMessage Z, EM_SCROLL, SB_LINEDOWN, 0

All of the constants are there proper formats, as far as I know:
Private Const WM_GETTEXTLENGTH As Long = &HE
Private Const EM_SETSEL& = &HB1
Private Const EM_REPLACESEL& = &HC2
Private Const EM_SCROLL& = &HB5
Private Const SB_LINEDOWN& = 1
Private Const SCF_SELECTION& = 1
Private Const EM_SETCHARFORMAT& = &H444
Private Const EM_GETCHARFORMAT& = &H43A
Private Const CFM_COLOR& = &H40000000

Private Type CharFormat
    cbSize As Long
    dwMask As Long
    dwEffects As Long
    yHeight As Long
    yOffset As Long
    crTextColor As Long
    bCharSet As Byte
    bPitchAndFamily As Byte
    szFaceName(32) As Byte
End Type

Z of corse is the handle for the RTB.
But please, Don't think I don't know how to use .SelColor -.- its not the point of this program, the point is to do it via sendmessage, for experiance.

Unless you know a way of Java using the SendMessage/FindWindow/FindWindowEx APis, it needs to be in VB, BTW, it does NOT have to be cross platform of corse :P
~-~(HDX)~-~
#26
General Discussion / Disc Imaging
April 20, 2006, 09:30:26 PM
Ok, I need a program that will copy a exact disc from one to another.
In linux.
Simmilar to Nortan Ghost, but for linux.
When I say disc I mean HD not CD.
I need to copy the contents of my 160GB to my 250GB and then zero my 160GB cuz i'm adding another 300GB HDD.
the 160GB is my boot disc, so ya, it needs to copy everything exactly.
Any suggestions???
~-~(HDX)~-~
#27
General Programming / Java GUI's
March 07, 2006, 01:10:33 AM
Well, I need help, how do you set the background of a JFrame?
import javax.swing.JFrame;
import java.awt.Graphics;
import java.awt.Color;

public class Form extends JFrame {
public Form() {
super("Helo homies!");
this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
this.setSize(300, 300);
this.setVisible(true);
setBackground(Color.BLACK);
}

public void paint(Graphics g){
g.setColor(Color.BLACK);
g.fillRect(0, 0, getWidth, getHeight);
g.setColor(Color.RED);
g.drawLine(10, 0, 200, 20);

}
}

I'm trying to have a black background, and a red line.
The black background shows up, untill i start re-sizing.
then it reverts tot he defult grey-ish color.
Anyone have suggestions?
~-~(HDX)~-~
#28
General Discussion / Alg2 Problem
February 08, 2006, 09:30:50 PM
13^13+13^20/80^-42^(16^-2\4^-1-(32^2)/(2^6-4^2))
This is an actuall problem my Math teacher gave our class.
This was the VARY FIRST problem of the new semester.
Note: All notation is VB notation.
It took me a whole 1 min to figure it out ;)
He made us show the work.
So, can you solve it? If so show ALL of your work (scann the paper if you can) I wana see the processes you all take.
~-~(HDX)~-~
#29
Botdev / JBLS Legacy Clients
January 23, 2006, 11:52:12 PM
Well I was bored, so I added Legacy Client support to JBLS
It's something i've always wanted to see in BNLS, but there not gona do it.
These are the following new Product IDS:
DRTL 0x09
DSHR 0x0A
SSHR 0x0B

They are mearly extentions of the following BNLS Packets:
BNLS_VERSIONCHECK 0x09
BNLS_REQUESTVERSIONBYTE 0x10
BNLS_VERSIONCHECKEX 0x18

They will return the correct information for these clients, jsut as those messages would for the other clients.
Meh anyways I jsut wanted to sell people, see if anyone would use it, if it's worth the 5 mins it took to implament.
If it is, and a bunch of bots start supporting this, I'm sure we can get Skywing to add it to the real BNLS <3
~-~(HDX)~-~
#30
General Programming / Programming class
September 28, 2005, 01:11:21 AM
Well... My class sucks, were learning Java.. And we're going REALLY slow.
We're in what the 3rd-4th week and werer only to If statements -.-
If yall wana look you can find out course work here:
http://hdx.no-ip.org/Labs/
Post comments, Code, etc..etc.. anything you have to say about my shitty class :P
~-~(HDX)~-~
#31
Unix / Linux Discussion / Fedora
September 23, 2005, 08:46:10 PM
Anyone know a Free Java IDE for fedora?
Were programming in Java in my class. Were also using fedora.
And using gedit/nano to edit the java files is a pain in the ass when we are dealing with 20-40 diffrent classes within the same project.
Specially seince we have to compile them 1 by one using javac -.-
So, Like I asked, Anyone know a good free Java IDE for fedora?
~-~(HDX)~-~
#32
General Programming / Need help
September 14, 2005, 10:31:27 AM
Well, I ahve a programming class, Were working in a Linix lab.. We are also programming in java.
So.. I NEED AN IDEA, I need to create a project, that will take atleast 10 weeks toi finish. I need suggestions.
I was thinking of making a file/chat server that links all the comps in the lab together. But thats to basic :/
~-~(HDX)~-~
#33
Entertainment District / Havent heard this in a while
September 07, 2005, 10:12:39 PM
There are no tricks, just pure logic, so good luck and don't give up.

1. In a street there are five houses, painted five different colours.
2. In each house lives a person of different nationality
3. These five homeowners each drink a different kind of beverage, smoke
different brand of cigar and keep a different pet.

THE QUESTION: WHO OWNS THE FISH?

HINTS

1. The Brit lives in a red house.
2. The Swede keeps dogs as pets.
3. The Dane drinks tea.
4. The Green house is on the left of the White house.
5. The owner of the Green house drinks coffee.
6. The person who smokes Pall Mall rears birds.
7. The owner of the Yellow house smokes Dunhill.
8. The man living in the centre house drinks milk.
9. The Norwegian lives in the first house.
10. The man who smokes Blends lives next to the one who keeps cats.
11. The man who keeps horses lives next to the man who smokes Dunhill.
12. The man who smokes Blue Master drinks beer.
13. The German smokes Prince.
14. The Norwegian lives next to the blue house.
15. The man who smokes Blends has a neighbour who drinks water.

Start a guessin. :/
Oh and you HAVE to show your work
~-~(HDX)~-~