Questions tagged [memo]
144 questions
0
votes
2 answers
Convert Memo to Text
Exact Duplicate of : Convert Memo to Text
Hello, I've got an msaccess database which have been created in MS Access 97. I only have access 2003 and 2008 in my computer. so I've converted the database into access 2003 format.
The problem I have is…

jay1648
- 76
- 1
- 6
0
votes
4 answers
Append text to memo using Win API
I'm trying to append text lines with this code
SendMessage(Form1.log.Handle, WM_SETTEXT, 0, Integer(PChar(textLog)));
// textLog are some lines eg 'Program started at xxx' etc
but it doesnt append, just set new text

user1239398
- 1,741
- 2
- 11
- 7
-1
votes
1 answer
Preventing The Entire List Re-Render on Item Addition in React Without Using memo
Please consider the following code: https://codepen.io/kyxey/pen/XWEWBRY
const { useRef, useState } = React;
function App() {
const inputRef = useRef(null);
const [jobs, setJobs] = useState([]);
const addJob = () => {
const newJob =…

KYXEY
- 98
- 8
-1
votes
1 answer
Poor coding or what
So I jave Cubot J3 smartphone and I was using default Calendar app of the phone.
After entering the text in reminder I saved It and after that half of text vanished.
Is there a way to retrieve that data?

Ksadra
- 1
-1
votes
2 answers
Writing MEMO-field in DBF table by PHP
PHP extension dbase not support read/write operations with DBF files. Are there any third-party solutions (libraries, classes) for writing data in the field MEMO?

starkeen
- 11
- 6
-1
votes
1 answer
RandomRange TMemo Lines
I would pick a random line from Memo1 and then run it as a link, I tried this code:
ShellExecute(Handle, 'open', PAnsiChar(RandomRange(Memo1.Lines[1], Memo1.Lines.Count)), nil, nil, SW_SHOWNORMAL) ;
But an error appears:
Unit1.pas(86): E2010…

Giacomo King Patermo
- 829
- 3
- 13
- 25
-2
votes
1 answer
React - Memo not working when a function is exported to child component by props
I have a problem in React. The problem in question is about the use of the memo, basically, I have a list generator application, and I use the memo in the list item(child) component, so far so good, working.
The problem is that when I export…

Victor
- 1
- 2
-3
votes
4 answers
Rotate VCL components in Delphi XE2
Now I adapt my app for tablet PC. I ask how can I fixate form when the screen was rotated. Good people says that I must adapt my app for portrait orientation and they're right.
Some forms is very specific and it's very hard (maybe impossible) to…

0xFF
- 585
- 1
- 6
- 22
-4
votes
1 answer
Comparing 2 items of an listbox and 2 lines of a Memo
How to compare 2 items of an listbox and 2 lines of a Memo?
How do I give an item of an Listbox a variabele? How do I give a line of a Memo a variabele?

Ömer Bastos
- 49
- 1
- 7