Search:

Type: Posts; User: KGComputers

Page 1 of 13 1 2 3 4

Search: Search took 0.17 seconds.

  1. Contoso University In ASP.NET Core MVC With EF Core

    Here's a post with source code link included on creating a University application with CRUD functionalities using ASP.NET Core MVC and EF Core. The major update made to the project was the approach...
  2. VS 2015 Re: Modal popup shows wrong information. asp.net

    Have you tried debugging in this event and check the values assigned to the val() function?


    $("[id*=lnkEdit]").click(function () {
    ...
  3. Re: How to Set same icon for all my Forms?

    Here's how we solved it by setting all Form icons using reflection. This solution was applied to our .NET 6 project.

    1. Add an icon to the project and change it's Build Action to Embedded...
  4. Replies
    3
    Views
    555

    VS 2019 Re: C# convert multi bytes to VB.NET

    Since you are concern with calling the GetSRP6RegistrationData() function that returns tuple and it's elements in your first post, you don't have to modify the GetSRP6RegistrationData() function. In...
  5. Replies
    3
    Views
    555

    VS 2019 Re: C# convert multi bytes to VB.NET

    You may assign a variable from the function call that holds the Tuple and it's two elements Salt and Verifier.


    Dim result = GetSRP6RegistrationData(username,password)
    'Access the Tuple's...
  6. [RESOLVED] Rename ASP.NET Codebank Sub-forum

    Mods,

    I would like to suggest renaming the ASP.NET Codebank.

    From
    CodeBank - ASP / ASP.NET / MVC / Web API
    Find cool or practical code examples using ASP or ASP.NET.

    To
    CodeBank - ASP,...
  7. Replies
    4
    Views
    1,070

    Re: Question about Newtonsoft.Json

    While Microsoft is leaning towards System.Text.Json and I'm guessing you are not moving to .NET Core or 8 . Have you tried adding the Newtonsoft Nuget Package again?
  8. Re: how to amend all record entries at once?

    I'd rather revise the update query and use Parameters to avoid SQL Injection and other known issues. See post below as to why you should use Parameters.
    Database - Why should I use Parameters...
  9. Re: How can i diplay something like this in the image using datalist view asp.net

    Agree, for simple image gallery with small number of records and simple logic, datalist control would suffice. But for complex galleries, we have used js sliders or jquery datatable before which is...
  10. Replies
    14
    Views
    1,253

    Re: vb.net how to edit field value like vb6?

    jmc has decent topics on VB.NET database or data related programming here code bank submissions
  11. Re: How can i diplay something like this in the image using datalist view asp.net

    I haven't done ASP.NET Web Forms projects lately. But the links below will help you achieve in showing images to DataList control.

    How to use the DataList control to create an Image Gallery
    Bind...
  12. Re: How to show am/pm for the time in the datagridview after insert the time into sql

    As jmc suggested, setting the DataGridView DefaultStyle.Format property is the ideal approach for formatting values.



    private void Form1_Load(object sender, EventArgs e)
    {
    DataTable...
  13. Re: How to show am/pm for the time in the datagridview after insert the time into sql

    Hi,

    The code below, shows dates with time and tt. Assuming you are populating the datagridview control via DataTable.



    private void Form1_Load(object sender, EventArgs e)
    {
    DataTable...
  14. Replies
    3
    Views
    2,056

    Re: Create pdf from asp.net

    Hi,

    We either use PdfSharpCore or DinkToPDF for our projects' reporting module. If you want to use an html page as template for the report, DinkToPDF is capable of that. Here's an example of using...
  15. WPF DataGrid Header Checkbox Check All Using MVVM Pattern And VB.NET

    Hello,

    Here's a Visual Basic .NET tutorial How To Apply Checkbox Check All To WPF DataGrid Using MVVM Pattern In VB.NET on how to add a checkbox to a WPF DataGrid header which selects or deselects...
  16. WPF DataGrid Header Checkbox Check All Using MVVM Pattern And C#

    Hello,

    Here's a tutorial How To Apply Checkbox Check All To WPF DataGrid Using MVVM Pattern on how to add a checkbox to a WPF DataGrid header which selects or deselects all rows in the DataGrid...
  17. Replies
    0
    Views
    2,873

    Contoso Crafts Website ASP.NET Core 101

    Hello,

    This blog post ASP.NET Core 101 Contoso Crafts Website Upgrade To .NET 8 is a sample application upgraded from .NET Core 3.x to .NET 8 which is tackled in this Microsoft .NET Core series...
  18. Align Table Columns Inside Details View With Bootrap-Table Columns In ASP.NET MVC

    Hello,

    This post explains the solution to an issue that I encountered on how to align the columns of a table inside the details view of the parent Bootstrap-Table by Wenzhixin which was required...
  19. Using Tailwind CSS In ASP.NET Core MVC 5.0 Web Application

    Here's how to integrate Tailwind CSS 3.x Install And Integrate Tailwind CSS 3.0 In ASP.NET Core MVC 5.0 Web Application into your ASP.NET Core MVC web project using the Tailwind CLI.

    To install...
  20. Create A Basic Notepad++ Plugin Using Notepad++ 64Bit, Visual Studio And C#

    Hello,

    This blog post Creating Your First Notepad++ Plugin Using Visual Studio 2019 And C#
    will walkthrough on creating a simple Notepad++ Plugin using Notepad++ 64 Bit, Visual Studio and C#.
    ...
  21. Upload A Form With Multiple Files Using HttpPostedFileBase Array In ASP.NET MVC

    Good day!

    Here's a blogpost How To Send Or Upload A Form With Multiple Files Using HttpPostedFileBase Array, jQuery And Ajax In ASP.NET MVC on how to post a form with multiple files in ASP.NET...
  22. Re: how to learn C# for the first time

    C# documentation. This is the MS official documentation for C#.

    - kgc
  23. Replies
    3
    Views
    979

    Re: KEDIT Macro Conversion

    Have you had any experience coding these type of macro?

    - kgc
  24. Replies
    3
    Views
    979

    KEDIT Macro Conversion

    Hello,

    We have an upcoming project to convert KEDIT Macros to C#.NET and basically I don't have experience or knowledge with the macro language
    syntax or any of the stuff mentioned below.
    ...
  25. Replies
    1
    Views
    2,122

    Re: Filter Grid View with 2 drop down menus

    Instead of using SqlDataSource control to bind data to a GridView control, I would suggest a better option which is to retrieve data from the database using sql statements, use the dropdown's...
  26. VS 2019 Re: [RESOLVED] BindingNavigator Missing from Toolbar

    @dday9

    I found a link from stack Activate missing Winforms controls in .Net Core 3.1which describes how to activate missing Winforms controls in .NET Core 3.1 C# application. Don't know if the...
  27. Replies
    4
    Views
    3,216

    Re: Class library no namespace?

    So you're instantiating both C# and VB.NET class libraries in a VB MVC Project. I tried replicating what you did an in fact I can both call C# and VB classes using Namespace.class

    SendMVB (VB...
  28. Replies
    4
    Views
    1,350

    VS 2015 Re: Detail from -- Catch ex As Exception

    Have you checked the InnerException "ex.InnerException"?
  29. Replies
    4
    Views
    3,216

    Re: Class library no namespace?

    Assuming that you have a project structure like below:

    Solution
    -> EShop (MVC Website)
    HomeController.cs
    -> SendM (Class Library)
    Class1.cs
    -> SendN (Class Library)
    Class1.cs
  30. Replies
    1
    Views
    1,193

    VS 2010 Re: Create Multi Level Menu

    I have not worked with repeaters for quite some time, but here's a link to working with nested repeaters Display hierarchical data by using nested Repeater controls and Visual C# .NET.

    Perhaps...
  31. Replies
    11
    Views
    3,024

    Re: Wizard Example Using VB,net

    Niya has created a Wizard Control project here which will give you an idea and perhaps modify it's functionality according to your needs

    - kgc
  32. 5.0 Re: NET 5.0 got DllImport CS0246 error

    If System.Runtime.InteropServices is listed under Microsoft.NETCore.App, but errors occur when referencing these classes, then there must be something wrong with the Visual Studio IDE. I tried adding...
  33. 5.0 Re: NET 5.0 got DllImport CS0246 error

    If this is a .NET Core Console App or WPF, the System.Runtime.InteropServices namespace is listed in Dependencies->Frameworks->Microsoft.NETCore.App, so you should be able to use the DllImport...
  34. Re: Create sub screen or tabs inside web form using asp.net and vb.net

    Hello,

    For ASP.NET Web Forms, you may want to explore on the Multi Views. Other controls that might be useful are
    1. AjaxControlsToolkit tab
    2. jQuery UI or Bootstrap Tab control.

    - kgc
  35. Using Bootstrap-Table In ASP.NET Core MVC 5 Web Application

    Hello,

    In this blogpost Getting Started With Bootstrap-Table In An ASP.NET Core MVC 5 Web Application With Entity Framework Core And SQL Server, I'll demonstrate on how to display information from...
  36. Getting Started With Unity IoC Container For Visual Basic In .NET Core Or .NET 5

    Good day!

    Since most of the examples out there are written in C# and Visual Basic that targets the .NET Framework, I decided to create a post Using Unity IoC Container Dependency Injection, Dapper...
  37. Re: Build a SpotLight Control Iusse Unrecognized class

    Hi, I noticed that you have syntax errrors in your code.

    Ex. <UserControl x:Class="StopLight"> in XAML but the code behind is Public Class SpotLight. And the properties of the buttons too...
  38. VS 2019 Re: LINQ is Missing Something, Or I Am

    As per documentation, the Into Clause applies to aggregate functions or groupings to apply to a collection which is used in Aggregate, Group By and Group Join clauses (the example that you...
  39. Re: [RESOLVED] Generic Method with BitConverter.GetBytes problem

    * Indeed, the generic approach isn't necessary and perhaps an overkill. Wherein you can simply overload the function with the required types as shown in your solution.

    JMC, after researching, I...
  40. Re: Generic Method with BitConverter.GetBytes problem

    A solution would be to explicitly check the type of T being passed to the function and execute the GetBytes() function for valid types. Other types are disregarded.



    private static byte[]...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width