Search:

Type: Posts; User: SavedByGrace

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: Listview Drag & Drop - Items go to end instead of where dragged

    I'm not sure if you are posting to the right thread. The code that you posted as my "original solution" is not a part of the thread at all. Also, I had posted the solution to the problem I was...
  2. Replies
    4
    Views
    5,614

    Re: Downloading file using httpwebrequest

    Thank you Inferrd, that makes a lot of sense. I was able to find a solution. I appreciate everyone's advise and time. I have posted a snippet of the code I used to address the problem for anyone that...
  3. Replies
    4
    Views
    5,614

    Re: Downloading file using httpwebrequest

    I was thinking the same and I've saved the stream to a file, but I always get an error saying it's corrupt, etc. Maybe, I'm doing it wrong, below is the code I used to write the stream to a file:

    ...
  4. Replies
    4
    Views
    5,614

    Downloading file using httpwebrequest

    I am trying to download a pdf file from an aspx page which requires cookies and POST data. I've managed to get a response with the raw unformatted pdf data, which as you can imagine isn't what I...
  5. VS 2013 Re: Populating Treeview with sub-directories and .txt files

    Thanks paul, I trimmed down the code you gave to what would be usable in my application and I am still getting weird behavior. It lists the initial directories within the target directory (in my...
  6. VS 2013 Populating Treeview with sub-directories and .txt files

    I am working on a project in which I am trying to display the sub-directories and the text files (only) within those sub-directories contained inside Application.StartupPath & "\Dat\". I haven't had...
  7. VS 2010 Re: Keep label from being transparent on a transparent form

    Thanks Shaggy. I should point out that I will be going against the grind and using the label's events. I will be making it draggable and using both right and left click events.
  8. VS 2010 Re: Keep label from being transparent on a transparent form

    Hmm, I'm not sure where you are picking up the confusion. But I suspect it might be the following that is causing confusion:
    In the first post I said:
    "I am trying to keep the opacity of a label...
  9. VS 2010 Re: Keep label from being transparent on a transparent form

    I found that if I set the form's transparency key and form's color to an odd ball color and the label's to a different then the label is unaffected by the form's transparency. Unfortunately, I can't...
  10. VS 2010 Keep label from being transparent on a transparent form

    I'm sure this is a simple issue. But, I haven't had the need to work with transparent forms and now that I am, I'm stuck on this trivial issue. I am trying to keep the opacity of a label at 100% on a...
  11. VS 2013 Re: Sending a mouse click to another window using it's handle

    Andyroid
  12. VS 2013 Re: Sending a mouse click to another window using it's handle

    Yeah, I thought so too, but none of the keys were sent. With the app being brought to the front, I tried:






    and a few others without success :(
  13. VS 2013 Re: Sending a mouse click to another window using it's handle

    Yeah, I thought so too, but none of the keys were sent. With the app being brought to the front, I tried:






    and a few others without success :(
  14. VS 2013 Re: Sending a mouse click to another window using it's handle

    Update:

    I managed to locate the window using the findwindow api and brought it to the foreground using SetForegroundWindow(). However, I still am unable to successfully send a click to the window...
  15. VS 2013 Re: Sending a mouse click to another window using it's handle

    Hi jmcilhinney,
    I've tried several flavors of that and I can click the area I want, but my problem is the application is in an Oracle VM Virtualbox and the click doesn't send through to the...
  16. VS 2013 Sending a mouse click to another window using it's handle

    I need to send a mouse click to another window using it's handle. The click needs to go to specified coordinates within the window (ie x,y). I have tried several different methods but unfortunately,...
  17. VS 2010 Re: [RESOLVED] Sorting a multidimensional array

    Cool, thanks for the example of how to work with my large list and suggestion.
  18. VS 2010 Re: [RESOLVED] Sorting a multidimensional array

    What I am trying to say is from the way his example code is structured (mainly the list part - see snipet of his code below), I would have to type 5 lines of code for each city with it's state and...
  19. VS 2010 Re: [RESOLVED] Sorting a multidimensional array

    Thanks for the suggestion dday9, however, I think you missed the part where I said:



    and that my example was



    From what I can tell, If I used your example, I would have to type out the...
  20. VS 2010 Re: Sorting a multidimensional array

    After posting this, I did some research and found something that I modified to work with what I am trying to do. I have posted the code below for anyone that may need the same or a similar solution...
  21. VS 2010 [RESOLVED] Sorting a multidimensional array

    I am hoping someone can point me in the right direction. I am trying to sort cities by population. The cities are stored in a multidimensional array from a file:

    Example (using only 3 of the...
  22. Re: I'm stumped! (The server committed a protocol violation...)

    Well Inferred, I do believe that you helped point me in the right direction, I started to fiddle with the app.config file and noticed it was titled app1.config, I regenerated another called...
  23. Re: I'm stumped! (The server committed a protocol violation...)

    hrmm, yeah that's odd, because that method is the most accepted...what version of VB.net did you use - I'm using VB 2010 - maybe that has something to do with it.
  24. Re: I'm stumped! (The server committed a protocol violation...)

    I tried a few methods: (Try...Catch as exception...end try, On Error Resume Next, On Error Goto...Handler:...Resume) - but without any luck.
  25. Re: I'm stumped! (The server committed a protocol violation...)

    There's got to be a way. If the same image is downloadable via all browsers, there has to be a way. Unfortunately, I just don't know what that way is - maybe if there is a way to monitor what is...
  26. Re: I'm stumped! (The server committed a protocol violation...)

    I ran a packet sniffer to see what was going on and in chrome, I made a request for the pic file and it grabs it ok, however, immediately afterwards it makes a request for the favicon (eg....
  27. [RESOLVED] I'm stumped! (The server committed a protocol violation...)

    When trying to download a picture I am getting the following error:

    The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF

    After some research, I...
  28. Re: Selecting a Radio Button in the Webbrowser control

    the html code is server side (I have no control over it) - my code does not click all of the radios, just the desired radio button ....below is a rough example of what I ultimately am using, it just...
  29. Re: Selecting a Radio Button in the Webbrowser control

    Any suggestions?
  30. Re: Selecting a Radio Button in the Webbrowser control

    Just a quick note, I whipped something up that allows me to check the first radio button, which in this case is what I need to do, but I'd like to know if there is a better way to approach this in...
  31. Selecting a Radio Button in the Webbrowser control

    I'm kind of stumped :confused:, each of the radio buttons have the same name, id, and values, How would I go about selecting one or the other (See HTML code below)


    <td><input...
  32. VS 2010 Re: Set Text in textbox within an iframe

    Thank you for the suggestion kevininstructor. that looks like a great solution, unfortunately, I do not have control over the server's code.
  33. VS 2010 Re: Set Text in textbox within an iframe

    Thank you for the example Inferred, I tried it but got an access error, added an "On Error Resume Next" since there were multiple frames, some of which were connected to a different host/site which...
  34. VS 2010 Re: Set Text in textbox within an iframe

    That's a good suggestion, but, I don't have any control over the iframe code. :(
  35. VS 2010 Re: Set Text in textbox within an iframe

    -Editted Out-

    God is good.
  36. VS 2010 Re: Set Text in textbox within an iframe

    I am working with a rather unique concept and I am required to guard the details as much as possible. I was hoping that the example HTML code above which mirrors the HTML/iFrame code that I am...
  37. VS 2010 Re: Set Text in textbox within an iframe

    Just a quick update, I still have not found an answer to this, I'd appreciate any suggestions that anyone might have.
  38. VS 2010 Re: Set Text in textbox within an iframe

    Anyone have any suggestions?
  39. VS 2010 [RESOLVED] Set Text in textbox within an iframe

    I have been struggling with this for quite some time and just cannot work this out. I am trying to set text within a textbox that is within an iframe which has no name. I tried several different...
  40. VS 2010 Re: How to properly backup projects (Had a Major Loss, need to make sure never again!

    Thank you for the suggestions. They are very helpful.
Results 1 to 40 of 130
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width