Search:

Type: Posts; User: dac9901

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    1,121

    Re: Alt Tab *HELP

    Thanks to everyone's help! I got it resolved. :)
  2. Replies
    7
    Views
    1,121

    Re: Alt Tab *HELP

    Thanks for the reply jmlchimney.

    I want to rotate/flip between two applicaitons.

    For example, I have two active windows. I want the program to rotate between active window 1 and active...
  3. Replies
    7
    Views
    1,121

    [RESOLVED] Alt Tab *HELP

    Hi Everyone,

    I need a simple program that will press ALT-TAB at a set interval(timer) that runs in the background to cycle through the open existing applications.

    I have let's say 4...
  4. [RESOLVED] How to stop software piracy using a license key sytem?

    Hi Everyone!

    I am trying to make a program that will generate a 16-digit license key which incorporates the processor id as part of the 16 digit license key and emails the license key to myself...
  5. Replies
    9
    Views
    1,241

    Re: Saving/Loading a txt file

    Vs 2005
  6. Replies
    9
    Views
    1,241

    Re: Saving/Loading a txt file

    Half,

    They are all saved in a single text file.

    I have only 1 variable on a line

    Variable X
    Variable Y
    etc
    etc
  7. Replies
    9
    Views
    1,241

    Re: Saving/Loading a txt file

    Half,

    I have an application that saves around 50 variables. Is there another alternative to Writeline? I have 3 types of variables Boolean, Single, and String.

    Thanks.
  8. Replies
    9
    Views
    1,241

    Re: Saving/Loading a txt file

    Thanks Half,

    I guess that is a simple as you can get. I wasn't sure if there was a shorter, more robust way to check it. Your suggestion will work. Thanks for the help.
  9. Replies
    9
    Views
    1,241

    [RESOLVED] Saving/Loading a txt file

    Hi Everyone,

    I am saving to a txt file using:

    WriteLine(FFile, X)

    I am opening my txt file using:

    input(FFile, X)
  10. Replies
    3
    Views
    519

    Re: [2005] ComboBox

    Hi Wence,

    To add an item to a combobox:

    combobox.Items.Add("item1")
    combobox.Items.Add("item2")

    To perform an action when the combobox is selected: Select the SelectedIndexChanged event. ...
  11. Replies
    5
    Views
    945

    Re: Aligning Text in a Richtextbox

    Thanks Stanav!

    Here is my working code:

    TempDesc1 = Desc.PadRight(20) + "= " + Temp + " " + Unit + " "
    If Len(TempDesc1) < 35 Then 'if column1 is less than 35 characters then add more...
  12. Replies
    5
    Views
    945

    Re: Aligning Text in a Richtextbox

    I have made some progress splitting up into 2 columns. Here is what is being currently displayed:

    Wind Speed = 120.00 mph Type of Structure = Building
    xx = 25.5 ft ax...
  13. Replies
    5
    Views
    945

    Re: Aligning Text in a Richtextbox

    Anyone have any ideas?

    Thanks,
    Clint
  14. Replies
    5
    Views
    945

    [RESOLVED] Aligning Text in a Richtextbox

    Hi Everyone,

    I have a richtextbox currently writing a string like the one below:

    Wind Speed = 90 mph
    Structure Ht = 50 ft
    ...
  15. Re: Which is more secure against decompiling .Net or VB6?

    RobDogg,

    I will be using a security dongle to protect against license infringement. The Dotfuscator(free edition) can not be distributed with a commercial application. The Dotfuscator...
  16. Re: Which is more secure against decompiling .Net or VB6?

    Are there any obfuscation solutions that can't be easily reversed using a decompiler like Salamander? I am leaning towards developing VB6 instead of .NET unless I can find a decent obfuscation...
  17. Re: Which is more secure against decompiling .Net or VB6?

    RobDogg,

    According to Salamander(Remotesoft) they can decompile even obfuscated exe's. Is there any security that can be added to .NET that can't be decompiled easily? Obviously no source code...
  18. Re: Which is more secure against decompiling .Net or VB6?

    Sspoke,

    What decompiler software do you use to retrieve the source code from .Net. I have created a .net app in the past. I would like to try some security and then try to decompile it. Any...
  19. Re: Which is more secure against decompiling .Net or VB6?

    Thanks for your reply Circuits2.

    I will be using a dongle to protect against license infringement. Do you recommend any software to obfuscate the source code.

    Thanks in advance for your help.
  20. [RESOLVED] Which is more secure against decompiling .Net or VB6?

    Hi Everyone,

    I have programmed in both VB6 and VS2005 .Net. I am creating a new application but can't decide which vb version to use. I've heard .Net app's can be easily decompiled if one does...
  21. Re: splitting a string into 2 variables

    Thanks for the post DigiRev!

    How would I go about ensuring I don't break up a word.

    For Example,

    String 1 = VbForum members are very h

    String2 = elpful.
  22. [RESOLVED] splitting a string into 2 variables

    Hi Everyone,

    I have a string with text("Sometimes this string can be longer than the width of my form therefore I want to print the remaining text to the next line").

    If the string length is...
  23. Re: How to determine if a Tabpage is in a TabControl?

    Kleinma,

    Thanks a bunch. Once again I have learned a lot from this forum. :wave:
  24. Re: How to determine if a Tabpage is in a TabControl?

    Kleinma,

    I am using VS2005 standard edition. Thanks again for the help.
  25. Re: How to determine if a Tabpage is in a TabControl?

    Dear Kleinma,

    I am able set the Tabcontrol visibility to false:

    tabcontrol.visible = False

    I am not able to set a tabpage visibility to false:

    I don't want to hide the whole tabcontrol...
  26. [RESOLVED] How to determine if a Tabpage is in a TabControl?

    Hi Everyone,

    I am using a Tabcontrol with 4 tabpages(tabpage1,tabpage2, tabpage3, & tabpage4). I want to be able to hide certain tabpages and add them back when certain conditions are met.

    I...
  27. Re: How to deploy .net framework 2.0 using INNO setup

    Thanks Kleinma and Mahler for all of your help. I learned a lot about deploying .net 2.0. :wave:
  28. Re: How to deploy .net framework 2.0 using INNO setup

    Please disregard the previous post. After furthur stepping through the code I realized I was placing the dotnetfx.exe file in the wrong folder when I was compiling my inno setup script.

    One...
  29. Re: How to deploy .net framework 2.0 using INNO setup

    Kleinma,

    Once dotnetfx.exe is copied to the temp folder how do I run it in my inno script if the user doesn't have .net 2.0?




    Mahler,

    If I don't include dotnetfx.exe in my inno setup...
  30. Re: How to deploy .net framework 2.0 using INNO setup

    Bmahler thanks for posting your inno script. I compared it to my script and they are identical in the code section. I am still not able to install dotnetfx.exe directly from the cd vs downloading...
  31. Re: How to deploy .net framework 2.0 using INNO setup

    Thanks Kleinma,

    That link was a great resource and I was able to get it to work if the user downloads from Microsoft. I am currently testing to get the inno script to download if necessary from...
  32. Re: How to deploy .net framework 2.0 using INNO setup

    I am using the same parameters that you are using, but it takes the same amount of time to install(4-10min) whether I have the framework on it or not. To simulate a clean machine I go to Add/Remove...
  33. [RESOLVED] How to deploy .net framework 2.0 using INNO setup

    I have developed a windows application using VS 2005 standard edition. I would like to use Inno to create a single setup file that will install dotnetfx.exe if the user's computer doesn't have .net...
  34. Replies
    3
    Views
    1,437

    Re: How to insert a page break in a RichTextBox

    Anyone have any ideas? Thanks in advance for your help :wave:
  35. Replies
    3
    Views
    1,437

    Re: How to insert a page break in a RichTextBox

    Thanks Half for the information. Has anyone implemented a page break in a Rich Text Box? I am sure it can be done but I have found little documentation on how to accomplish this. Thanks
  36. Replies
    3
    Views
    1,437

    How to insert a page break in a RichTextBox

    Hello All,

    How do I enter a page break into a richtextbox?

    I thought this would work but it doesn't:

    RichTextBox1.Rtf = "{/page }"

    Any ideas? Thanks in advance for your help :wave:
  37. [RESOLVED] RichTextBox - What to use instead of Tab()?

    Hello All,

    I have a RichTextBox that I am populating with text and graphics. I would like to have my text look like this(where the = sign starts at same Tab):
    RHt: Ridge Height ...
  38. Replies
    4
    Views
    813

    Re: How to create a rtf?

    What options do I have to place text in a RichTextBox? I can set the text by of the RichTextBox by using rtb.text = "Text in a RTB" or I can use rtb.AppendText("Appending text to the original...
  39. Replies
    4
    Views
    813

    Re: How to create a rtf?

    Does anyone have any ideas for creating a file as a rtf file? Thanks in advance for your help.
  40. Replies
    4
    Views
    813

    [RESOLVED] How to create a rtf?

    Hello Everyone,

    I am using a RichTextBox to display text and graphics. I know how to load a previously created rtf file(rtb1.LoadFile(FileName, RichTextBoxStreamType.RichText)), but how do I...
Results 1 to 40 of 55
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width