Järsimähäiriö Posted August 6, 2001 Share Posted August 6, 2001 Anyone going? Could some Stockholm-boende please tell me the best way to get to Docklands from Vikingterminalen? Should I take a bus or what? Thanks. Link to comment Share on other sites More sharing options...
Järsimähäiriö Posted August 6, 2001 Share Posted August 6, 2001 Additionally, I'd appreciate any info on the availability of tickets at venue. Link to comment Share on other sites More sharing options...
Guest ralih Posted August 6, 2001 Share Posted August 6, 2001 It's very easy to get there from vikingterminalen, just walk to slussen which is very close to the terminal and then take buss 53 and go to finboda varv.. Link to comment Share on other sites More sharing options...
Guest JiM Posted August 8, 2001 Share Posted August 8, 2001 Earlier i thought about going, but after seing them in Copenhagen i wont see them again... ...was quite dissapointed on the Infected guys. But thats just me... ....see for your selves =) Link to comment Share on other sites More sharing options...
Guest ? Posted October 23, 2002 Share Posted October 23, 2002 import java.awt.*; import java.applet.*; public class eyePic2 extends Applet { Image eye; //picture of eye int a, b; //coordinates for mouse click public void init() { eye = getImage(getCodeBase(), "eye.jpg"); //makes the pic work // This code is automatically generated by Visual Cafe when you add // components to the visual environment. It instantiates and initializes // the components. To modify the code, only use code syntax that matches // what Visual Cafe can generate, or Visual Cafe may be unable to back // parse your Java file into its visual environment. //{{INIT_CONTROLS setLayout(null); setBackground(java.awt.Color.white); setForeground(java.awt.Color.black); setSize(426,266); instruct.setText("Click anywhere on the applet and watch as the eye follows."); add(instruct); instruct.setBounds(48,36,336,24); //}} } public boolean mouseDown(Event e, int x, int y) { a=x; //sets the x coor. in a b=y; //sets the y coor. in b repaint(); //reposts the lastest movement return true; } public void paint(Graphics g) { g.drawImage(eye, (a-60), (b-60), this); //draws eye at coor. given to it //60 was subtracted because the amount of white space // around the graphic created the problem of the // graphic not actually appearing where the mouse was clicked } //{{DECLARE_CONTROLS java.awt.Label instruct = new java.awt.Label(); //}} } Link to comment Share on other sites More sharing options...
Guest ?? Posted October 23, 2002 Share Posted October 23, 2002 (img src="http://easyweb.easynet.co.uk/~jjphoto/eyetoeye.jpg"> Link to comment Share on other sites More sharing options...
Guest ?? Posted October 23, 2002 Share Posted October 23, 2002 Link to comment Share on other sites More sharing options...
Recommended Posts