Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~9K People Reached
Favorite Tags

12 Posted Topics

Member Avatar for chetanpbhalerao

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 …

Member Avatar for sujoy_biswas
-1
5K
Member Avatar for cancer10

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.

Member Avatar for wjay152
1
2K
Member Avatar for drabsch

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 …

Member Avatar for drabsch
0
98
Member Avatar for Sentax

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 …

Member Avatar for Sentax
0
265
Member Avatar for sheida

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 …

Member Avatar for debasisdas
0
106
Member Avatar for intellogo

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, …

Member Avatar for intellogo
0
800
Member Avatar for PaulCC

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]

Member Avatar for QVeen72
0
135
Member Avatar for ctlqt12

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 …

Member Avatar for Sentax
0
99
Member Avatar for dil.om

I don't think posting in multiple forums is recommended either: [url]http://www.daniweb.com/techtalkforums/thread62758.html[/url]

Member Avatar for Sentax
0
102
Member Avatar for dil.om

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.

Member Avatar for Sentax
0
283
Member Avatar for JohnKelly

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 …

Member Avatar for Sentax
0
108
Member Avatar for mahesh_gupta024

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 …

Member Avatar for Sentax
0
335

The End.