No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
Dim Domain as string = @Yahoo.com private sub CheckIfEmailsHaveSameDomain(Email1 as string,Email2 as string) if email1.indexof(domain) >= 1 then msgbox(" First Email From Yahoo") else msgbox("First Email Not From Yahoo") end if if email2.indexof(domain) >= 1 then msgbox(" Second Email From Yahoo") else msgbox(" Second Email Not From Yahoo") end if …
I didn't read your code(too confusing) but whatever type of string or text you have Dim MyString,WhatToSearch as string if mystring.indexof(whattosearch) >= 2 then 'Code Here end if
Hi I'm making a mouse recorder. I want to record whatever the person does and then play it back when they want. I have everything right( I can record and play back the mouse movement) but What I cant do is record the clicks. Do you know how I can …
How do I perform a click on the screen anywhere at runtime example this is how you move the mouse at runtime system.windows.forms.cursor.position = new point(500,400) is there anyway to do something like that with a click? Thanks in Advance Nick Cammarata 14 yr. Old Programmer
Hi I'm in 8th Grade and I'm thinking of trying to get into IT tech before the end of there year so that I can say I was in college before I went into highschool. Can you guys/girls give me an idea as of what you do in 1st or …
I Understand your code and I would try to fix your problem but it seems someone has already done that. One Question, why did you use i = i + 1 or cost = cost - 50 instead of cost -= 50 or i -= 1? If you need more …
The End.
Cammarata123