'분류 전체보기'에 해당되는 글 517건

  1. 2022.11.14 한옥의 종류 및 특징
  2. 2022.08.31 Unresolved reference: R
  3. 2022.08.23 Unresolved reference: R
  4. 2022.08.17 AVD emulator process for avd has terminated
  5. 2022.04.12 Controller 처리
  6. 2022.04.12 JSSC (Java Simple-Serial-Connector)
  7. 2022.04.07 Scene Builder 설치
  8. 2022.04.06 이클립스 설치
  9. 2022.04.06 JDK 설치
  10. 2021.02.09 c# REGDB_E_CLASSNOTREG

한옥의 종류

 

https://www.hanokdb.kr/theology/sub_02

 

한옥의 종류 < 한옥이론 (국가한옥센터 : AURI NATIONAL HANOK CENTER)

조선시대의 한옥은 다음과 같은 용도로 많이 사용되었다. 주거건축 좁은 범위의 한옥이 가지는 주거용 건축을 의미하며, 크게 조선시대 서민들의 주택인 민가(民家)와 양반사대부들의 주택인

www.hanokdb.kr

 

 

'자료실' 카테고리의 다른 글

팟플레이어  (0) 2017.02.23
어도비 프리미너 CS4 32bit 평가판 다운로드  (0) 2016.03.31
오피스 2007 호환팩  (0) 2016.03.31
3M 마스크  (0) 2015.06.02
양육수당  (0) 2015.05.20
Posted by 곰돌이짱
,

Unresolved reference: R

AND 2022. 8. 31. 15:13

(추가)

import      com.example.app.R    

 

ALT+ENTER 입력

 

 

 

 

'AND' 카테고리의 다른 글

Unresolved reference: R  (0) 2022.08.23
AVD emulator process for avd has terminated  (0) 2022.08.17
Posted by 곰돌이짱
,

Unresolved reference: R

AND 2022. 8. 23. 18:31

(추가)

import      com.example.app.R    

 

ALT+ENTER 입력

 

 

 

 

'AND' 카테고리의 다른 글

Unresolved reference: R  (0) 2022.08.31
AVD emulator process for avd has terminated  (0) 2022.08.17
Posted by 곰돌이짱
,

 

1, C:\Users\<사용자명>\.android\avd

    - 해당 폴더에 있는 모든 파일 삭제

 

2. 한글이 없는  PATH에서 설정

 

3. 재시작 

 

'AND' 카테고리의 다른 글

Unresolved reference: R  (0) 2022.08.31
Unresolved reference: R  (0) 2022.08.23
Posted by 곰돌이짱
,

Controller 처리

JAVAFX 2022. 4. 12. 18:33

1. Main.java

FXML에서 없이 바로 처리 

AppForm.setController(new MyController());

 

	@Override
	public void start(Stage primaryStage) {
		try {
			FXMLLoader AppForm = new FXMLLoader();
			
			AppForm.setController(new MyController());

			AppForm.setLocation(getClass().getResource("MainForm.fxml"));
						
			Parent mainWnd = AppForm.load();
			Scene mainSC = new Scene(mainWnd);
            
			mainSC.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
			
			primaryStage.setTitle("TEST");
			primaryStage.setScene(mainSC);
			primaryStage.show();
            
		} catch(Exception e) {
			e.printStackTrace();
		}
	}

 

2. module-info.java

FXML에서 추가시

<fx:controller="controller.CatController">

 

opens controller to javafx.graphics, javafx.fxml;

 

 

'JAVAFX' 카테고리의 다른 글

Scene Builder 설치  (0) 2022.04.07
이클립스 설치  (0) 2022.04.06
JDK 설치  (0) 2022.04.06
ERR_CLEARTEXT_NOT_PERMITTED / ERR_CACHE_MISS  (0) 2019.12.13
Posted by 곰돌이짱
,

1. 다운로드

https://code.google.com/archive/p/java-simple-serial-connector/downloads

 

 

2. JAR 파일 복사

    Properties > Java Build Path > Libraries 

    

3. module-info.java

module TestFx {
requires javafx.controls;
requires javafx.fxml;
requires jssc;

opens application to javafx.graphics, javafx.fxml;
}

 

 

 

Posted by 곰돌이짱
,

Scene Builder 설치

JAVAFX 2022. 4. 7. 17:44

1. 다운로드 설치 

 

https://gluonhq.com/products/scene-builder/

 

Scene Builder - Gluon

Drag & Drop,Rapid Application Development. Download Now   Integrated Scene Builder works with the JavaFX ecosystem – official controls, community projects, and Gluon offerings including Gluon Mobile, Gluon Desktop, and Gluon CloudLink.   Simple Drag

gluonhq.com

 

2. 프로그램 연동 

   Window > Preferences 에서 실행파일 선택

 

'JAVAFX' 카테고리의 다른 글

Controller 처리  (0) 2022.04.12
이클립스 설치  (0) 2022.04.06
JDK 설치  (0) 2022.04.06
ERR_CLEARTEXT_NOT_PERMITTED / ERR_CACHE_MISS  (0) 2019.12.13
Posted by 곰돌이짱
,

이클립스 설치

JAVAFX 2022. 4. 6. 18:13

1. 다운로드 및 설치

 

https://www.eclipse.org/

 

The Community for Open Innovation and Collaboration | The Eclipse Foundation

The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 415 open source projects, including runtimes, tools and frameworks.

www.eclipse.org

 

 

2. JAVAfx 설치

이클립스 > HELP > Eclipse Marketplace 

 

3. JAVAFX SDK 다운로드

 

https://gluonhq.com/products/javafx/

 

JavaFX - Gluon

Roadmap Release GA Date Latest version Long Term Support Extended or custom support Details 19 September 2022 (planned) early access no 18 March 2022 18 (March 2022) no upon request details 17 September 2021 17.0.2 (January 2022) until September 2026 upon

gluonhq.com

 

   압축해제 후 이클립스 디렉토리로 이동

  

       

4. JAVAFX JAR 등록

 

 

5. R.M > Run AS > Run Configuration 

 

--module-path="C:\eclipse\javafx-sdk-18\lib"
--add-modules=javafx.controls,javafx.fxml

 

'JAVAFX' 카테고리의 다른 글

Controller 처리  (0) 2022.04.12
Scene Builder 설치  (0) 2022.04.07
JDK 설치  (0) 2022.04.06
ERR_CLEARTEXT_NOT_PERMITTED / ERR_CACHE_MISS  (0) 2019.12.13
Posted by 곰돌이짱
,

JDK 설치

JAVAFX 2022. 4. 6. 17:55

1. JDK 다운로드 

 

https://www.oracle.com/java/technologies/downloads/

 

 

2. 환경변수 

  - 시스템변수 추가 

 

1. JAVA_HOME

 

2. 시스템 > Path 에 추가

    %JAVA_HOME%\bin;

 

'JAVAFX' 카테고리의 다른 글

Controller 처리  (0) 2022.04.12
Scene Builder 설치  (0) 2022.04.07
이클립스 설치  (0) 2022.04.06
ERR_CLEARTEXT_NOT_PERMITTED / ERR_CACHE_MISS  (0) 2019.12.13
Posted by 곰돌이짱
,

c# REGDB_E_CLASSNOTREG

C# 2021. 2. 9. 11:58

 

 

'C#' 카테고리의 다른 글

DllNotFoundException  (0) 2017.11.27
Posted by 곰돌이짱
,