Showing posts with label techy. Show all posts
Showing posts with label techy. Show all posts

Tuesday, 12 August 2025

VS CODE OPTION NOT VISIBLE ON RIGHT CLICK !!!!!

You must come here due to no option you can see "open with code" on right click after the intallation of software or accidentally vanished after some authorization given to anyone. I observed that after any authorization like google drive authorization or github authorization, you may face problems, i faced i am telling so.So, i bring all the steps for you curated from net and chatgpt how should you proceed. after doing this you may face problems of black screen with only arrow, that solution also brought for you.

Step 1: Restart your computer

  • still not visible this option follow step 2

Step 2: Enable "Open with Code" from VS Code setting

  • Open VS Code.
  • Press Ctrl + Shift + P to open the Command Palette.
  • Type Shell Command: Install 'code' command in PATH and select it. (If this option not visible you are in windows follow step 4)
  • Restart your computer.
  • If still not visible follow step 3

Step 3: Add "Open with Code" to right-click manually

  1. Open VS Code.
  2. Press Ctrl + Shift + P to open the Command Palette.
  3. Type Shell Command: Install 'code' command in PATH and select it.
  4. Then run this command from your terminal:
# For folders reg add "HKCR\Directory\Background\shell\Open with VS Code" /ve /d "Open with VS Code" /f reg add "HKCR\Directory\Background\shell\Open with VS Code\command" /ve /d "\"C:\Program Files\Microsoft VS Code\Code.exe\" \"%V\"" /f # For files reg add "HKCR\*\shell\Open with VS Code" /ve /d "Open with VS Code" /f reg add "HKCR\*\shell\Open with VS Code\command" /ve /d "\"C:\Program Files\Microsoft VS Code\Code.exe\" \"%1\"" /f

Step 4: Check Settings in VS Code itself (Windows)

  • In VS Code, go to File > Preferences > Settings.
  • Search for context menu or Explorer: Enable Right Click and make sure it’s enabled (usually it is by default).
  • still not visible follow step 5

Step 5: Reinstall the software

  • Go to settings
  • Go to apps (visible in left sidebar)
  • Go to installed apps
  • Search visual studio code
  • Click on 3 dots
  • Click uninstall
  • Download latest from https://code.visualstudio.com/
  • During installation, check all boxes in Select additional tasks box:
    • Add "Open with Code" action to Windows Explorer file context menu
    • Add "Open with Code" action to Windows Explorer directory context menu
  • Complete installation.
  • Restart your computer.
  • After this, you should see Open with Code when you right-click files and folders.
  • If still not fixed follow step 6

Step 6: Add registry keys manually

  • Open Notepad
  • Copy-paste the below code after generation
  • Way to find the directory
    • click windows key+R
    • paste %LocalAppData%\Programs\Microsoft VS Code
    • select title bar
    • copy it
    • paste the directory in the box "Enter VS code directory"
  • Enter your Visual Studio Code installation directory below (Example: C:\Users\SHWETA\AppData\Local\Programs\Microsoft VS Code) don't put "", if present please remove it.
  • Click File>Save As
  • Name it add-vscode-context-menu.reg and choose All files as file type.
  • Save it in desktop or anywhere where you easily find it
  • Double-click it, confirm changes
  • You can see this type of pop up
  • Screenshot showing how to restore the 'Open with Code' option in Windows right-click menu for Visual Studio Code using installer settings and registry edits
  • Restart PC.

Note: Black Screen with arrow

  • Most probably it happens with you when you restart your computer after step 6, it is due to reset of graphic card.
  • Hence, i add this step in advance, so that you don't panic just press Windows key + Ctrl +Shift +B should be pressed simultaneously.
  • Then your computer take some time to load, and now you can visible that option on right click.

#glitch #coding

#SIMILAR BLOGS
Dynamic Buttons

Thursday, 7 August 2025

HOW TO USE VBA CODE AND ASSIGN A MACRO WITH A SHOTCUT KEY

