/* // 저장 프로시저 사용할때 // 반환 값 파라미터 var returnParam = new SqlParameter(); returnParam.Direction = ParameterDirection.ReturnValue; returnParam.SqlDbType = SqlDbType.Int; returnParam.ParameterName = "@RETURN_VALUE"; // 꼭 명시! cmd.Parameters.Add(returnParam); cmd.ExecuteNonQuery(); // 반환값 읽기 int _RTN = (int)cmd.Parameters["@RETURN_VALUE"].Value; */ // 저장 프로시저가 아니면 // SELECT 1, SELECT 3 값은 ExecuteScalar..
기기에서 > 개발자옵션 > USB디버깅, 무선디버깅을 선택한다.VS2022 도구 > Android > Android adb 명령 프롬프트명령프롬프트에서: : adb devices(연결된 deives list): adb tcpip 5555(만약 error: more than one devcie/emulator 라고 에러가 나온다면 이것은 실기기와 에뮬레이터가 대상이어서 그렇다.Android 에뮬레이터를 꺼주고 다시 adb tcpip 5555 진행해서 오류가 없음을 확인한다.): adb connect 192.168.100.102:5555(connected to 192.168.100.102:5555를 확인한다.)VS2022에서 실기기를 선택하고 debugging 하면된다.참고)기기를 삭제하려면: adb kil..
public GXSerial(Context contect) { _contect = contect; _Receiver = new GXUsbReciever(this); IntentFilter filter = new IntentFilter(" Gurux.Serial "); // filter.AddAction(UsbManager.ActionUsbAccessoryDetached); filter.AddAction(UsbManager.ActionUsbDeviceAttached); filter.AddAction(UsbManager.ActionUsbDeviceDetached); if (Android.OS.Build...
dotnet build -t:InstallAndroidDependencies -f:net8.0-android -p:AndroidSdkDirectory="$HOME/Library/Android/sdk" -p:JavaSdkDirectory="/Library/Java/JavaVirtualMachines/Microsoft-17.jdk/Contents/Home" -p:AcceptAndroidSDKLicenses=True
SELECT Category, -- Replace with your actual column name for category COUNT(*) AS Count, CAST(COUNT(*) * 100.0 / SUM(COUNT(*)) OVER () AS decimal(10,2)) AS Percentage FROM YourTable GROUP BY Category;Result-------------------------Category Count PercentageM 10 10.0W 90 90.0
Create Table SaveChat ( ChatDate Date , ChatVar varchar(20), ChatName varchar(50), ChatCount Integer, Constraint tb_product_group_PK Primary Key(ChatDate,ChatName) )------------------------------------------------------------------------------------INSERT INTO SaveChat (ChatDate, ChatVar, ChatName, ChatCount) VALUES (@ChatDate, @ChatVar, @ChatName, @ChatCount) ON CONFLICT(ChatDate, ChatName) D..
Platforms > Android > MainAppication 에서 //protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); protected override MauiApp CreateMauiApp() { // Remove Entry control underline Microsoft.Maui.Handlers.EntryHandler.Mapper.AppendToMapping("NoUnderline", (h, v) => { h.PlatformView.BackgroundTintList = Android.Content.Res.ColorStateList.ValueOf(Colors.Transparent.ToAndroid()); });..

Error. An error occurred while processing your request. Request ID: Development Mode Swapping to the Development environment displays detailed information about the error that occurred. The Development environment shouldn't be enabled for deployed applications. It can result in displaying sensitive information from exceptions to end users. For local debugging, enable the Development environment ..
- Total
- Today
- Yesterday
- ssl_client_socket_impl.cc
- Windows IIS FTP 디렉토리 목록 오류
- 서버 수준의 URN 필터
- Linux SSH Multi Computer Join
- ClickOnce 인증서 인증기간 변경
- Xamarin Firebase Phone Auth
- WPF Datagrid Cell Value Change
- Xamarin.Forms
- Label Text LineBreak in Xaml
- FileStream Add Byte
- WPF Scrollviewer in ScrollViwer
- C# LINQ Left join
- Entry '' has empty native path
- Xamarin.Ios Firebase Phone Auth
- Embeded 한글Font적용
- SkiaSharp
- 암호 마스터키
- 연산자 뒤에 피연산자가 없습니다.
- c# Encrypt / Decrypt
- WPF Textbox
- Xamarin.Ios Firebase Phone User Add
- Xamarin reCAPTCHA
- Xamarin Firebase Phone User Add
- Xamarin SMS OTP Send
- Xamarin.Ios Firebase Phone SMS OTP Send
- GetCellContent CheckBox Value
- Microcharts
- WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |