No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
12 Posted Topics
Re: You can use this open source solution so you can change the code that protects your software so it isn't as easy to crack, because every program is never 100% protected. It just depends on how "wanted/needed" your application is in the pirate community. Anyways, I've been using it alot … | |
Re: Data Backup: Syncback Freeware - [url]http://www.2brightsparks.com/downloads.html[/url] Sorry I don't have more but I must thank you for the above list. I will be looking into those. | |
Re: VB6 will not allow you to do this, you should look into .Net that allows you to have an AppDomain Shadow Copying that you can run your application from "C:\MyApp\" but the binaries get copied then loaded into a CachePath (which you specify) where your application is actually running. This … | |
Hello, I'm just curious if anyone out there has ran across a nice ListView control replacement that does LARGE icons? What I'm trying to do is display decent size icons on the left of the control and then on the right side have a text area with title that all … | |
Re: I had a intructor in my technical college that needed to teach Beginners C++ to us because of an unforunate accident that didn't allow the original instructor to teach it. Basically he bought books and read them and picked one for the class and was one or two steps ahead … | |
Re: I recommend using something other than the flexgrid. I use the listview all the time. Setup the listview like below and add items. [code=visualbasic] With lvList .View = lvwReport .FullRowSelect = True .HideColumnHeaders = False .HideSelection = False .ColumnHeaders.Add 1, , "Col 1" .ColumnHeaders.Add 2, , "Col 2" .ColumnHeaders.Add 3, … | |
Re: If I understand correctly. You can use the stored system variables: [code] Debug.Print Environ("PROGRAMFILES") 'OR if you want just the drive letter you can also use Debug.Print Environ("HOMEDRIVE") 'OR Debug.Print Environ("SYSTEMDRIVE") [/code] Find a large list of these variables here and what they are all about: [URL]http://vlaurie.com/computers2/Articles/environment.htm[/URL] | |
Re: You can use ShellExecute to do this and also pass other options to the receiving application. View below. [code] 'Put this at the top of your form or module Private Declare Function ShellExecute Lib "shell32.dll" _ Alias "ShellExecuteA" (ByVal Hwnd As Long, _ ByVal lpOperation As String, ByVal lpFile As … | |
Re: I don't think posting in multiple forums is recommended either: [url]http://www.daniweb.com/techtalkforums/thread62758.html[/url] | |
Re: Are you talking about database relationships? I'm not quite understanding. Plus, asking for exact code will most likely not happen. We are here to help not do stuff for you. | |
Re: I had to learn myself how to communicate via TCP a while back. I visited [URL="http://www.vbip.com"]www.vbip.com[/URL] and read their articles and downloaded their vb6 sockets code. They have a great test bench application that you can test the connection settings/etc before you even dive into code. You should check that … | |
Re: Hi there. The only way I know of how to pick up on the Windows log off event is to have code in the Query_Unload of the form. See below. [code=visualbasic] Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) 'Unload modes '0 The user has chosen the Close command from … |
The End.