Search:

Type: Posts; User: youngbucks

Page 1 of 11 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    41
    Views
    62,084

    Re: [2008] [VB.NET] Winrar DLL Simple Usage

    If you want to extract rar and zip you can use the Unrar command line and package it with your application.

    http://www.rarlab.com/rar_add.htm
  2. Replies
    20
    Views
    1,834

    VS 2008 Re: Patching a file.

    He replies to every response with the same question; How? If he doesn't understand what your telling him what else is their to do? Provide a different solution. If your so adamant that he understands...
  3. Replies
    20
    Views
    1,834

    VS 2008 Re: Patching a file.

    Yes i read the thread, and he doesn't understand a word you guys are saying so doesn't leave much options.



    Exactly.

    People don't mind pointing you into the right direction, just don't...
  4. Replies
    20
    Views
    1,834

    VS 2008 Re: Patching a file.

    You guys are giving him more than he can handle :P Another patching method you can try is to use the CRC method. Calculate the CRC of the old file and the latest one and compare them, if they differ...
  5. Re: How do you universally save a file to the desktop location across different OS's?

    This should fix you right up :)
    Dim DesktopDirectory As String = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)
    File.WriteAllText(DesktopDirectory &...
  6. VS 2008 Thread Abort Exception while using background worker

    I'm working on a web application that uses the web browser control to get and set info from my website. The content on the site is pulled from different pages and the data the application stores...
  7. Replies
    41
    Views
    62,084

    Re: [2008] [VB.NET] Winrar DLL Simple Usage

    Download the WinRAR dll package from my first post and extract it to a folder. In it will be a folder called "x64" and it a 64 bit version of the dll.
  8. VS 2008 Change Web Browser global header/user agent

    I'm trying to use the Web Browser control to navigate to my sites but they require a specific header and the problem im having is that when the web browser refreshes, the header/user agent changes...
  9. Replies
    0
    Views
    539

    VS 2008 WebBrowser Navigate

    I'm using WB.Navigate to browse some websites in my form.

    I have it send a custom user agent.

    Is there way to add to get the default header value, set the user agent, and keep the cookies...
  10. VS 2008 Re: Old Graphics is still drawn on form resize

    That did the trick, thanks alot.
  11. VS 2008 [Resolved]Old Graphics is still drawn on form resize

    I'm creating a custom form that is composed of a inner stroke, outer stroke, and rounded rectangular background. When the form is initially drawn its drawn fine without errors but once i re size it,...
  12. Replies
    41
    Views
    62,084

    Re: [2008] [VB.NET] Winrar DLL Simple Usage

    In the UnrarNET.dll or Decompression class it checks if a password is needed through:


    If mPassword <> "" Then RARSetPassword(mRARHandle, mPassword)
    Dim hr As New RARCallBack(AddressOf RARCB)...
  13. Replies
    41
    Views
    62,084

    Re: [2008] [VB.NET] Winrar DLL Simple Usage

    There is a value that is returned when you send the password, use that and Create an array for your passwords and loop through it.
  14. Replies
    0
    Views
    510

    VS 2010 Mixing audio tracks

    Ive been doing alot of research and can't seem to find what im looking for so maybe someone can point me in the right direction. I'm looking to create a program that can take two audio sources take a...
  15. Replies
    8
    Views
    1,395

    VS 2008 Re: [API] Getting HTML from URL

    Thanks alot, ill give it a shot.

    Edit* Works, thanks alot :)
  16. Replies
    8
    Views
    1,395

    VS 2008 Re: [API] Getting HTML from URL

    Its setup to require the browser signature so unless i provide it with one it will return:
    "<br /> <b>Notice</b>: Undefined index: HTTP_USER_AGENT in <b>/home/ftgamers/auth/validate.php</b> on...
  17. Replies
    8
    Views
    1,395

    VS 2008 Re: [API] Getting HTML from URL

    I have a php file set up on my server that you send the Username Password and Hash signature to and it checks it and returns information. I am trying to get what is returned from it.

    The link to...
  18. Replies
    8
    Views
    1,395

    VS 2008 [RESOLVED] [API] Getting HTML from URL

    I'm using the API function Internet.OpenURL (which can be found here http://binaryworld.net/Main/Api.aspx?L=18 ) to get information returned from a php file i have set up on my server. Now, the...
  19. Replies
    0
    Views
    2,548

    Getting HTML from URL using API

    Accidentally posted in the wrong section. Could you please delete this. Thank you.
  20. Replies
    41
    Views
    62,084

    Re: [2008] [VB.NET] Winrar DLL Simple Usage

    The decompressor class given with the solution has the control for the password already in it so for dynamic passwords you simply need to create a form to pass the password through (via String). Add...
  21. Replies
    41
    Views
    62,084

    Re: [2008] [VB.NET] Winrar DLL Simple Usage

    Yes i do, bare with me for a couple minutes while i re-install Visual basic express.
  22. Replies
    41
    Views
    62,084

    Re: [2008] [VB.NET] Winrar DLL Simple Usage

    Yes it is possible, If the passwords for the rar are static you can hard code it and it will automatically process them. If they are dynamic you can use the password control to input it manually.
  23. Replies
    0
    Views
    626

    VS 2008 Ways to get download speed

    Im looking for a way to get the speed at which im downloading a file. Ive been using the Timer to make my little way of getting it by how much it downloads in chunks but inaccurate and im looking for...
  24. VS 2008 Re: Check for file on web and Also exit a loop

    Do While i < 0
    'code goes here
    Loop

    Take that as an example. If i was 3 and i wanted to skip all the code on the first loop how would i do it? Like a 'next loop' kind of...
  25. VS 2008 Re: Check for file on web and Also exit a loop

    I know of that method also but thats not my main issue here. Im trying to figure out how to continue looping even though the exception is being thrown and until it finishes looping then it exits.
  26. VS 2008 Re: Check for file on web and Also exit a loop

    Im using a class i wrote to go through a list and download the according file but i want to check to see if the file exists first. How would i check to see if it returned a 404 error?
  27. VS 2008 [RESOLVED] Check for file on web and Also exit a loop

    How would i check to see if a file exits on a website before attempting to download it?

    Also in my code ive enclosed the instructions in Do loop and if the file doesnt exist i want to skip the...
  28. Re: how to get started with Multi Media Control

    Well theres alot of posts around here that can help you. Use the search button :) As for video files look for the windows media player class. You might want to take a look at these while your at it:...
  29. VS 2005 Re: MS Chart Control for .Net framework 3.5

    As urgent as it may be you will find the response you will get by spamming of no avail.

    Heres what i googled:
    http://code.msdn.microsoft.com/mschart...
  30. Replies
    4
    Views
    742

    VS 2008 Re: Error fires off yet ex is nothing?

    Me either. It has me perplexed at the moment. Heres a screenshot of it throwing the exception:
    http://img245.imageshack.us/img245/4284/40560504.th.png

    And here it says ex is nothing:...
  31. Replies
    4
    Views
    742

    VS 2008 Re: Error fires off yet ex is nothing?

    Friend Function ReadXML(ByVal XML As String) As Boolean
    Try
    If Not IO.File.Exists(XML) Then RaiseEvent ErrorOccured("Version File cannot be found!")
    Dim m_xmlr As...
  32. Replies
    4
    Views
    742

    VS 2008 Error fires off yet ex is nothing?

    Im parsing through a xml file and a error is thrown and the event is fired off but the exception is still nothing even though it tells me theres an exception. :S

    Friend Event XMLError(ByVal ex As...
  33. VS 2008 Re: Trimming the beginning of a string

    I used your same method, the problem was minor:
    FullPathFile & vbCrLf & FullPathFile.Substring(FullPathFile.IndexOf("\War Rock") + 9)

    Since the name of the folder will be static i can just set...
  34. VS 2008 Re: Trimming the beginning of a string

    Thanks. Got it :)
  35. VS 2008 [RESOLVED] Trimming the beginning of a string

    I have a string:
    *Local Disk*:\Users\*UserName*\Directory\Test\File.txt

    and im trying to get rid of everything behind the "Test" so it would show everything after.

    so the string would look...
  36. VS 2008 Re: Getting the current Directory of a file

    I was new to your way of doing it sorry. But now i understand what you were telling me to do and that does the job perfectly. :)



    As does this :)

    Im sorry for the confusion guys. I was...
  37. VS 2008 Re: Getting the current Directory of a file

    That won't work as im looking for a more dynamic way. The directory wont always be Test.



    I get the same error as above with this one. The folder where the files are located is...
  38. Replies
    7
    Views
    895

    Re: Auto-Size HELP

    Dim intX As Integer = Screen.PrimaryScreen.Bounds.Width
    Dim intY As Integer = Screen.PrimaryScreen.Bounds.Height

    That gives you his monitor size. On Maximize you use that to set the size.
  39. Re: Download a list of files and report Progress

    No prob. You just need one block from that and you have your download speed ;)
  40. VS 2008 [RESOLVED] Getting the current Directory of a file

    Im looking for a way to get the parent directory of a file. Ive tried using Directory.GetParent() but its not doing what i want it to do. For example lets say i have 3 files:

    C:\Test\1.txt...
Results 1 to 40 of 427
Page 1 of 11 1 2 3 4



Click Here to Expand Forum to Full Width