Lumbo Chenge bin
Lumbo Chenge bin
  • 31
  • 42 566

Відео

ASP .NET to save and retrieve images Part 1
Переглядів 71Рік тому
Using ASP .NET to save and retrieve images from an SQL table.
Change the Default Icon in Xamarin form
Переглядів 4762 роки тому
Using Visual Studio 2022
Pearson Vue: Schedule a Microsoft Exam
Переглядів 1092 роки тому
docs.microsoft.com/en-us/learn/certifications/browse/?resource_type=examination&wt.mc_id=pvue_msft_webpage_wwl
Comment Acceder votre chaine youtube
Переглядів 1673 роки тому
lumbostallone@gmail.com 26599390 6365 (Whatsaap ou Appel Normal)
Search Data and display Programming tutorial in DatagridView in C#
Переглядів 133 роки тому
Using Visual Studio 2019 For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
Update data from the Database in C#
Переглядів 153 роки тому
Working from Visual Studio 2029 For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
Delete From DataBase in C#
Переглядів 53 роки тому
In Visual Studio 2021 For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
Display from DataBase to DataGridView in C#
Переглядів 53 роки тому
In visual studio For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
Register to DataBase in windows Forms (.Net Framework)
Переглядів 113 роки тому
Step by Step For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
Avatar Images in html and Css using visual studion
Переглядів 113 роки тому
For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
Hoverable DropUp html and css in visual studio 2019
Переглядів 63 роки тому
Web Development For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
C# Biggest Number
Переглядів 183 роки тому
Using Visual Studio 2010 For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
ASP.NET First Project in Visual studio 2019
Переглядів 133 роки тому
For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
C# Conditional statement Switch case
Переглядів 1343 роки тому
For French, Swahili, and Lingala Tutoriels Contact us on: stallonebininfo@gmail.com 265 99 390 6365 On WhatsApp or normal call
C# else-if Statement
Переглядів 23 роки тому
C# else-if Statement
C# Conditional statement if-else
Переглядів 63 роки тому
C# Conditional statement if-else
C# ternary Operator
Переглядів 23 роки тому
C# ternary Operator
C# String or binary data would be truncated.
Переглядів 2573 роки тому
C# String or binary data would be truncated.
C# Link Database With your design
Переглядів 283 роки тому
C# Link Database With your design
C# Comparison Operator
Переглядів 43 роки тому
C# Comparison Operator
C# Logical Operator AND and OR
Переглядів 143 роки тому
C# Logical Operator AND and OR
C# Database (Insert data in table) using visual studio object explorer
Переглядів 2333 роки тому
C# Database (Insert data in table) using visual studio object explorer
C# Create a Database in visual studio using SQL Server Object explorer
Переглядів 3,3 тис.3 роки тому
C# Create a Database in visual studio using SQL Server Object explorer
C# System.NullReferenceException: 'Object reference not set to an instance of an object.'
Переглядів 37 тис.3 роки тому
C# System.NullReferenceException: 'Object reference not set to an instance of an object.'
Hide Directories using windows 7,8,10, and 11
Переглядів 83 роки тому
Hide Directories using windows 7,8,10, and 11
C# Operators (arithmetic)
Переглядів 253 роки тому
C# Operators (arithmetic)
C# Types of Datatype
Переглядів 63 роки тому
C# Types of Datatype
C# Instance, static and local variable
Переглядів 2453 роки тому
C# Instance, static and local variable
Datatypes & variables part1 in c#
Переглядів 53 роки тому
Datatypes & variables part1 in c#

КОМЕНТАРІ

  • @sayanabharati6548
    @sayanabharati6548 Рік тому

    Can this work for xamarin application in Visual studio 2022?

    • @lumbochengebin
      @lumbochengebin Рік тому

      Yes, even for Xamarin form

    • @sayanabharati6548
      @sayanabharati6548 Рік тому

      In xamarin, I have initialised the variables which are storing the data but still the same error after deployment of the app in the mobile

    • @lumbochengebin
      @lumbochengebin Рік тому

      @@sayanabharati6548 Please try to put the breakpoint and run it to see where the error is coming from, or share with me that block of code

    • @sayanabharati6548
      @sayanabharati6548 Рік тому

      @@lumbochengebin public partial class MainPage : ContentPage { private string gatewayIpAddress = string.Empty; private string routerSSID = string.Empty; private string routerPassword = string.Empty; public MainPage() { InitializeComponent(); } private async void ScanGatewayQR_Clicked(object sender, EventArgs e) { try { var scanner = new MobileBarcodeScanner(); var result = await scanner.Scan(); if (result != null && !string.IsNullOrEmpty(result.Text)) { gatewayIpAddress = ExtractIpAddressFromQR(result.Text); await DisplayAlert("Gateway QR Scanned", $"Gateway IP Address: {gatewayIpAddress}", "OK"); } else { await DisplayAlert("Error", "Failed to scan Gateway QR code", "OK"); } } catch (Exception ex) { await DisplayAlert("Error", ex.Message, "OK"); } } private async void ScanRouterQR_Clicked(object sender, EventArgs e) { try { var scanner = new MobileBarcodeScanner(); var result = await scanner.Scan(); if (result != null && !string.IsNullOrEmpty(result.Text)) { (routerSSID, routerPassword) = ExtractSSIDAndPasswordFromQR(result.Text); await DisplayAlert("Router QR Scanned", "Scanned successfully!", "OK"); } else { await DisplayAlert("Error", "Failed to scan Router QR code", "OK"); } } catch (Exception ex) { await DisplayAlert("Error", ex.Message, "OK"); } }

  • @mudassardar9452
    @mudassardar9452 Рік тому

    Thank you, for the specific solution.

  • @ahmedmuhamed6809
    @ahmedmuhamed6809 Рік тому

    good job

  • @sandisratnieks7005
    @sandisratnieks7005 Рік тому

    Thanks! The video could be faster, but it works!

  • @44D3N
    @44D3N Рік тому

    what would I do if its a panel. "this.panel6.Controls.Add(this.Dev);"

    • @lumbochengebin
      @lumbochengebin Рік тому

      share with me more details please

    • @44D3N
      @44D3N Рік тому

      @@lumbochengebin this only happens with windows 11 computers and when ever my form starts it gives me an error and shows that

  • @lavarajugiduturi2441
    @lavarajugiduturi2441 2 роки тому

    Good explanation brother! Keep more !

  • @maroonscorpion655
    @maroonscorpion655 3 роки тому

    What is it called and how can I add it

  • @maroonscorpion655
    @maroonscorpion655 3 роки тому

    What is green dot after use

    • @DieudonneTeddy
      @DieudonneTeddy Рік тому

      that is nothing, it only indicates that their is a space in newer versions of visual studio

  • @egideemtv7609
    @egideemtv7609 3 роки тому

    Thanks

  • @ceroh1435
    @ceroh1435 3 роки тому

    Ty

  • @cyeadoration9863
    @cyeadoration9863 3 роки тому

    Well

  • @cyeadoration9863
    @cyeadoration9863 3 роки тому

    Please I want the explanation of this video in french

  • @cyeadoration9863
    @cyeadoration9863 3 роки тому

    Cool i find it

  • @TheBigMug
    @TheBigMug 3 роки тому

    woah you were in my recommendations

  • @BahawalTV
    @BahawalTV 3 роки тому

    Good bro!

  • @cyeadoration9863
    @cyeadoration9863 3 роки тому

    Thank you for sharing my video