visual
3 TopicsWindows 11: Remove search bar from Start menu
Remove search bar from Start menu, the search icon and all of its feature are already available next to start button There is no need to show search bar at the top of Start menu, keep it simple. the search functionality and icon is there right next to the start menu, with all of its features, don't need to duplicate it on start menu. keep start menu simple. Upvote this feedback in feedback hub: https://aka.ms/AAd5e144.9KViews1like1CommentIdentify plants, landmarks, products and more, using Search in Sidebar for Image!
Search in Sidebar is one of the many in-context search features that Microsoft Edge users love when performing text search. However, we know that some users have asked for equivalent search features for those wishing to perform a visual search - searching using an image as their input. We are glad to introduce Search in Sidebar for Images, an in-context visual search experience that can be invoked from any page. Here is how it works: When browsing on a webpage, just right-click any image to see the "Search in sidebar for image", which will appear if the embedded image is supported. Clicking on this option will perform a Bing visual search, displaying the results in a sidebar: Depending on the image, different results types will appear - from landmark identification to shopping results - so do try out different images to learn about everything searching with an image can do! Search in sidebar for image is a Bing-only search feature. Learn more about Bing visual search https://www.bing.com/visualsearch?toWww=1&redig=51AC14A6EA4343D7861C7DAF681061B2. The feature has been rolled out to the Dev and Canary channels as part of the CFR, available from 91.0.846.0. Please leave us your valuable feedback around new in-browser search features like this one by leaving a comment below or sending us feedback via the browser (… menu > Help and feedback > Send feedback). We hope you enjoy Search in Sidebar for Image and look forward to hearing from you!13KViews7likes15Commentsyes no Selection button on a msgbox
i need a msgbox says "Are you sure that you need to finalize & ws.name" vbyesno 1-if no then do nothing 2-if yes and the folder ws.name is not found then creat 3- if yes and the folder ws.name is found then msgbox says " ws.name" is already found would you like to overwrite it 4- If no do nothing 5-if yes then overwrite thanks ---------------------------------------------------------------------------------------- Private Sub CommandButton6_Click() Dim ws As Worksheet Set ws = Sheets(Sheets.Count) Dim sPath sPath = ("\\10.218.165.35\Project Managment\Correspondence\Technical Correspondence\Client-MOD\Invoices\") Application.ScreenUpdating = False Application.DisplayAlerts = False 'step1 create main folder If Dir(sPath & ws.Name, vbDirectory) = Empty Then MkDir sPath & ws.Name Dim sMain As String sMain = sPath & ws.Name & "\" 'step2 save last sheet as pdf ws.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _ sMain & ws.Name, Quality:=xlQualityStandard, IncludeDocProperties:=True, _ IgnorePrintAreas:=False, OpenAfterPublish:=False 'step3 save last sheet as new file/workbook ActiveWorkbook.Sheets(Sheets.Count).Copy With ActiveWorkbook .SaveAs sMain & ws.Name, 51 '<< '51=xlsx, 52=xlsm, 56=xls .Close End With Application.DisplayAlerts = True Application.ScreenUpdating = True End Sub ------------------------986Views0likes0Comments