Questions tagged [textpad]

TextPad is a general-purpose text editor.

TextPad is a general-purpose text editor for Microsoft Windows, published by Helios Software Solutions.

146 questions
0
votes
1 answer

Delete a user-defined TextPad document class?

How do you delete a user-defined TextPad document class? The TextPad user manual and help only describe how to create a document class.
0
votes
0 answers

How to use wide characters in ncurses TextBox?

I need to use get_wch() to get unicode characters with curses in python. ch = stdscr.get_wch() I want to use TextBox to get chars. However, it seems it returns just ascii characters. How can I print unicode chars with TextBox?
Ahmad
  • 8,811
  • 11
  • 76
  • 141
0
votes
1 answer

Restrict a Regex search & replace to certain records

I have batches of records to which I am applying standardizing formatting. Each batch has several header records which should not be touched, followed by hundreds of user records. One such formatting is to add a full-stop after any initial or…
Lyle
  • 1
  • 1
0
votes
0 answers

TextPad regular expression negation with a min/max

In TextPad I am trying to find any line that does not start with a 6 or 7 digit number. So it should find all lines that do not look like: "123456" or "1234567" I wrote this expression: ^[^(\d{6,7})] It is not finding lines that start with only 2…
Sam Brown
  • 3
  • 4
0
votes
0 answers

Does my code work for accessor and mutator methods?

I am supposed to do a project where I declare and instantiate 5 empty card slots called myHand using arrays, and I will need an advanced mutator method that sets a single card into the hand, and an advanced accessor that gets a card from myHand.…
Edward
  • 5
  • 3
0
votes
2 answers

How To Identify Files with Identical Content But a Different Arrangement of the Data

I'm testing an upgrade we ran on an application that processes data. I took archived data that has already run through the system before and comparing it with output from the newly upgraded application. I'm noticing that the data is the same but the…
acecabana
  • 385
  • 6
  • 16
0
votes
0 answers

error during compiling no such files or directory on textpad

I've downloaded textpad. I changed the modality to make it executable. but whenever I run every cpp program. I get the error gcc:error: no such file or directory during compiling. I have this problem either by running the program on textpad or by…
0
votes
2 answers

Textpad: Java cannot run with package

I tried to compile and run Java 10 file with TextPad, it works nicely until I decide to put the file in a folder and use Package(namespace). It seems to be unable to load classes, I get this error: Error: Could not find or load main class…
Lord Yggdrasill
  • 3,197
  • 4
  • 26
  • 42
0
votes
2 answers

Error: Could not find or load main class in Textpad 8

I've been trying to get back into programming and I've been redoing some old labs. I'm setting up Textpad 8 so I can run java applications and it works fine until I add a package statement like so: package pkg; public class inPkg{ public static…
Danny
  • 3
  • 4
0
votes
1 answer

Find in files does nothing

After the latest Windows 10 upgrade cleared all of my Textpad settings, I have been feeding them all back in again. However, Find in files now does nothing at all. The List option in the keyboard mapping setup also does nothing. Same for Compare…
IanH
  • 121
  • 1
  • 11
0
votes
2 answers

TextPad Replace Character and Line Feed with Nothing

How do I replace a line in TextPad ' with nothing (ie: delete lines with just that one character)? I have an Excel Spreadsheet containing three columns: Column A - single quote Column B - some number Column C - single quote plus a comma There are…
LeHill
  • 449
  • 7
  • 13
0
votes
2 answers

transpose column into rows through delimiter

I have data in the following format. The values are in one column. I need to transpose them keeping the delimiter. I tried replacing the values using regular expression '\r\n' but it does nothing. 653 |110 |1 January 2016 |Default |Automatically…
ThePatBan
  • 107
  • 2
  • 15
0
votes
4 answers

How to remove invisible line break character

I have big data at excel, and some cells contains html codes. These cells have line breaks in them. I tried to replace line breaks (Alt+010, \n) but excel said there is no char like this. When I copied cell to notepad, there is no line break. When…
sipdorus
  • 963
  • 1
  • 12
  • 28
0
votes
1 answer

Textpad syntax definition for files without extension

In Textpad, is there a way to assign a syntax definition to files without an extension? The default document class does not appear to allow assignment of a syntax definition file. I want to assign my PHP definition to files without an extension.
0
votes
1 answer

Search files having more than one strings in different lines Textpad or Notepad

How can I search with/without using regex to find all the files in a directory having two or three words , like I want to search apple and ornages I tried this : in the Find what -> apple.*oranges also using reg ex in the Find what -> ^(apple &…
Raulp
  • 7,758
  • 20
  • 93
  • 155