Skip to content

Commit

Permalink
update MANIFEST and Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-chinchi committed Nov 23, 2024
1 parent ee4d48b commit 50cba66
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
Binary file modified Manifest/app.RES
Binary file not shown.
27 changes: 26 additions & 1 deletion Manifest/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@
</dependentAssembly>
</dependency>

<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> <!-- Windows 10 -->
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> <!-- Windows 8.1 -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> <!-- Windows 8 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> <!-- Windows 7 -->
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> <!-- Windows Vista -->
</application>
</compatibility>

<!-- hight DPI on Windows 10 -->
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
Expand All @@ -22,11 +32,26 @@
</application>

<!-- permissions -->
<!--
Ya no es necesario, Windows daba error al querer crear/borrar dinamicamente el sqlite.dll
pero se corrigio en este commit
https://github.com/manuel-chinchi/crud-vb6/commit/da013293d582459b0c663a0a61979cf6601fae0d
si se revierte esta modificación probablemente haya que usar esta configuración para que
el .exe pueda ejecutarse con permisos de administrador
-->
<!-- 18.12.2024
(sobre el comentario anterior)
al final tengo que usar 'requireAdministrator' porque sino no me deja guardar los archivos
exportados a formatos pdf,xls,doc y tampoco me deja actualizar el archivo de base de datos .db
Si hay alguna forma mas "limpia" de ejecutar el programa totalmente funcional sin tener que
usar esto no la conozco.
-->
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

</assembly>
8 changes: 7 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Simple CRUD made with VB6 and Crystal Reports 8.5.

## Overview



## Development environment

- Microsoft Visual Basic 6.0
Expand Down Expand Up @@ -73,4 +77,6 @@ to deploy the application to a clean machine. I hope it helps you.
* [Use of dictionary in VBA/VB6](https://vba846.wordpress.com/objeto-dictionary-para-vba/)
* [ListView column click order](https://www.vbforums.com/showthread.php?275658-ListView-Column-Click-(Sort)-Resolved!!)
* [Sort ListView column click](https://www.vbforums.com/showthread.php?301328-Vb6-Sort-Listview-By-Dates-numbers-text)
* [Embebed manifest into exe (vb6)](https://stackoverflow.com/questions/2182815/embedding-an-application-manifest-into-a-vb6-exe)
* [Embebed manifest into exe (vb6)](https://stackoverflow.com/questions/2182815/embedding-an-application-manifest-into-a-vb6-exe)
* [vb6 icons free](https://www.vbcorner.net/download_icons.htm)
* [Permission Windows](https://learn.microsoft.com/en-us/previous-versions/bb756929(v=msdn.10)?)

0 comments on commit 50cba66

Please sign in to comment.