Search:

Type: Posts; User: TheDeathly

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. Replies
    8
    Views
    19,522

    Re: How to URLencode a URL

    i want to encode plain text into url text.

    EX:
    Plain: I want to encode this.
    URL: I%20want%20to%20encode%20this.
  2. Replies
    8
    Views
    19,522

    Re: How to URLencode a URL

    That function just returns what you put in... it doesn't actually do anything...
  3. Replies
    8
    Views
    19,522

    How to URLencode a URL

    I need to convert a plain text string into its URL form by encoding it.

    This can be done in ASP.NET via the System.Web.HttpUtility.URLencode("string here") function, however an equivalent does not...
  4. Replies
    3
    Views
    694

    Re: Prevent a context menu from showing

    Well i cant figure out how to actually stop a button click from happening and i dont see .shortcutsenabled for a list view
  5. Replies
    3
    Views
    694

    Prevent a context menu from showing

    I want to stop a context menu from showing if nothing is selected.



    If lvCopiedText.SelectedItem Is Nothing Then
    cmsText.Close()
    End If


    That doesn't work for...
  6. Replies
    11
    Views
    1,815

    Re: SendMessage Classes?

    I just cant figure this out, Ive tried Getting the handle of all of those and it always returns 0. im not sure what im doing wrong. I posted all my code up in my previous post, maybe someone can show...
  7. Replies
    11
    Views
    1,815

    Re: SendMessage Classes?

    Either sendmessage keys like {UP},{SPACE} (Has to be spacebar, there is no way that i know of either) {RIGHT}. Because there is no space bar id have to sendmessage a click to hit the pause/play...
  8. Replies
    11
    Views
    1,815

    Re: SendMessage Classes?

    Firefox was just an example, i want to do it on The Pandora one i have highlighted. There is only 4 sub levels to it, each one results in 0.


    Dim lpszParentClass As String =...
  9. Replies
    11
    Views
    1,815

    Re: SendMessage Classes?

    I have tried and theres only a few sub handlers. I used Spy++ and Managed Spy. heres a screeny of my results. Ill try winID after i post this.

    http://img704.imageshack.us/img704/9536/pss.png
    ...
  10. Replies
    11
    Views
    1,815

    Re: SendMessage Classes?

    Oh sorry. =/ lol. Stepping wont really help me all that much. I can get the hWnd but i dont know if thats what your supposed to send message to that, or go once more and find the "edit" of it. In...
  11. Replies
    11
    Views
    1,815

    Re: SendMessage Classes?

    Bumpppp and how would i sent clicks to the hwnd once i get the correct handle?
  12. Replies
    11
    Views
    1,815

    Re: SendMessage Classes?

    Bump..
  13. Replies
    11
    Views
    1,815

    SendMessage Classes?

    In all the sendmessage examples its always to Notepad using the class "edit" how would i find out other classes/control handles for different programs?



    Dim lpszParentClass As String =...
  14. Replies
    8
    Views
    3,326

    Re: Sendmessage to Webbrowser

    Ill look into that, what im trying to do is make a desktop program for pandora. I dont like the ones out and the one that they give is horrible (I have Pandora One). So i have the .swf in a web...
  15. Replies
    8
    Views
    3,326

    Re: Sendmessage to Webbrowser

    Bump...
  16. Replies
    8
    Views
    3,326

    Re: Sendmessage to Webbrowser

    I did, found nothing that helped me. Thats why im posting a thread.
  17. Replies
    8
    Views
    3,326

    Re: Sendmessage to Webbrowser

    Well how do you expect to get the handle of the textbox on the Google homepage? (just using that for testing purposes in any case) the final product will be used on a .swf
  18. Replies
    8
    Views
    3,326

    Sendmessage to Webbrowser

    Moved: http://www.vbforums.com/showthread.php?p=3761916#post3761916
  19. Replies
    1
    Views
    2,375

    Sendmessage Spacebar

    Ive been trying to figure out how to sendmessage VK_Space. i found an example and just tried it how it was, but i always get an error.

    My code



    Public Class Form1
    Private Declare...
  20. Replies
    6
    Views
    6,267

    Re: Sendkeys Spacebar?

    What exactly does it do? and do you happen to know how to use sendmessage? ive been digging for a bit and come across sendmessage/postmessage a few times. i might have to give it a try.

    edit: i...
  21. Replies
    6
    Views
    6,267

    Re: Sendkeys Spacebar?

    Well, what i have now is a .swf url in a webbrowser, going to flash player to swf was too unstable, it opened mass ammounts of IE's so it wasnt worth it. Plus it had flash variables. Ill try the...
  22. Replies
    6
    Views
    6,267

    Re: Sendkeys Spacebar?

    Yes, im sure.
  23. Replies
    6
    Views
    6,267

    Sendkeys Spacebar?

    I need to sendkeys.send("{SPACEBAR}") to a Flash control (in a webBrowser) wherein the only way I can trigger the event is when the Space Bar is pressed. I know there isn't a way to send space bar...
  24. Replies
    2
    Views
    601

    Index Directory

    I need to figure out how to index a directory, i know how to get the files in that one folder, but i want to get the sub folders as well then index those. untill there is no more sub folders left and...
  25. Replies
    4
    Views
    666

    Re: something else besides threads?

    Yeah, when i call the sub it goes to http://www.site.com/events posting the users ID. So itll wait there untill there is actually a response. Nothing else besides that. Disconnect is instant, sent is...
  26. Replies
    4
    Views
    666

    Re: something else besides threads?

    its for a chat service. i felt like making a desktop program for it. and when i use the code to receive new messages it will freeze up the program. so i made it on a new thread. But it does it pretty...
  27. Replies
    4
    Views
    666

    something else besides threads?

    For this program im using http method post to recieve messages from the server, when its waiting for a new message to be sent it locks the program up. No biggie, ill just thread the sub... Bad...
  28. Replies
    16
    Views
    1,907

    VS 2010 Re: Hardware lock?

    if you pack your code with themida or some sort of packing software, so others cant decrypt/"yank" the code out. If you want to HWID lock something itll take a lot.. first a database to save...
  29. Replies
    0
    Views
    458

    Copy controlls from tab to new tab

    I know i cant just directly copy controls over. i know i should use a class i just don't know how to add the controls from the first tab to the class and put them on the new tab. If someone would...
  30. Replies
    3
    Views
    506

    Re: Weird Freeze up? HttpWebResponse

    i cant actually go to the page since im posting. I just want to add a timeout or something
  31. Replies
    3
    Views
    506

    Weird Freeze up? HttpWebResponse

    Public Sub SendMessage(ByVal message As String)
    On Error Resume Next
    Dim uri As New Uri("http://omegle.com/send?msg=" & message & "&id=" & ID)
    If (uri.Scheme =...
  32. Replies
    12
    Views
    16,101

    Re: How to post/get in vb.net?

    Imports System.Net
    Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    ...
  33. Replies
    12
    Views
    16,101

    Re: How to post/get in vb.net?

    Alright, well switching it to post worked lol. im getting the code now. now to figure out how to get it up
  34. Replies
    12
    Views
    16,101

    Re: How to post/get in vb.net?

    I figured, i was just clearing that i didnt want to make a bot or nothing. :p and id just use cleverbot anyways
  35. Replies
    12
    Views
    16,101

    Re: How to post/get in vb.net?

    i dont want to make a bot or anything. i just want to make an executable for it. xP
  36. Replies
    12
    Views
    16,101

    Re: How to post/get in vb.net?

    well, its this anonymous chatting service thing. and i was bored and figured id make a program for it. and the only way of telling if i got a message is by doing GET and POST (To send) and that link...
  37. Replies
    12
    Views
    16,101

    Re: How to post/get in vb.net?

    But how do i like.. use it? it always throws errors at me, no matter what i do.



    Dim uri As New Uri("http://omegle.com/start?rcs=1")
    If (uri.Scheme = uri.UriSchemeHttp) Then
    ...
  38. Replies
    12
    Views
    16,101

    How to post/get in vb.net?

    I need to figure out how to post/get with PHP within vb.net. Any help?


    Net.WebRequestMethods has the post/get functions im pretty sure i need
  39. Running a .NET 2.0 Program Without Framework or Admin Rights

    Hey, I just need to run a simple program that requires .NET 2.0 on a computer on which I only have restricted User rights..

    I have permission from my supervisor to do this but he would rather not...
  40. Replies
    5
    Views
    1,885

    Re: Use unmanaged C++ dll in vb.net

    its for twinbladez
Results 1 to 40 of 49
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width