Monday, December 1, 2008

A Vista Solution

One problem that I have had with Window's Vista OS is that software publishers do not create installers that are Vista compatible. That means that programs don't install correctly and then, don't uninstall. This leaves pieces of programs all over the computer, especially in the registry.

One of my Vista machines has had several programs that just would not uninstall. What to do? Yesterday I did a search on this problem and I found a new tool for users that will uninstall completely. It is easy to use and best of all, there is a portable version that you can use with no installation and even on a portable drive or flash drive.

It is called Revounistaller and is freeware!

Monday, October 27, 2008

On The Road!

We will be traveling to Israel this week. If you want to follow us, and if I have time to blog, check out:

Friday, October 17, 2008

Blogger in Draft

If you have blogged for a while and with to experiment with some new "stuff" why not try Blogger in Draft.


Just log into blogger with http://draft.blogger.com to see it. This is where the smart people who work on the blogger software experiment and have fun. For more info go to the Blogger in Draft info page.

Tuesday, October 14, 2008

Meca Presentation



Links to note:




Here is another public presentation on Web 2 from a poster at Slikeboom named Anarchyandy. No, I don't pal around with anarchists but it is a great presentation!




If you have blogged for a while and with to experiment with some new "stuff" why not try Blogger in Draft.
Just log into blogger with http://draft.blogger.com to see it. This is where the smart people who work on the blogger software experiment and have fun. For more info go to the Blogger in Draft info page.

Friday, October 10, 2008

MECA ReBorn Join US!


MECA Meeting Schedule:


Join us from 8:30—9:00AM for coffee, juice, treats and conbersationSaturday, October 18th, 2008 (Newsletter and directions)




personalized greetings
Session I: 9:00—10:00
  • “Managing Digital Photos / Slide- Shows“ – learn how to organize your pictures with Louis Loeffler Web 2.0 applications allow you to share, edit and create pictures. This workshop will discuss photo sharing with Flickr, Image Editors as well as Visual Literacy and 21st Century Skills.
  • “What is all this Web 2 Fuss?” with John Sklar Is Web 2.0 something educator’s should look at? Anyone can BLOG right now. We will create a blog and update a new MECA Blog.
10:05-10:35—Gathering and discussion. Please join us for a general Q & A about MECA and Web 2.0.

Session II: 10:45—11:45
  • “Internet and Technology Projects That Support Differentiated Instruction." with Lisa Gokey Are you wondering what you can do to incorporate technology into your differentiated classroom? We'll discover Internet resources that offer independent, self-guided learning for students of all abilities and learning styles.
  • “Wikis and Other Web 2.0 Delights” with Jim Kasum Web 2.0 is all about collaboration and sharing. Wikis and other tools are simple to use and, in many cases, free to use. Come and see how to build and use a wiki along with, time permitting, other tools for conferencing, meeting and collaboration.

Monday, October 6, 2008

Class 5 & 6 Resources

Use the button on the left to access the files for the last 2 classes. If you have any problem getting the files please contact me ASAP.

Friday, September 26, 2008

Class 4 - Resources

Please click on the 516 files button on the left to access the files for class.
Dr. Jim Kasum will be filling in for me tonight. I know you will enjoy the time with him.

Sunday, September 21, 2008

Thanks to the Stritch Network Folks....

I asked the Stritch Network techs to set up the web server so that it would allow the direct download of .java files. It is done and works. Starting today you will be able to download or directly open .java files from the web. This will make it much easier to use the files from the website.

Thursday, September 18, 2008

Study Team Logs - CEDu516


Use this button to fill out the study team form. Print before submit to keep a copy.

Monday, September 15, 2008

September 15th CEdu516

In a small group, i.e. 2 or three at the most, please complete exercise 4.12 on page 83 and 84.

The file you need, Counter.java is on the file site. Use the button on the left and go to class2 folder. Be sure to take the .txt off the file or just paste the text into jgrasp.

This is should not take more than a few minutes, ok, 15 minutes.

Then I will talk about what you have done. DO NOT PRINT OUT THE RESULT, just show it to me. (And save them!)

Thursday, September 11, 2008

Changing a Foreground color:

After a little research, I found how to change the foreground color in a JLabel and therefore in the content pane of the kinds of applications we are writing. (Thanks Stephen)

You need to set the Opaqity or opaqueness of the label to change the forground. Note lines 13, 29 and 30 below:



1 // RedText

2 import java.awt.*;

3 import javax.swing.*;

4

5 public class RedText extends JFrame

6 {

7 private JLabel aLabel; // JLabel that displays text

8

9 // no-argument constructor

10 public RedText()

11 {

12 // get content pane and set layout to null

13 Container contentPane = getContentPane();

14 contentPane.setBackground( Color.LIGHT_GRAY );

15 contentPane.setLayout( null );

16

17 // set properties of application's window

18 setTitle( "REDText Demo" ); // set title bar string

19 setSize( 608, 143 ); // set width and height of JFrame

20 setVisible( true ); // display JFrame on screen

21

22 // set up aLabel

23 aLabel = new JLabel();

24 aLabel.setText( "I am red text on light gray!!" );

25 aLabel.setLocation( 30, 0 );

26 aLabel.setSize( 550, 88 );

27 aLabel.setFont( new Font( "Serif", Font.PLAIN, 36 ) );

28 aLabel.setHorizontalAlignment( JLabel.CENTER );

29 aLabel.setOpaque(false);

30 aLabel.setForeground(Color.RED);

31 contentPane.add( aLabel );

32 }

33

34 // main method

35 public static void main( String[] args )

36 {

37 RedText application = new RedText();

38 application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

39

40 } // end method main

41

42 } // end class RedText




Wednesday, September 10, 2008

Accessing Files For Class


When accessing files from the CEd ftp site, using the button below, please note the directions below the button:



I've added a .txt to all the java files on this site. Right click on the file you want, choose "save target as" from the menu and then drop the .txt off to use the file on your computer.