목록분류 전체보기 (686)
일상생활

visual studio 2022 C# Net Framework 4.7.2 기반 연동 가이드.프로젝트 생성Windows Forms (.Net Framework) 선택새 프로젝트 생성첫 시작 화면KIS-NAGT 설치를 합니다파일경로: C:\Program Files (x86)\AGT\AxInterop.DllLib.dllAxInterop.DllLib.dll 를 참조해서 연결 해 줍니다. X86 빌드 화면CS0234 'System.Windows' 네임스페이스에 'Forms' 형식 또는 네임스페이스 이름이 없습니다. 어셈블리 참조가 있는지 확인하세요.System.Windows.Forms.dll 를 참조하는 방법경로: C:\Program Files (x86)\Reference Assemblies\Microsoft\..
1. js 패키지 설치pubspec.yaml에 다음과 같이 js 패키지를 추가합니다dependencies: flutter: sdk: flutter js: ^0.6.3추가하고 패키지를 설치합니다.$ flutter pub get3.web 폴더 구조index.html 에 websocket.js 파일 추가 합니다.```html windows_flutter_web_testpage ``` 4.사용$ flutter doctor //채널 확인$ flutter channel stable //채널 변경$ flutter upgrade //채널 업그레이드$ flutter config --enable-web //웹 앱 사용 활성화$ flutter devices //사용 가능한 디바이스 확인5.실행하기// run..
1. 패키지 설치pubspec.yaml 에 다음과 같이 패키지를 추가합니다.dependencies: flutter: sdk: flutter ffi: ^2.0.1 # 최신 버전 확인 후 입력 charset_converter: ^2.0.1 # cp949 # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.6 intl: ^0.18.0 dev_dependencies: flutter_test: sdk: flutter ffi: ^2.0.1 # 최신 버전 확인 후 입력 charse..