STEPS:

  1. Open the document or template where you want this shortcut key functionality.
  2. Record the Macro:
  3. Press Alt + F8 to open the Macros dialog.

If you have vba code:

  1. click on developer tab
  2.  click on the record macro and  giev a name and saved it.
  3. click on stop recording
  4. go to Macros
  5. click your desired macro
  6. click on edit
  7. write or paste your vba code 
  8. ctrl +S
  9. closs all and save.

Assign the Macro to a Shortcut Key:

  1. Go to File > Options > Customize Ribbon > Keyboard Shortcuts: Customize (at the bottom).
  2. In the "Categories" list, select Macros.
  3. Select your MACRO from the list of macros.
  4. In the "Press new shortcut key" field, press your desired shortcut key (e.g., Ctrl + Alt + F), press those keys simultaneously not one by one.
  5. Click Assign, then Close.
  6. Save the Changes:
  7. Save the document as a macro-enabled file (*.docm) if you want to use this feature only in this document.
  8. Alternatively, save it in the Normal.dotm template to use the macro across all documents.


Using the Shortcut:

Press your assigned shortcut key (e.g., Ctrl + Alt + F), and your macro automatically run.


IF YOU HAVE MORE THAN 1 MACRO , IT APPEARS LIKE THIS SEPARATED BY LINE.

It is the vba(visual basic code) interface showing 2 macros separated by line, each macro allots a shortcut key


#msexcel #coding Dynamic Buttons

Wednesday, 25 December 2024

Which PDF editor is best for you?

Best Free PDF Editors

Table of Contents

Image to Text PDF Conversion

Converting image-based PDFs (scanned papers) into text-based PDFs can be challenging. Adobe's online service provides an excellent free option for files up to 100 MB. Its conversion accuracy is impressive, maintaining the original layout and page alignment. Unlike other editors, Adobe ensures text remains on the same page as in the original document.But its worst part is searching, it is unable to find all the words in the document, even in the offline version. Keep logged out for free conversion, for multiple downloads, use incognito mode

Merging and Splitting PDFs

For basic merging and splitting tasks, PDF Swarkn and Xodo PDF are great free tools. However, PDF Swarkn may show errors when handling files larger than 1.5 GB.

Adding Text, shrink and Other Features

For tasks like adding text, converting PDFs to images, adding page numbers, encryption, and passwords, PDF-XChange Editor is a fantastic free option. Its user-friendly interface and extensive feature set make it a reliable choice for everyday PDF editing.

Apps to Avoid

PDF Reader Pro is not recommended as it requires payments for basic features. Additionally, avoid Foxit PDF, which has concerning behaviors such as downloading without clear user consent and aggressively requesting permissions.

Conclusion

Feature Recommended App
Image to Text Conversion Adobe Online Service
Never use for reading or searching Adobe
Merging and Splitting PDF Swarkn, Xodo PDF
Adding Text, Encryption, shrink etc. PDF-XChange Editor
Apps to Avoid Foxit PDF

All these apps are available on the Microsoft Store for convenient downloads. Choose the right tool based on your needs to manage your PDF files efficiently.

But, when the pdf is above 1 gb all these softwares fail or demand subscription, then one and only option is "PYTHON"

More1: Merge PDF by Python

pip install PyPDF2
from PyPDF2 import PdfMerger

files = [r'C:\Users\ANURAG\Desktop\a.pdf',
         r'C:\Users\ANURAG\Desktop\b.pdf']
output_file = r'C:\Users\ANURAG\Desktop\merged_file.pdf'

merger = PdfMerger()
for pdf in files:
    merger.append(pdf)

merger.write(output_file)
merger.close()

print(f"Merge completed! Output saved as '{output_file}'.")
        

#software

SIMILAR BLOGS:

Dynamic Buttons

Friday, 6 December 2024

one drive or google drive, which one better for backup or sync?

Google Drive vs. OneDrive

Table of Contents

My Experience with Google Drive

