Tuesday, February 2, 2016

Remove old Mysql



  1. Uninstall MySQL using the uninstaller
  2. Delete C:\Program Files\MySQL
  3. Delete C:\Program Files (x86)\MySQL
  4. Delete C:\ProgramData\MySQL
  5. Delete from any Users' AppData folders. Example: C:\Users\rdoverby\AppData\Roaming\MySQL
  6. Reinstall MySQL.

Use Case Diagrams

link

JavaFx Css Reference Guide

link

Eclipse can't launch JavaFx App

HelloWorldFx.java

import javafx.application.Application;
import javafx.stage.Stage;
public class HelloFx extends Application {
@Override
public void start(Stage stage) throws Exception {
stage.setTitle("First Hello World JavaFx");
stage.show();
}
}


This is because of you've not run anything before  (New Eclipse Configure)
This can be solved by adding main().

HelloWorldFx.java (Edited)
import javafx.application.Application;
import javafx.stage.Stage;
public class HelloFx extends Application {
public static void main(String[] args) {
Application.launch(args);
}
@Override
public void start(Stage stage) throws Exception {
stage.setTitle("First Hello World JavaFx");
stage.show();
}
}