Questions tagged [memo]

144 questions
1
vote
3 answers

Picking the maximum value from an alpha-numeric column in MS Access

I've a table that has a column with data type 'Memo'. This field contains values like "X003", "X0022", "X002", "X0030", "X0031", "X004". In short the first "X00" part is common, and the rest part is a integer. I want to select that row which…
Krishanu Dey
  • 6,326
  • 7
  • 51
  • 69
1
vote
1 answer

backup blackberry application data programmatically

I'm developing an application in blackberry to backup its data, BBM chats, memos, tasks, calender notes, password keeper data etc. which can be synchronized with other blackberry phones (in case a user purchases a new blackberry device). How can I…
nikita sharma
  • 169
  • 1
  • 8
1
vote
1 answer

Access: Comparing Memo fields - Not In

Good morning! I am seeking guidance on an issue I have been stuck on since last week, but hopefully there is an easy solution. As you know, you cannot directly link/join memo fields in MS Access. I created a query last week to return rows where a…
user1789593
1
vote
3 answers

After capturing photo camera is till in photo capturing mode

I have a application to capture photo which will display on ImageView (and do some more work internally). Problem is here when I open camera and after capturing photo, save and discard option come, after clicking on save button it again go to the…
Vinit ...
  • 1,409
  • 10
  • 37
  • 66
1
vote
2 answers

Access 2010 query truncates memo field

I have the following query in access used in a report for data selection. It works except that it truncates the What_happened field. The sql database has the what_happened field as a nvarchar(max) - access 2010 see's it as a memo field. I need to…
Stephen Hathaway
  • 125
  • 1
  • 11
1
vote
2 answers

Convert Memo to Text

I've got an msaccess database which have been created in Access 2002. 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 that I have a table named tblItms_F001 in the…
jay1648
  • 76
  • 1
  • 6
1
vote
1 answer

1 popup menu and 2 memo's, which memo is the menu invoked from

I have 2 memo's on a form and 1 Tpopupmenu I have assigned the popup menu as the popup menu for both memos. The pop up menu has a couple of menuitem assigned to it, when I right mouse click on either of the memo's and click on one of the menu…
colin
  • 2,983
  • 6
  • 41
  • 49
1
vote
1 answer

use Multiple Lines Of a Tmemo in the arguments of a function

I am using the function here The Function Here I do this, StartProcess('b4a_c2dm.bat','send ' + Trim(edit1.Text)+' ' + Trim(edit2.Text ),False,False); This works great for the edit1.text (This is the name to send message to) There will be a memo1…
grant1842
  • 357
  • 1
  • 7
  • 23
0
votes
0 answers

React Native: Flatlist containing vector Icon, re-renders on scrolling even after using the memo

Flatlist re-renders on scrolling. I have used memo. I notice that causes the re-renders. Using simple Text view does not re-renders but as I add the icon it started re-rendering on scrolling the list.
CrackerKSR
  • 1,380
  • 1
  • 11
  • 29
0
votes
1 answer

How do I add placeholder text for a Memo in a Python FMX GUI App?

When using TextPrompt on my Edit like in this answer, then it works, but using TextPrompt for my Memo does not work. When using it on my Memo, I get an error: AttributeError: Error in setting property TextPrompt Here's my full code: from delphifmx…
Shaun Roselt
  • 1,650
  • 5
  • 18
  • 44
0
votes
1 answer

Why do

For a school task, I need to display certain news articles about the climate in a Delphi FireMonkey Form. I have a Long Text field that contains the article's body in Microsoft Access. When I try to populate a Memo component on my Delphi FMX form…
0
votes
2 answers

convert memo field in Access database from double byte to Unicode

I am using Access database for one system, and SQL server for another system. The data gets synced between these two systems. The problem is that one of the fields in a table in Access database is a Memo field which is in double-byte format. When I…
KhD
  • 453
  • 3
  • 11
  • 29
0
votes
0 answers

Typescript 5.0 and React.memo

After updating TS to 5.0 version stopped detecting memoized component type via react memo. I have component: export const UserList = memo((props): UserListProps) => { .... } And when I use it, ts shows type like that: export const…
0
votes
1 answer

Will the component be re-rendered every time I enter the page even though the data hasn't changed?

I'm not deep understanding how memo works with the component. I have component like this. It is very simple and it is static. const Home = memo((props: any) => { useEffect(() => { console.log('home changed'); }, []) return ( …
Hai Tien
  • 2,929
  • 7
  • 36
  • 55
0
votes
0 answers

Optimize component in React js, so that items are not rendered every time

When i select item all items are re-rendered. How can I make it render only the one I change. Only state that is changing is 'selected'. Items are always same. So how can i make that only one item is gonna re-rendered base on 'selected' state. Im…