When I first explored cloud storage services, Google Drive caught my attention for syncing my files. Since it isn’t pre-installed on Windows, I downloaded it from Google’s website. Initially, everything worked smoothly, and I appreciated how convenient it was.

However, over time, issues started to surface. The folders I synced became inaccessible, and many of my files were corrupted. This forced me to reformat my computer, but sadly, I lost all my files in the process. Additionally, Google Drive links and embedded content would sometimes expire without any prior notice, which disrupted my workflow. i also observed that, if you have bulky of data even within total data is within 15 gb. if you don't use this data over time, automatically these are deleted without prior information.

Switching to OneDrive

After my challenges with Google Drive, I switched to OneDrive. Over the years, I found it to be more user-friendly and reliable. Since it’s pre-installed on Windows, syncing files is much easier. OneDrive rarely corrupts files, till now no such situation i suffered.

That said, OneDrive isn’t without flaws. Recently, I encountered an issue where it would abruptly stop syncing and display an error—even though I followed the same steps that had worked previously. Some days, everything syncs perfectly, while on others, the same process triggers an error.

When this happens, I’ve found a workaround: I delete the problematic file from OneDrive and manually sync it using the SyncFolder app. This resolves the issue and allows syncing to continue smoothly.

Ensuring File Security

Given my experiences with both services, I’ve devised a method to safeguard my data:

  1. I created a dedicated folder to store the files I want to sync.
  2. I use the SyncFolder app to sync this folder with OneDrive.
  3. This approach minimizes risks, ensuring my original files remain untouched even if syncing issues arise.

Conclusion

Here’s how I compare Google Drive and OneDrive:

  • Storage Space: Google Drive offers more free storage (15 GB) compared to OneDrive (5 GB).
  • Reliability: While OneDrive generally performs better, it occasionally encounters syncing errors that require manual intervention.
  • Integration: OneDrive’s seamless compatibility with Windows gives it an edge.
  • Risk of File Corruption: Google Drive posed significant challenges, but OneDrive’s issues are less severe and easier to manage.
  • Better search: Google Drive
  • expiry of links and embeded materials without prior information: google
  • Data safety: one drive

While Google Drive offers more storage, OneDrive’s integration and overall reliability make it my preferred choice, despite occasional glitches.



#software Dynamic Buttons

Thursday, 21 November 2024

what is the solution of auto pressing???

Hello friends,
How are you? Today, I am here to talk about a problem I have been dealing with for months, and that is auto-pressing, twinkling, 

What does it mean?
It means that you don’t touch your mouse or keyboard, but they still act as if they are being pressed automatically on your computer., and also sometimes the mouse become freeze, it does not move still i want to move. 

I have shared a video below; please take a look.

I have tried everything available on the internet, from shutting down and restarting my system to running troubleshooting steps. F9 key solution i also tried. I even performed a complete Windows formatting, but nothing resolved the issue. 

Finally, I discovered the problem was with the keyboard., After replacing the keyboard to new one, all problem resolved.





#glitch

#SIMILAR BLOGS
Dynamic Buttons

Wednesday, 13 November 2024

TELL ME ABOUT THE NOTES APP AVAILABLE IN ANDROID

Over the years, I’ve tried various Android apps for note-taking. I’d like to share the advantages and disadvantages of each based on my experience.

One common disadvantage across all these apps is the tendency to delete some of your material without warning. Additionally, not all words in your notes are searchable. When you have many notes, even if a specific word is present, it may not appear in search results.

SAMSUNG NOTES:

Advantages:

  • It is very easy to use unlike " OBSIDIAN" app.
  • You can insert PDFs directly into notes and edit them with ease.
  • It’s user-friendly, allowing you to add images, audio, text boxes, and drawings.
  • You can sync with Microsoft OneNote or Samsung Cloud.
  • You can convert notes into Microsoft Word, text files, PDF files, images, PowerPoint, or Samsung Notes files. Can't possible in keep
  • I recommend saving as a PDF or Samsung Notes (.sdox) file, as these formats retain the original layout and formatting.

