Search results for query: *

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

    Resolved Thread and updating Forms

    I'm working on a website where we'll be getting a lot of videos to be uploaded. To keep things simple and secure, I'm just writing VB.net windows app to suck all the files in a directory in, allow you to set some options, and start the encode by spawning a new FFMpeg process. I have a working...
  2. Phix

    Quick Q about running cmd inside the IDE

    Will the commands I send to a Process.Start() be obeyed from within the IDE? For example.. Dim cwin As New ProcessStartInfo Dim p As New System.Diagnostics.Process With cwin .FileName = Environment.SystemDirectory & "\cmd.exe" .Arguments = "/K ffmpeg...
  3. Phix

    Question Class Libraries and Enums

    I'm a huge fan of creating centralized, reusable libraries for any project, be it flash, php, or whatever, so I'd like to make a lib for some common functions I do in VB, and the one I like using so far is centering the Form on the screen when it starts. Problem is, I'm not sure how to...
  4. Phix

    SortedDict n' more confusion

    For getting used to working in vb.net, I'm making a small project management app for myself to set up project directories when I start a new job. I have an XML config file that has the project directories and file names to be created "by default". For each file name I have 3 controls - a...
  5. Phix

    Navigating XML problems

    Is it me, or is XML navigation in VB a little more convoluted than it "needs" to be? I was a little excited to see that XPath was a part of the VB toolbox, but I'm a little confused as to why I'm getting the results that I am. My xml file: <?xml version="1.0"?> <cfg>...
  6. Phix

    Trouble wrapping my head around loop/arraylist

    Hey all- New here, new to VB.net, but no stranger to programming/OOP concepts. I'm just trying to figure out how to adapt my existing knowledge of loops, data population, etc into this rather odd, plain-english language. I'm using VB.NET, Studio 2008, if that helps. I'm attempting to make a...
Back
Top