Search results for query: *

  1. Vishal Rana

    Copy protect a program

    If you are looking to create and check License keys fro your application, then this might help: http://www.codeproject.com/KB/install/VB_KeyCode.aspx
  2. Vishal Rana

    Question attempting to create or open the web project

    Try these: http://codingforums.com/archive/index.php?t-66560.html http://bytes.com/forum/thread555908.html
  3. Vishal Rana

    Vs.netinstallation

    I have VS2008 Express and professional installed on the same XP SP3 machine and both seem to work fine... however initially I did face some problems as the VS2008 Express WPF Designer settings got corrupted on installing VS2008 Professional so I had to restore the settings.
  4. Vishal Rana

    Anyone using Activa CoolStorage ORM, got some questions

    Probably the following would be better options: http://www.forum.activa.be/ http://www.codeplex.com/CoolStorage http://www.blog.activa.be/
  5. Vishal Rana

    Any tools out there that can help with writing documentation?

    Help Authoring Tool (HAT) Comparison Matrix
  6. Vishal Rana

    Question Datetimepicker control is grayed out

    Try this: http://www.codeproject.com/KB/webforms/DateTimePicker.aspx
  7. Vishal Rana

    Question Custom Setup Wizard's

    You will have to create a Setup Project... Add a new project to your solution and select the 'Setup and Deployment' project type (It will be under 'Other Project Types' node) instead of the VB ones, from here you should be able to select a 'Setup Project'
  8. Vishal Rana

    Question Combo Box Fill

    Maybe you can use a SQL Query to populate the DataSet binded to the ComboBox. Something like: SELECT DISTINCT ColumnName FROM TableName;
  9. Vishal Rana

    what is meant by ADODB.connection?

    Read this: ADODB Services in .NET Applications using VB.NET
  10. Vishal Rana

    Make Licence Keys

    Try this License Key Generator. With this program and library you can create the key and later read it in to validate that the correct key was used.: http://www.codeproject.com/KB/install/LicenseKeyGeneration.aspx
  11. Vishal Rana

    My set up works 3 times or what ever i given

    If you want to limit the number of times a setup/installer can be run on a particular machine then following link will be helpful. Although this link is specific to SetupFactory deployment tool, however it should give you good pointers. http://www.indigorose.com/forums/showthread.php?t=5019
  12. Vishal Rana

    Question VS 2008 Trusted Form Title

    Maybe it is related to the .NET security settings. Try adjusting the .NET Security using the .NET Framework Configuration Tool | Runtime Security Policy | Adjust Security Zone. Setting MyComputer/Local Computer trust Level to Full.
  13. Vishal Rana

    Question Unpredictable Messageboxes when accessing Outlook in .Net

    I think it is due to Outlook Address Book Security Maybe these links will help: http://www.add-in-express.com/outlook-security/ http://www.slipstick.com/outlook/esecup/apps.htm http://www.prd-software.com.au/prd/support/kb/kbarticle.asp?id=115
  14. Vishal Rana

    Question What database to package with applications?

    Maybe the following discussion can answer some of your questions: http://www.codenewsgroups.net/group/microsoft.public.vb.general.discussion/topic14406.aspx As is suggested whatever strategy you choose will be dependent on what kind of "storage" your application requires and the kind of...
  15. Vishal Rana

    Question How do I display Pictures

    This How To Display an Image from a Database in a Windows Forms PictureBox by Using Visual Basic .NET should give you a good idea:
  16. Vishal Rana

    creating a mailing list form

    Here's an article on How to Create Your Own Mailing List Server with .NET 2.0: Learn how to build your own mailing list server, making use of the new classes located in the System.Net.Mail namespace in .NET 2.0, as well as some techniques to retrieve emails from Outlook...
  17. Vishal Rana

    Recommend a good source control?

    maybe this will be an interesting read: http://www.codinghorror.com/blog/archives/000660.html
  18. Vishal Rana

    General Questions

    Have you tried using the MouseHover event?
  19. Vishal Rana

    Installation Issue - Vb2008

    I think this has already been discussed extensively on the forum. Probably the following link may give you a better idea: http://www.vbdotnetforums.com/showthread.php?t=24433
  20. Vishal Rana

    How to get PID,VID from an USB device

    For Win32_USBHub class, ManagementObject should be able to access the following properties: http://msdn.microsoft.com/en-us/library/aa394506(VS.85).aspx
Back
Top