in Education by
I am very new to VB and am exploring this method to simplify mundane manual work process of highlighting certain text in Powerpoint textboxes. My intention is for VBA to search for keywords in the textbox, then changes the colour of this line and also a few other lines. e.g. search for the line that contains the word "video", if it returns that line 7 contains this word, I want to change the colour of line 7 and maybe lines 3, 10 and 11 to red colour. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Since your question is generic, We can only give a generic response. First thing you need to know about VBA in powerpoint for your issue is that you need to access things like objects. You'll first need to access the current Slide and Shape your textbox is in. In this example, Let's assume the textbox you want to access is in the first slide, in the first shape: Set oTextbox = ActivePresentation.Slides(1).Shapes(1) With oTextbox text = .TextFrame.TextRange.Characters.Text 'To access the textbox text. If InStr(1,text,"some_text") .TextFrame.TextRange.Font.Color.RGB = [255 0 0] 'To change the color of a textbox. End If End With .TextFrame.TextRange.Characters.Text accesses the shape's text. To search for a given text in the textbox, you can use the InStr command to see if the text you want is in your textbox. .TextFrame.TextRange.Font.Color.RGB accesses the text's color. This is at least a start for you.

Related questions

0 votes
    Could anyone recommend to me a good online guide to PowerPoint VBA? Also, does anyone has advice on how ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 16, 2022 in Education by JackTerrance
0 votes
    Could anyone recommend to me a good online guide to PowerPoint VBA? Also, does anyone has advice on how ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 16, 2022 in Education by JackTerrance
0 votes
    I am using Excel where certain fields are allowed for user input and other cells are to be protected. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 18, 2022 in Education by JackTerrance
0 votes
    I am using Excel where certain fields are allowed for user input and other cells are to be protected. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    Excited by the fact that VBA returned to Mac, but having trouble with code that works fine in Powerpoint ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 26, 2022 in Education by JackTerrance
0 votes
    Paid Search Marketing is about bidding and buying relevant keywords. False True...
asked Sep 5, 2021 in Technology by JackTerrance
0 votes
    You can change the colour scheme of the Start menu and other windows. in Windows 7. There are mini programs ... to the Recycle Bin Select the correct answer from above options...
asked Dec 20, 2021 in Education by JackTerrance
0 votes
    To fit a graphic or clip art on to a slide you can change the (a) Design template (b) Slide layout (c) Colour scheme (d) Outline Select the correct answer from above options...
asked Dec 11, 2021 in Education by JackTerrance
0 votes
    I made a JQuery function the one deletes the row I selected. I know that the option exist in the DataTables option, but I want to ... }*/ });}); Then, I have the JSON file there:...
asked Jul 3, 2022 in Education by JackTerrance
0 votes
    I made a JQuery function the one deletes the row I selected. I know that the option exist in the DataTables option, but I want to ... }*/ });}); Then, I have the JSON file there:...
asked Jun 19, 2022 in Education by JackTerrance
0 votes
    10.For Animation, on which menu you will be click to get the effect in MS POWERPOINT. Select the correct answer from above options...
asked Dec 31, 2021 in Education by JackTerrance
0 votes
    State true or false :- i. We cannot do animation in a PowerPoint slide. ii. We can import files from other ... super computer of India Select the correct answer from above options...
asked Dec 15, 2021 in Education by JackTerrance
0 votes
    When we insert a chart in powerpoint, the data is displayed in a special window called Select the correct answer from above options...
asked Dec 2, 2021 in Education by JackTerrance
0 votes
    So the problem is i don't get get a value from textbox field on GridView RowUpdating event. Here ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 8, 2022 in Education by JackTerrance
0 votes
    I have a small calculator that I am creating in C# (Sharp Develop). The user enters two values ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
...