Search results for query: *

  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.)

    Thank you! oh by the bay... would ditching the Windows form and sticking it a console app make it go any faster?
  3. 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...
  4. Vermiculus

    Help with calculating pi in code!!

    Inertia is right. You do need to work on the code yourself, but I will give you a hint in psuedocode Dim pi As Double = 1 ' seed pi Dim i As UInt16 = 0 ' seed the index While i < 100 ' or however many times you want this process to be repeated i += 2 'count by twos to get only odd numbers pi...
  5. Vermiculus

    Question File Type Associtions

    all right... thank you!
  6. Vermiculus

    Question File Type Associtions

    Interesting... I didn't know that about VS files... Could you elaborate on the MSI method? the whole Setup project thing is still pretty knew to me..
  7. 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...
  8. Vermiculus

    What If You Programmed At Young...

    You should probably go into a native language like C++ or plain C... The .NET Framework is very constricting when you are for hire. It's best to go into these things early, so you can compile 'plug 'n' play' programs... just a thought
  9. Vermiculus

    Question Char->Hex Code

    Resolved! To see the resolution, please visit Char->Hex Code - Xtreme Visual Basic Talk
  10. Vermiculus

    What If You Programmed At Young...

    I started when I was that young, too, but I could never find a client of sorts. Even still, people don't trust 16-year-old kid to do their programming for them... How do you find a job, or do you do your work pro bono?
  11. 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...
  12. Vermiculus

    Question Event Handler for Maximization?

    My Problem: A Graphical Approach :) no workie. i mean, it works when the window is resized (imagine that?) but not when it is maximized... after I moved el splitter...
  13. Vermiculus

    Question Load an RTF into an RTB Control from Resources

    oh sorry i forgot about this thread! Thanks for all your help! I finally got it to work. Is there any way to disable selection in the RTB?
  14. Vermiculus

    Question Event Handler for Maximization?

    okay so i found something that worked...but my base problem still remains i should probably tell you that Whenever the user resizes the form, it goes all...funky. I mean, my program is founded on the awesomeness of TabPages, but so many TabPages is having a bad effect. The borders of the tab...
  15. 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...
  16. Vermiculus

    Free Equation Grapher

    I've been experiencing with ZedGraph...I haven't really looked into it though but you might want to try it out. :)
  17. Vermiculus

    Question Run an exe or msi added to resources?

    Resolved Awesome! Thanks!
  18. Vermiculus

    SplitContainer with maximise/minimise buttons on splitter bar?

    neat! that's pretty cool
  19. Vermiculus

    Question Load an RTF into an RTB Control from Resources

    arg! PrivateSub lb64deflist_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lb64deflist.SelectedIndexChanged Dim Path AsString = "" Dim FileType As RichTextBoxStreamType = RichTextBoxStreamType.RichText SelectCase lb64deflist.SelectedIndex...
  20. Vermiculus

    Question Run an exe or msi added to resources?

    Root problem Resolved, but still curious I've successfully created my first fully functional setup! huzzah! but I'm still curious as to why resources doen't recoginze exe's or msi's
Back
Top