User Profile

Collapse

Profile Sidebar

Collapse
xxsodapopxx5
xxsodapopxx5
Last Activity: Dec 13 '07, 12:32 AM
Joined: Dec 15 '06
Location: Ohio
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • xxsodapopxx5
    replied to Image Comparisons
    in .NET
    thanks for your help, I have tried a few things and can't seem to get it to work. I have tried to take a screencapture and search pixel by pixel, but that was a flop, well at least i couldn't figure out how to program it. I also can't seem to take a screencapture of a small section of the screen.
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    started a topic simulate keystrokes
    in .NET

    simulate keystrokes

    I was wondering if there was a way to simulate keystrokes.
    i.e. "backspace" , "backspace" , "1","space" , "5"
    1 5

    i need it to external applications and sendkeys.send won't work.

    thanks for your help. It is much appreciated.
    See more | Go to post

  • xxsodapopxx5
    replied to Image Comparisons
    in .NET
    ok so to answer your questions.
    Specifically i have a browser up, it is taking half the screen. I also have an application up that is taking half the screen. I have a command that runs overnight. While it is running i want it to check every few minutes if it is complete so i can move on to the next task. The browser does NOT show text, but an image when it is done, also it is NOT always in the same place, but in a general area. I would like...
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    started a topic Image Comparisons
    in .NET

    Image Comparisons

    I have this program I am writing that is using a few third part applications. I need it to check if there is an image up.

    I have the image, it is 100x20 pixels and i was going to take a screen capture and have it look through the screen capture to see if it is on there. Is there a to do this? I just need an idea, i can't seem to get a start on this. Thanks for any help in advance.
    See more | Go to post

  • xxsodapopxx5
    replied to auto-click 3rd party applications
    in .NET
    wow that was really a really rapid answer, thank you very much. This seems like it will work flawlessly. thanks you very much
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    started a topic auto-click 3rd party applications
    in .NET

    auto-click 3rd party applications

    I was wondering if there was a way to write a program to auto-click the screen, for automation with 3rd party closed source applications.

    I know both vb.net and C# so thats not a problem. I just need to know if there is a way to program auto-click. I need it for firefox and also a 3rd party desktop app. any help would be wonderful! Even a small beginning. thanks in advance.
    See more | Go to post

  • xxsodapopxx5
    replied to C# Combobox question
    in .NET
    wow sorry it took so long for me to get back to you. I have been really busy with schoolwork... I had stupid essays due... I hate how im taking computer science and i have to take english and history and a whole ton of other crap that has nothing to do with anything... but anyways, thanks alot, i am going to implement this right now.
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    replied to C# Combobox question
    in .NET
    ya i tried that already, but i want to be able to still go through the combobox, i just don't want the text changed... sorry if i didn't make it clear in my first post. Thanks again.
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    started a topic C# Combobox question
    in .NET

    C# Combobox question

    I haven't been coding much... if at all lately and i just picked up some VS2005 C# again and i was wondering if i can make a combobox not be able to change the text in it, like make it read-only... I have taken a while to look it over and I can't figure out the property or code to do it. thanks for your help.
    See more | Go to post

  • xxsodapopxx5
    replied to Creating Arrays from structures in C#
    in .NET
    Edit:I'm sorry i don't quite understand. i made them into a class and i tried doing the same thing and it came up with the same error...

    can you put a code sample up of a class as an array?




    Sorry for the trouble, i figured it out. I was completely being stupid and trying to type arrays like in vb.net... thanks for your help. now that they are in classes it is more organized.
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    started a topic Creating Arrays from structures in C#
    in .NET

    Creating Arrays from structures in C#

    Hi everyone,

    I am new to C# and am having problems creating arrays like i did in VB.net. Right now i have a structure lets say called stuBox and it has a few items in it

    Code:
      struct stuBox
            {
                int index, ID;
                string Name;
    
            }
    like that^

    i want to be able to have something like

    Code:
    
    
    ...
    See more | Go to post

  • xxsodapopxx5
    replied to Multiple forms and global variables C#
    in .NET
    wow thank you both for your complete answers. They are going to be very helpful. I am going to be using the method based with the parameters.For this specific problem I am going to use the static property settings. Thank you.
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    started a topic Multiple forms and global variables C#
    in .NET

    Multiple forms and global variables C#

    hi, i have just started to learn C#, my primary programming language has always been VB. I can't seem to figure out how to create a global variable used commonly among 2 forms. In VB i would just use a get set property, but it doesn't appear on the other form i would like to use it on and i do not know why. Any help would be much appreciated. Thanks.
    See more | Go to post

  • bump........... ...............
    See more | Go to post

    Leave a comment:


  • Need programming conversion help VB.NET to C# 2005

    ... what is the equivalent of

    Code:
    DatagridView1.item(1,1).value
    in C#

    i have looked and tried everything, in MSDN it says C# has the item class, but it doesn't when i try to code it.

    thanks in advance for any help, its much appreciated.
    See more | Go to post

  • xxsodapopxx5
    replied to getting all users in a windows domain
    in .NET
    bump. bump. bump.
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    replied to getting all users in a windows domain
    in .NET
    I am very greatful for your help, this is much appreciated... although there is something that i am not understanding. I Primarily program in vb.net 2005 so this code is somewhat foreign. I can interpret most of the code but can you explaing this line?

    Code:
    //creating an instance of DirectoryEntry pointing to the //“TestOU” with valid credentials.
    DirectoryEntry DE = new DirectoryEntry(@"LDAP://Norchio/OU=TestOU,DC=norchio,DC=com","Username","password",AuthenticationTypes.ServerBind
    ...
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    replied to getting all users in a windows domain
    in .NET
    I have started finding some things about this.


    i have found the code to get the current user on the domain.

    Code:
    my.User.Name
    i still need help on getting a collection of all of the users on the domain
    See more | Go to post

    Leave a comment:


  • xxsodapopxx5
    started a topic getting all users in a windows domain
    in .NET

    getting all users in a windows domain

    Ok currently i am working in an environment with 20 computers all in the domain, which has about 40 users. These 40 users change often. I need to write an application that pulls all the usernames and if possible more information(i.e . There first and last name etc...) from the domain server. I am an administrator so i have full access to this server and can get to all the information manually through active directory on Windows Server 2003, but i...
    See more | Go to post

  • xxsodapopxx5
    replied to Databse refresh from dataset
    in .NET
    thanks for your response
    ok i tridd that code so now it reads...

    Code:
       Try
                        'DsAutoTech.ROMaster.Rows(Me.BindingContext(DsAutoTech, "ROMaster").Position).Delete()
                        DsAutoTech.ROMaster.Rows.RemoveAt(Me.BindingContext("ROMaster").Position + 1)
                        DsAutoTech.AcceptChanges()
                        ROMasterTableAdapter.Update(DsAutoTech)
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...