Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
9answers
554 views

Why C/C++ have memory issue?

I have read lots of programmers saying and writing when programming in C/C++ there are lots of issue related to memory. I am planning to learn to program in C/C++. I have beginner knowledge of C/C++ ...
4
votes
1answer
105 views

problems with memo.lines.add

I am trying to make a chat application that will post a message into a memo in the form like this: USERNAME-> Message but it is posting to my memo like this: USERNAME Here is my code: const ...
2
votes
2answers
124 views

Is there any way to disable selecting of text in a memo control?

Is there any way to disable selecting of text in a memo control because it's very anoying. The memo is Read Only.
2
votes
1answer
366 views

Delphi - Get the whole word where the caret is in a memo

I need to be able to select the whole word of a TMemo if the caret is directly adjacent or in a word in the memo. Consider the following (where | is a caret) Here is some text| = Select text Here ...
2
votes
2answers
331 views

Delphi - AutoComplete Memo

I am requiring a Memo with Auto-completion functionality. Ultimately, i would like the ability to display a custom auto-complteion list when the user presses a hotkey (Ctrl-space) similar to delphi ...
2
votes
5answers
376 views

Delphi. Analog of Memo/RichEdit

Does anybody know is there Analog of Memo/RichEdit? Demand: to number lines, to load big files (more than 5 MB) from a stream. Thanks!
2
votes
1answer
592 views

How to use Excel VBA to extract Memo field from Access Database?

I have an Excel spreadsheet. I am connecting to an Access database via ODBC. Something along then lines of: Set dbEng = CreateObject("DAO.DBEngine.40") Set oWspc = dbEng.CreateWorkspace("ODBCWspc", ...
1
vote
1answer
109 views

Buggy cursor in FireMonkey (Delphi XE2)

Delphi XE2 update 3, Windows 7. I have a memo, it's cursor is crIBeam. But when I move a mouse over the memo the cursor changes to crDefault and back. The swap repeats vary fast. I took a picture ...
1
vote
1answer
76 views

Long arrays caching issues

I noticed lately that scanning long arrays with a loop makes the performance of caching decrease. Can you guys please explain why this happens and what are some work arounds of this problem. I'm ...
1
vote
2answers
82 views

Microsoft Access memo datatype to MySQL Datatype

What datatype in MySQL would be best to use for data that was in Memo on Microsoft Access?
1
vote
1answer
84 views

PHP UPDATE MSDB datetime memo Please Help me not go crazy

In PHP I am connecting to an access database using ODBC. I update several fields no problem, but I am having a hell of a time getting two of them to work. First one is of type date/time in access. ...
1
vote
5answers
1k views

Newline Inside a String To Be Shown At a TMemoBox

I'm building a String called FullMemo, that would be displayed at a TMemoBox, but the problem is that I'm trying to make newlines like this: FullMemo := txtFistMemo.Text + '\n' + txtDetails.Text ...
1
vote
2answers
814 views

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 ...
0
votes
1answer
61 views

How to backup memo and task in android

I have a user requirement to backup memo and Task. I don't have any idea about where is the location actually stored these things in android phone. Is there any default uri/path is reserved for this? ...
0
votes
1answer
139 views

Delphi - Find text in large TMemo

I have a TMemo which contains quite a lot of texts, 80M (about 400K lines). The TMemo is set with WordWrap = FALSE, there is no need to find texts that wrapped in 2 lines. I need a fast way to find ...
0
votes
0answers
74 views

MS-Access and ASP: How can I save a large data in memo field

I have a very big problem in one of my project. I use classicASP script to update a table: Set Conn = Server.CreateObject("ADODB.Connection") conn.open "DSN=Test" SQLStmt="UPDATE DATA SET ...
0
votes
0answers
60 views

Creating credit memo does not change order grand total?

Once we create a credit memo for an order on Magento, a refund takes place (online or offline). But shouldn't this also change the grand total on the order record?
0
votes
2answers
231 views

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 ...
0
votes
1answer
148 views

Access 2010: filter from multiple records in memo field?

I've poured through here looking for an answer to this, but haven't found it anywhere. I have an Access 2010 database with two tables: one with about 14k codes and definitions(all five digits, ...
0
votes
1answer
39 views

Is using copy better than retain in all the Mutable Classes of iPhone SDK?

I came to know that, it is better to use copy on @property of NSString than retain due to the problems you can get if you are provided with a NSMutableString. Is the same condition holds true for ...
0
votes
2answers
52 views

Last character in a memo field

I am looping character through a memo field but I do not know how to stop the looping. Is there an End-of-field value like the eof character? Is there a better way to determine the end of a memo ...
0
votes
1answer
287 views

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?
0
votes
0answers
189 views

Alternative of Memo in SQL Server 2005

I am shrinking log files of all database on our BD server through the job scheduler after sucessfull completion I am creating sumary of DB name and size of log file before shrink and after shrink in ...
0
votes
2answers
783 views

Convert Memo to Text

Exact Duplicate of : http://stackoverflow.com/questions/1112954/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 ...
0
votes
2answers
834 views

How do I extract data from a FoxPro memo field using .NET?

I'm writing a C# program to get FoxPro database into datatable everything works except the memo field is blank or some strange character. I'm using C# .Net 2.0. I tried the code posted by Jonathan ...
0
votes
4answers
2k views

Export MS Access Memo field and convert Unicode

I have an Access 2003 database. A table has a Memo field and I'm having issues with getting that data out. Exporting that field to a txt or csv chops that field off (255 characters) Exporting as ...
0
votes
3answers
2k views

C#: Accessing form members from another class

The point is to notify the user using the memo when a packet is received/sent in a TCP Client. The old code was extra dumb,I used a Timer that used to add text in the memo since the Timer has access ...
-2
votes
2answers
270 views

convert memo lines to string?

I am trying to send an email from a memo but I am getting an error: incompatible types Tstring and Tstrings I there any possible way to convert memo lines to a string?