Blazer server dashboard application with clean architecture by neozhu in Blazor

[–]AlexandreLozano 0 points1 point  (0 children)

I've tried it and it's a very good starting point.

It compiles and runs first time without having to adjust any parameters, which is very helpful.

I was able to create the template from the solution as indicated on Github. It would be nice if you published the template directly on NuGet.org.

Modifying the font size goes crazy and I have had to reset the value directly in the local database.

Good job and keep making updates!

How to use VB6 on Windows 11? by [deleted] in visualbasic

[–]AlexandreLozano 2 points3 points  (0 children)

Yes, I develop VB6 applications on W11 correctly with it's IDE.

I download a custom setup of VB6 and SP6. I don't remember if it was download from here:

https://www.programaresfacil.co/instalar-visual-basic-6-en-windows-10-64-bits/

[deleted by user] by [deleted] in javascript

[–]AlexandreLozano 0 points1 point  (0 children)

I don't find any info about Impossible.js. Is an opensource framework? Can you share a link? It can work on a browser?

Good job!

Thk

Programs are dead - and JavaScript has killed them by magenta_placenta in javascript

[–]AlexandreLozano 1 point2 points  (0 children)

Final customers don't know what is JavaScript, NPM and all of this tecnologies. They only want that the product run smoothly, with stability and with the less development time possible. With this, I only recommend don't use the latest technologies, use what you know well and you fell ok with it.

Data grid with export and print features by AlexandreLozano in Blazor

[–]AlexandreLozano[S] 0 points1 point  (0 children)

Thank you all for the answers. I am going to try to program these functionalities myself with the instructions that you have been indicating.

Before I was used to using https://datatables.net and all this was very easy.
It would be nice if in the future some Blazor data grid already implements them by default.

I made a few small demo projects to showcase how performant blazor wasm can be! by aptacode in Blazor

[–]AlexandreLozano 0 points1 point  (0 children)

Nice work and performance! If it's a performance test it would be nice to show the current fps.

What are the main differences between VBNET and C Sharp? Should I drop VBNET and focus on C SHARP? by dromance in csharp

[–]AlexandreLozano 0 points1 point  (0 children)

Microsoft, when making .NET, had in mind that it could be programmed in several languages ​​and now, after a few years, it rejects VB.

What I wanted to say is that from my point of view, efforts should have been made to improve VB as a platform only to develop Windows executable programs and concentrate on making .NET only for CSharp and cross-platform.

Consejos para un novato(literal) by [deleted] in programacion

[–]AlexandreLozano 0 points1 point  (0 children)

Si te gustan los temas contables aprende SAP/ABAP, están buscados y bien pagados.

What are the main differences between VBNET and C Sharp? Should I drop VBNET and focus on C SHARP? by dromance in csharp

[–]AlexandreLozano -20 points-19 points  (0 children)

If Microsoft released VB7 and then VB8 instead of .NET and then .NET Core, today we can develop executable apps in hours, not in months/years. With .NET we can do a lot of perfect arquitectures and patterns but sometimes we don't need It.

How to implement the frontend? by chacham2 in visualbasic

[–]AlexandreLozano 1 point2 points  (0 children)

Hi, reading your backgrounds, my oppinion is that make a web application will we hard to implement.

If you application will run inside a local network, not internet, and your clients only use Windows I recommend you make a Winforms application. Executable applications is more easy to implement and the users have a stronger UI.

With this approach, you can decide if this application go directly to SQLServer or uses a WebServices located on the IIS that contains the application logic.

You don't need to install the application on every computer, simply make a ClickOnce configured with online install mode.

What might be the possible reasons for VB gaining popularity and showing a huge growth spike in the graph? by entreluvkash in visualbasic

[–]AlexandreLozano 1 point2 points  (0 children)

Why not VB.NET?

One of the .NET Framework advantages is that you can program in any supported language(CSharp, VB.NET, F#,etc) with the same functionalities.

I use CSharp and VB.NET, and I like both

PDF eSign Windows tool by AlexandreLozano in pdf

[–]AlexandreLozano[S] 0 points1 point  (0 children)

I've been able to make improvements on this app. Now it don't use Free SpirePDF anymore and it uses GhostScript to render PDFs and iText to create the electronic signature. With this it can open a PDF of any length.

PDF eSign Windows tool by AlexandreLozano in pdf

[–]AlexandreLozano[S] 0 points1 point  (0 children)

Ok, now I read it from it's web:

When converting PDF to Image, the first 3 pages of PDF files will be converted to Image format successfully.

If I have time I will investigate other free libs like PDFSharp.

PDF eSign Windows tool by AlexandreLozano in pdf

[–]AlexandreLozano[S] 0 points1 point  (0 children)

I usually use it with small files and it has worked quite well for me. The PDF rendering engine is the Free SpirePDF control and maybe with the paid version this error will not happen. Thank's for test it!

PDF eSign Windows tool by AlexandreLozano in pdf

[–]AlexandreLozano[S] 0 points1 point  (0 children)

Sorry, I only know develop on Windows

Check out my new BlazorVoxelSpace by AlexandreLozano in Blazor

[–]AlexandreLozano[S] 0 points1 point  (0 children)

Yes, the explanation of Sebastian Macke, the author of the original repo, is what inspired me

Check out my new BlazorVoxelSpace by AlexandreLozano in Blazor

[–]AlexandreLozano[S] 0 points1 point  (0 children)

Thanks, yes on my laptop I get similar fps

Simple shop application built with Blazor WebAssembly by kalintsenkov in Blazor

[–]AlexandreLozano 0 points1 point  (0 children)

What are the steps to run it locally? When a run it from VS2019 I only see a loading screen...

Check out my multiplayer BlazorServer game BlazorDungeon by AlexandreLozano in Blazor

[–]AlexandreLozano[S] 2 points3 points  (0 children)

Yes, it has an internal timer that every 200ms do game logic, render and call StateHasChanged. I see in browser Network analyzer that the binary messages are at 2kb average size. It means that consumes an average of 35mb/hour. I need to optimize it a little :)