Search results for query: *

  • Users: Vermiculus
  • Content: Threads
  • Order by date
  1. Vermiculus

    Question File Type Associations and the Command Line Argument

    How would that work? I can't find any documentation in the MSDN you know how when you open a txt file it opens up notepad and loads the file? how does the whole 'loading the file' thing work in VB?
  2. Vermiculus

    Question Int, Hex, String -> Binary? (11001101 etc.)

    I am trying to create a compression program that uses the bitstream, but I can't seem to be able to access it through any included function. I know the ---.ReadAllBytes function, but that gives me the integer code for the character, whereas I need the actually binaries...
  3. Vermiculus

    Question File Type Associtions

    Hello! I am trying to create a new file type to go with my program, and create the file associations for it. I thought you could do this from the Project Properties -> My Extensions tab, but it seems I was mistaken.. I'm not exactly sure. But what I want to do is 'protect' a text document by...
  4. Vermiculus

    Question Char->Hex Code

    {HISTORY} I am making a basic utility for Native C++ using the .NET framework (hehehe). The idea is to make a window with all the non-standard characters in buttons and have those buttons insert their characters, etc. That's all working perfectly, but C++ needs a hex code or something similar...
  5. Vermiculus

    Question Event Handler for Maximization?

    I totally just made that word up :) I have a graphics problem in my form and found a way around that, but I can't seem to add the applicable code to some sort of Me.WindowStateChanged Event handler... Is there something I could use that would invoke the code when the window is maximized? there...
  6. Vermiculus

    Question Run an exe or msi added to resources?

    I've tried to do this, but I just can't seem to access it from the My.Resources class. I have other resources such as images and text files, but this exe's and msi's seemed to be stripped out. :( Any suggestions?
  7. Vermiculus

    Question Load an RTF into an RTB Control from Resources

    I'm trying to load a file into the RTB from the resources because I really don't want the file to be edited by the average Joe, but I'm having trouble referencing the file into the RTB.LoadFile() method. Is there any way to do this? I found the tutorial in the help files, but they use a path...
  8. Vermiculus

    Question Is there any way to bundle .NET 3.5 in the installation progam?

    In Visual Studio Professional: I need to bundle the .NET Framework as to not need an internet connection to run setup. I should use the redistributable package, but I don't know how to run it in setup.
  9. Vermiculus

    Question Linking TreeView?

    I have a rather large, multi-level form and I do not wish to seperate it into multiple forms. I have learned that the set of names of the nodes within a TreeView is seperate from the main form; that is to say I can have a node with the same name as tab page. Which is an excellent segue into my...
  10. Vermiculus

    Is it right to give an end-user of a WinForm complete control over its properties?

    Using the PropertyGrid control in VB.NET
  11. Vermiculus

    Question User-Friendly PropertyGrid Control?

    Is there such a thing? Even if there isn't a 'details' view, is there any way to restrict which properties can be changed? How could it be saved for the future? And how could it be reset with a Button.Click event? so confused:confused: I'm actually trying to make a 'Settings' tab in my...
  12. Vermiculus

    Question Debug problems (probably Math syntax)

    I have been over my code several times, but I just cant seem to find the error. It is supposed to be a simple triangle calculator (actually a control for a much bigger project) that solves for any missing parts. This is the SSS (Side-Side-Side) portion of it that does not work... Public...
Back
Top