Disadvantages:

  • can't available in windows like "KEEP" available everywhere, samsung notes only run in samsung devices 
  • Even you can insert the pdf pages, these pages not move with the text, that is the real problem, if you insert in between your notes, and you add any extra text above pages, the text overlaps the pdf
  • Converting notes to other file formats can cause issues, such as altered paragraph spacing and shrunken images. To maintain quality, you may need to resize each image, which is tedious.
  • In PDF conversions, text is not searchable; it appears like an image, meaning you can read but cannot search or select the text.
  • In notes you can't search 2 words simultaneously ex: "wake up", if you search this term, it shows all "wake" & all "up".
  • Each note can only hold up to 1 GB of content, after which no more additions are allowed.
  • Samsung Notes lacks an advanced bullet system like Google Keep, where selecting a main bullet also selects or deselects all sub-bullets automatically.
  • You can't create tables
  • Can't share your notes by link
  • No PDF OCR ( BUT APPLE NOTES & GOOD NOTES HAVE THIS FACILITY)
*Pdf ocr means, it automatically detects characters from the image present in the pdf, & you can easily search these ones*


IT IS THE STRONG RECOMMENDATION TO AVOID ANDROID APPS TO MAKE YOUR MEDICAL NOTES

Atlast i also try microsoft word, for making my notes, still i have to face dissapointment, as they also delete your data without warning.

In conclusion, if you make notes in android apps, get ready for loose your precious data.

Till now, i observe that only pdf does not issue like data loss, so it is recommended that after making your notes save it to pdf to prevent data loss.

#apps Dynamic Buttons

Sunday, 10 November 2024

How do I add tabs in Blogger?

 


go to page layout, then , select the place or section, & then select “pages gadjet”. then you enter your desire tab name and its link

to create new pages, first go to blogger dashboard, on left hand side, click pages, and click on add page, a new page is created.

then copy the link of the page and paste on that “pages widget”

Remember that when you create a new page, always write the page title, if you don’t do so, the page tab keep on disappearing, whenever you edit that page.



#blogger Dynamic Buttons

Tuesday, 13 August 2024

What is the best free offline folder sync software?

uptill now, it is the best

free of cost

can manage heavy files

very smooth

easy navigation

https://www.microsoft.com/store/productId/9NC73MJWHSWW?ocid=pdpshare

All these advantages you get:

  • By 1-way synchronization - This method, also called '1-way mirroring', ensures that the folders and files on the destination storage medium are an exact copy of those on the source. See here for a detailed description.By 2-way synchronization - This method, also called '2-way mirroring', synchronizes files and folders from Location A to Location B and vice versa. See here for a detailed description.
  • By direct copying - This method also copies all new and changed files, but files that are no longer present at the source location are not deleted on the target medium.
  • By cut and move - This method moves all new files and folders to the target location and then deletes all successfully copied files and folders on the source. Like cut and paste works in Windows Explorer. See here for a detailed description.

AVOID THESE THINGS TO PREVENT ERRORS:
1) DON'T KEEP VERY LONG NAMES
2) AVOID KEEP FOLDER AND FILE NAMES ENDING WITH FULLSTOP
    EX: "name."
#software Dynamic Buttons

What is your feedback on the Samsung Galaxy F54 phone?

In recently bought this phone. But it sometimes show problem like non-responsive to clicking, after sometimes, it working. Sensor is not so much good. It didn't work sometimes. When you want to click small items, you are unable to it.I didn't expect from my new phone. Night photos are not so good as said in the advertisement.

SENSOR IS LITTLE BIT SLOWER.






#phones Dynamic Buttons

Does Google Drive delete your files if you never use it?


 


Yes, same thing happens to ke, i uploaded a pdf in my drive. I am continuously using my account but not that file. I didn't open the file since 3-4yrs, now i need this file,but now the file is not exist. Don't trust google for this.

If you have any idea any website which stores any file for lifetime. It will be great help for me.

#software Dynamic Buttons