Forum

YasserKhalil
@kingtamo
Active Member
Joined: Jun 30, 2016
Last seen: Apr 21, 2025
Topics: 1 / Replies: 12
Reply
6 years ago
Forum
Reply
RE: How to automatically enter the username and password on a specific web page

That was part of your code that I modified and that is related to the login code Just modify the part that is related to the username / password / ...

6 years ago
Forum
Reply
RE: How to automatically enter the username and password on a specific web page

Dim e For Each e In IE.Document.getElementsByClassName("uikit-text-field ng-scope") If InStr(e.innerText, "Email") > 0 Then e.getElementsByTagName(...

6 years ago
Forum
Reply
RE: Rank totals by two criteria

That's exactly what I was searching for Thank you very much

7 years ago
Topic
Reply
RE: Protecting Multiple Worksheets

You're welcome. Glad I can offer some help

8 years ago
Reply
RE: Protecting Multiple Worksheets

Hello Try this code Sub Test() Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets ws.Protect "123" '...

8 years ago
Reply
Reply
RE: Sum function with "'>>:<<'!"

That's nice trick. I love it

8 years ago
Reply
RE: Use Spell Check on protected worksheet using VBA Code

You're welcome. Glad I can offer some help

8 years ago
Forum
Reply
RE: Use Spell Check on protected worksheet using VBA Code

Hello May be this piece of code would be useful for you Sub Test() Dim myPassword As String myPassword = "123" 'Protect Worksheet (Allow ...

8 years ago
Forum
Reply
RE: VeryHidden sheet without Project Editor

Thanks a lot Mr. Catalin for useful information .. @Alexandra : Press Alt + F11 to open the VBE Editor >> From Insert >> Select Modu...

8 years ago
Forum
Reply
RE: Transfer data from text files as list in a worksheet

Hello In the code provided I see that using Select is unnecessary so instead of these three lines Rows(delRow).Select Application.CutCopyMode =...

8 years ago
Forum