Tormentor667 wrote:Uhoh... so blind I am Well, Niya, this is actually one of the features mostly needed so when do you think will you have enough spare time to add this support?
Sorry I couldnt answer sooner. My internet connection was unavailable for quite a while now. To answer the above I would say a couple days from the time of this post. As the net was not available, the info on the format was out of reach but I've just reviewed it and it would not be to hard to code.
Agent Me wrote:Is this made with VB 6, or VB .NET Express?
If it's the former, you really need to upgrade to .NET Express. It's FREE and you only need the .NET package to run it, and it's better.
Its written in VB6 mainly. One procedure is written in C++. I don't have
.NET here and from what I read, its quite different from VB6 and needs
the .NET framework installed. How is any different than using an installer. I wager that one still has to
install the framework. Anyways if it were written fully in VC, it would have been easier to just copy and run
as C interfaces with the windows API directly for its GUI but thats quite too much more work than I am acustommed too.
NITEMARE wrote:WinTex is a VB application, and doesn't require a fancy installer.
Must DL VBRUN300.DLL
If it had an installer then you wouldnt have to go through all that trouble.
The whole point is that applications written in VB6 inherit
way too many dependancies. These dll(s) as ocx(s) do all the work of interfacing with the operating system for the advantage of ease of use, unlike VC++ which interfaces with the OS directly through the windows API (eg. user32.dll kernel32.dll etc) to achieve similar functionality. So the actual dependancies are the OS system files. Sad to say but this is how it is. Why would I choose to code a GUI (VC++) when I can visually create it (VB) with very minimal coding. It is much faster to create a windows GUI application in VB than it is in VC. VC may be good to code gaming engines, writing drivers or building system tools (eg. Scandisk, Anti-virus)
but for simple GUI applications or database applications VB is far better suited for this as the tools available make building these types of applications
much faster than VC.