Forum: Visual Basic 4 / 5 / 6 Aug 10th, 2009 |
| Replies: 4 Views: 545 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... |
Forum: Visual Basic 4 / 5 / 6 Dec 15th, 2007 |
| Replies: 5 Views: 3,057 Thanks for the replies.
I'm familiar with the features of the current ListView, I was just throwing out the question to see if anyone has ran across a nice replacement that does larger icons and... |
Forum: Visual Basic 4 / 5 / 6 Dec 10th, 2007 |
| Replies: 5 Views: 3,057 Any help is greatly appreciated.. |
Forum: Visual Basic 4 / 5 / 6 Dec 3rd, 2007 |
| Replies: 5 Views: 3,057 I just noticed that Firefox has a control that does what I want.. Maybe something is out there.
Basically if you have Firefox go to Tools - Downloads. If you have recent downloads in the list... |
Forum: Visual Basic 4 / 5 / 6 Dec 3rd, 2007 |
| Replies: 5 Views: 3,057 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... |
Forum: Windows Software Jul 10th, 2007 |
| Replies: 51 Views: 32,824 It would help to get a link to this amazing program you speak of. Without it we are lost in the dark. I may find something with a google search but wouldn't it make sense for us to avoid that step... |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2007 |
| Replies: 5 Views: 2,988 Sorry, I forgot to post that the ListView can get the grid lines by going to the properties and selecting "GridLines" and change the value to True. If you Right-Click on the control and click... |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2007 |
| Replies: 5 Views: 2,988 '************************************************************
lvList.ListItems.Add lvList.ListItems.Count + 1, , "Data: " & CStr(irows)
'************************************************************... |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2007 |
| Replies: 5 Views: 2,988 I recommend using something other than the flexgrid. I use the listview all the time. Setup the listview like below and add items.
With lvList
.View = lvwReport
.FullRowSelect = True... |
Forum: Visual Basic 4 / 5 / 6 Dec 17th, 2006 |
| Replies: 8 Views: 15,788 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... |
Forum: Windows Software Nov 30th, 2006 |
| Replies: 51 Views: 32,824 Data Backup:
Syncback Freeware - http://www.2brightsparks.com/downloads.html
Sorry I don't have more but I must thank you for the above list. I will be looking into those. |
Forum: Visual Basic 4 / 5 / 6 Nov 29th, 2006 |
| Replies: 1 Views: 2,876 You can use ShellExecute to do this and also pass other options to the receiving application. View below.
'Put this at the top of your form or module
Private Declare Function ShellExecute Lib... |
Forum: Visual Basic 4 / 5 / 6 Nov 29th, 2006 |
| Replies: 3 Views: 2,333 If I understand correctly. You can use the stored system variables:
Debug.Print Environ("PROGRAMFILES")
'OR if you want just the drive letter you can also use
Debug.Print... |
Forum: Visual Basic 4 / 5 / 6 Nov 28th, 2006 |
| Replies: 3 Views: 924 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... |
Forum: VB.NET Nov 26th, 2006 |
| Replies: 3 Views: 1,082 I don't think posting in multiple forums is recommended either:
http://www.daniweb.com/techtalkforums/thread62758.html |
Forum: Visual Basic 4 / 5 / 6 Nov 26th, 2006 |
| Replies: 2 Views: 986 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. |
Forum: Visual Basic 4 / 5 / 6 Nov 25th, 2006 |
| Replies: 5 Views: 1,903 I had to learn myself how to communicate via TCP a while back. I visited www.vbip.com (http://www.vbip.com) and read their articles and downloaded their vb6 sockets code. They have a great test... |
Forum: Visual Basic 4 / 5 / 6 Nov 25th, 2006 |
| Replies: 1 Views: 1,993 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.
Private Sub Form_QueryUnload(Cancel As Integer,... |