Search:

Type: Posts; User: Inuyasha1782

Page 1 of 13 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    569

    [2005] Request Webpage

    How would you request a webpage in GZIP format and then decompress it? I just want to request the page in GZIP format and then decompress the contents to display the contents normally to the user....
  2. Replies
    7
    Views
    6,743

    Re: VBScript to EXE

    I got VB6 on my computer, i'll try the method you gave and i'll update if it works.
  3. Replies
    7
    Views
    6,743

    Re: VBScript to EXE

    Anyone else? I really need to get this to an EXE soon. I have someone expecting it.

    Thanks.
  4. Replies
    7
    Views
    6,743

    Re: VBScript to EXE

    The script is formless, I don't want forms.

    I do have Visual Studio 2005 Pro, can I do it with that?
  5. Replies
    7
    Views
    6,743

    VBScript to EXE

    Hello all.

    I'm looking for a very simple program that will convert a VBScript into an EXE. I'm not looking for a full IDE or anything, the smallest that's out there.

    Can anyone point me in the...
  6. Re: [2005] Returning all rows from MySql Query

    I see your point.

    Thanks for sharing, never knew about that string manipulation in your second snippet. Thanks for the references as well :)

    Cheers,
    Josh
  7. [Resolved][2005] Returning all rows from MySql Query

    This is an interesting one. I'm communicating with a MySql database on my computer via a small dll you can download from the MySql website. It basically links MySql and .NET. The code is self...
  8. Replies
    5
    Views
    842

    Re: [2005] Setting file write time

    Still doesn't work. Says



    *EDIT*

    Tryed this as well:

    Dim realdate As New Date
    DateTime.TryParse(wdate, realdate)
  9. Replies
    5
    Views
    842

    [2005] Setting file write time

    Hello. I have a program that downloads and updates file based on the last time they were updated. This is determined using the date the file was last written too. Well, since opening up and writing...
  10. Replies
    2
    Views
    568

    [2005] Error creating the form

    Well, this error just popped out of nowhere, and I have no idea why:



    That has got to be the worst description of an error I have seen yet. There are alot of things that happen when creating...
  11. Re: [2005] Skinning applications, without external tools

    Well the fact is, my program is going against another's, and to be truthful mine is more effecient, but the other has the great UI. I'm not looking to create another Winamp here, but more on the line...
  12. [2005] Skinning applications, without external tools

    I have googled all the different ways of searching for tutorials on skinning in Visual Basic .NET but I cannot seem to find anything interesting. All I get back is freeware/shareware skinning...
  13. Replies
    1
    Views
    14,127

    Add byte array to a byte array

    I cannot figure out a successful way to add a byte array onto a previous byte array. I can't seem to get the whole concept under control in my head, which makes it a whole lot harder. I can't even...
  14. Replies
    0
    Views
    737

    Using proxy with TCPClient

    Can anyone explain how to use a proxy with the TCPClient? I have a class that downloads webpages via the TCPClient, and I would like to include proxy support. Any help?

    Thanks.
  15. Replies
    14
    Views
    989

    Re: File I/O Help

    If you look in any HTTP META tags they always include a description and some key words. There is nothing going wrong, that's the problem. I can message box strContent, put it in a textbox, and...
  16. Replies
    14
    Views
    989

    Re: File I/O Help

    You lost me. I see that works, but what does it have to do with my code not working?

    This all my code:

    Dim strbuff As String = ""
    Dim strContent As String = ""
    For x...
  17. Replies
    14
    Views
    989

    Re: File I/O Help

    MsgBox(strContent)
    IO.File.AppendAllText(Application.StartupPath & "\urls.txt", strContent)

    Does not work, I see strContent content in the messagebox. Do you want a screenshot? It's not...
  18. Replies
    14
    Views
    989

    File I/O Help

    Here is my code:

    Dim objReader As New StreamReader(Application.StartupPath & "\urls.txt")
    Dim strContents As String = objReader.ReadToEnd()
    objReader.Close()

    ...
  19. Replies
    14
    Views
    1,816

    Re: Invalid Operation Exception

    Did anybody have any more information on this?
  20. Replies
    14
    Views
    1,816

    Re: Invalid Operation Exception

    Here's SS's in a doc. Contains the one he get's on his main computer (The first one) and the one he get's on his laptop (Second one). Both of them run Windows XP Pro. I run Windows XP Home.
    ...
  21. Replies
    14
    Views
    1,816

    Re: Invalid Operation Exception

    I will ask the him to get a screenshot for me. He got the information from pressing "debug" when the message of "Windows has to close this program now" that people normally get on an unhandled...
  22. Replies
    14
    Views
    1,816

    Re: Invalid Operation Exception

    The installer didn't worked. It checked for needed files and stuff, and after that he said it still crashed from the same error. I have no idea why it would do this, as it works perfect on my...
  23. Replies
    14
    Views
    1,816

    Re: Invalid Operation Exception

    Where is this clickonce option at?
  24. Replies
    14
    Views
    1,816

    Re: Invalid Operation Exception

    In Visual Basic 6 there was an internal wizard to create a setup exe, is this the same for .NET? I am using Visual Basic 2005, I searched google but didn't find anything. Do I need a different IDE...
  25. Replies
    14
    Views
    1,816

    Re: Invalid Operation Exception

    How would I pack it in a setup wizard?

    Also, how would I know which files I should add?
  26. Replies
    14
    Views
    1,816

    Invalid Operation Exception

    Okay, a person is trying to run my program (which works perfect on my computer) and keeps getting an error when it opens up. The error is:

    EventType : clr20r3 P1 : delicioso.exe P2 :...
  27. Replies
    0
    Views
    457

    Accessing https using sockets

    Right now I have my own socket class that easily connects to a website, and get's or post's content. It works great, and even handles cookies. What I now wish to implement is for it to be able to...
  28. Re: Checking if a user has .NET installed

    I'm using 2005, how do you create a setup project? My program does not need to be installed, it's just a sinlge EXE, all I want to do is install the framework if it's not already installed.
  29. Checking if a user has .NET installed

    When a person runs my program, and does not have the latest version of .NET installed, it gives them an error and says they need to go download the latest version. Well, I don't want that. I want my...
  30. Replies
    5
    Views
    613

    Re: Wait for a thread

    Okay after an hour of searching I have this:

    Private Sub backgroundWorker1_DoWork( _
    ByVal sender As Object, ByVal e As DoWorkEventArgs) _
    Handles backgroundWorker1.DoWork

    ...
  31. Replies
    5
    Views
    613

    Re: Wait for a thread

    Could you give an example on how this works?
  32. Replies
    5
    Views
    613

    Re: Wait for a thread

    Well, that didn't work. Inside of my CheckUpdates() function I update some of the form values. Particular a download progress bar so that the user knows about how much more time is left. Well,...
  33. Replies
    5
    Views
    613

    Wait for a thread

    I have a really long function that could take at least 20-30 minutes to finish. What it does is checks files on a remote server and compares them to files on the clients server and updates as needed....
  34. Replies
    2
    Views
    520

    Running seperate EXE

    Here is my code:

    Private Sub btnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click
    updates.LoadDetails()
    Dim paths() As String =...
  35. Replies
    1
    Views
    1,296

    Loop through a TreeView

    How would you loop through all the nodes (including children nodes) in a treeview? I can loop through all the main nodes, but it's all the children that i'm not sure about. Can anyone give me a...
  36. Re: [2005] Parsing and setting into TreeView in VB.NET

    Okay, I almost have it working, but i'm a little stuck. Since the tree stucture is like this:

    Item1
    -Item2
    --Item3

    Does it mean you have to access item3 like this?
    ...
  37. Replies
    2
    Views
    526

    [2005] Check if object is nothing

    How do you check if an object is nothing? I tryed using If item = nothing, but it won't let me compare it with any object. What do I need to do?
  38. Re: [2005] Parsing and setting into TreeView in VB.NET

    You make it sound easy, when it's really not <_< Well, mabye you can understand it easily, but it's giving me alot of trouble. How could I add each of these into the treeview like I said before using...
  39. [2005] Parsing and setting into TreeView in VB.NET

    I have seen a few snippets on using the TreeView, but i'm still a little confused, so I'm asking if someone can kindly create a quick sample snippet for me, and comment it. For the basic snippet, I...
  40. Re: [VS2005] Creating and using OCX (ActiveX) with .NET

    Last bump :p

    Can someone at least verify that it's not possible to create any type of OCX with VB.NET? And if you can, provide me with any knowledge you may have about how to do what I did in my...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width