Search results for query: *

  • Users: Taien
  • Order by date
  1. Taien

    Question SendMessage

    Well, I'm just trying to copy text, so really, using the source html might work. I hadn't considered that. Is there a way to do that? Preferably though I'd like to be able to capture text that changes, such as activex webpages and java apps and such. The page I'm using to build this is a...
  2. Taien

    Question SendMessage

    I have a new problem :) This whole time I've been constructing this sub to get text from Internet Explorer, and now I find that Internet Explorer doesn't work with the normal method of finding handles for sendmessage. So I'm left to believe that the only way to get text from IE is to just have...
  3. Taien

    Question SendMessage

    Nevermind, figured it out :) The answer is the EnumChildWindows API call for the record.
  4. Taien

    Question SendMessage

    I have a follow-up question....is there a way to enumerate results to FindWindowEx or to ignore previously returned handles on following searches? I have a section where I'm digging into the handles for a window and I come to a spot where two controls have the same class name. I'm assuming...
  5. Taien

    Question SendMessage

    Wow, thanks. I swear I searched a bunch of times for something like that...
  6. Taien

    Question SendMessage

    I'm trying to teach myself to use SendMessage to manipulate other windows and have been reading as much as possible on the net to understand how to do this. I've come upon a problem though that I have been unable to find an answer for on the net. Currently I'm attempting to read text from...
  7. Taien

    Public Array

    So, since in the code Solitaire provided the sub is within the module, it is called when the form is loaded, so the values should already be initialized and permanent at that point, correct? (well, I mean permanent until I change them ;)) The reason I ask is because I want to use the array as...
  8. Taien

    Public Array

    Thanks Tom. The only problem with that is that I want to be able to define how many items are in the array from the beginning, which I can't do if I declare the contents. But then again, I suppose declaring the contents automatically establishes the size, eh? ;) A friend of mine recommended...
  9. Taien

    Public Array

    I'm fairly new to VB and I am making a game as part of my portfolio project in a class. I'm having some trouble with array declaration though. Here's my code: Public varSkillLearnedArray(100) As Boolean varSkillLearnedArray() = {True,true,true} I have option explicit on and option strict...
Back
Top