Questions tagged [notepad]

Notepad is a simple text editor for Microsoft Windows. Use this tag for issues relating to interfacing with Notepad and/or duplicating Notepad functionality.

Notepad is a simple text editor for Microsoft Windows. It has been included in all versions of Microsoft Windows since Windows 1.0 in 1985.

787 questions
1
vote
1 answer

Notepad++ or Excel: transpose two columns, batch for multiple files

I have multiple .txt files in the form of Name1|number1 Name2|number2 Name3|number3 (...) And I would need to transpose them to look like: Name1|Name2|Name3|(...) Number1|Number2|Number3|(...) This is easy enough to do for a single file in excel,…
Clairekun
  • 25
  • 3
1
vote
1 answer

Notepad++ join line not starting with | character with the previous line

I need to do import a large file with almost 50 columns and thousand of lines, with the struture |field|;|field|;|field|... Each field is started and ended with | (pipe) and ; (semicolon) to separate between fields The problem is that some data have…
Teresa
  • 13
  • 3
1
vote
0 answers

How to convert .abs to .txt, and read it into R

I have over 1,000 files with the .abs extension (abstracts). I need to read it into R. Is there a way I can either (i) import .abs files directly into R or (ii) batch convert these files into .txt, then import into R? I have googled but seem to find…
Grace
  • 201
  • 2
  • 13
1
vote
1 answer

How to to extract texts only from inside of the "Inverted Comma or Quotes" by using Notepad++

I have a text document. I want to extract texts only from inside of the "Inverted Comma or Quotes" by using Notepadd++ or any website For Eg: Lorem "Football" ipsum dolor "Cricket" sit amet, consectetur "Tennis" adipiscing "Asia" sed do "Europe"…
user2996362
  • 49
  • 1
  • 8
1
vote
2 answers

How to keep only desired texts "Before and After" in Notepadd + ? Remove all other texts

I have some HTML files. How can I remove all texts before and after class="header" or id="header" attribute. I want to extract all classes like it. For eg: **These are my HTML codes:**
user2996362
  • 49
  • 1
  • 8
1
vote
0 answers

Why does drawn string change as I add more chars to it in C# Forms?

So I need to make a text editor in C# Forms using only drawString, drawLine etc. As I type my text changes and that results in my text cursor not displaying properly because it depends on text width that I calculate through MeasureString(). Here is…
1
vote
3 answers

A Notepad that keep the notes written even after refresh

I have just found a set of codes that fits my need right now for my blog. Here I'll attach the code and a glimpse of what it looks like. Although It's still very simple. What I want to ask is if it's possible to tweak these code possible using JS…
ivmaxifa
  • 53
  • 7
1
vote
1 answer

PrintWindow function makes mistake in notepad.exe

PrintWindow function in Win32API could capture the image of a program. By the following code we can get the copy of the screenshot in clipboard. #define _WIN32_WINNT 0x0501 #include #include using namespace…
Lyronx L
  • 13
  • 5
1
vote
3 answers

Excel interprets multiple columns from Notepad data as one column

I have some data in notepad that look like this: All separated nicely. i try to export it to excel by going to: Data -> From Text/CSV but Excel does this: Obviously I want 11 columns and not 1. I have never imported data from notepad so maybe I am…
Scavenger23
  • 209
  • 1
  • 6
1
vote
0 answers

Generate HTML output using excel variables using excel vba and Notepad or Shell

I'm building an excel based application that produces TV wallboard visuals. The business would like to be able to preview new vizzies prior to them going live. The system works via mutliple html templates with associated javascript reading & writing…
GpioNelson
  • 45
  • 9
1
vote
1 answer

Is there an argument to change font size for printing Notepad trough Shell Command?

I have a script in Proficy - Cimplicity (Basic Script Engine) that build up a temporary text file then print it and then delete it afterward. It always worked fine, but since this script is now on an Windows 10 environment, the font is too big.…
Cédric
  • 21
  • 4
1
vote
2 answers

Cannot compile Java file with non-ASCII character

Important: I must use plain windows notepad only (neither IDE nor Notepad++ or any other text editors allowed). So I have a simple class: class Test{ public static void main(String[] args){ char c = 'қ'; System.out.println(c); …
1
vote
6 answers

To Access Notepad, calculator through asp.net

I m trying to open Notepad, Calculator in button click in asp.net with code behind C#. I tried with the code System.Diagnostics.Process.Start("c:\\windows\\system32\\notepad.exe"); this is working fine in local system but not working in the…
Fairy_G
  • 407
  • 3
  • 12
  • 23
1
vote
1 answer

Notepad click OK does not work in pywinauto

While trying to automate notepad GUI, I cannot make click function to work in a single try. When I execute line 4 twice, the click ok button works and the "About Notepad" menu is closed. I tried doing the same with other buttons in other menus and…
1
vote
3 answers

How to replace end of line character with a new line in Notepad++?

I want to replace Insert into table values('A','B'); Insert into table values('C','D'); with Insert into table values('A','B'); commit; Insert into table values('C','D'); commit; In short replace ); with ); commit;
sssophkc
  • 19
  • 3