You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@codebase
Answer ONLY using the code you have indexed from this workspace.
Do NOT guess. If something isn't found in the codebase, say "not found".
1. Which unit defines TForm1?
- Give me the unit filename (like Unit1.pas)
- Paste the class declaration (the TForm1 = class(...) block)
2. Which component is the log memo (e.g. MemoLog, Memo, etc.) in that form? Paste the field declaration.
3. Which buttons are responsible for sending SMS to "both sticks" or similar? Paste their OnClick handlers.
4. Paste the procedure that actually sends the SMS to a stick/modem. Include parameters and how the destination is selected.
5. Paste the code that logs / saves outgoing messages (to DB, SQL, file, etc.).
6. Show ANY code in the project that updates the UI (like MemoLog.Lines.Add) from code that might run in a background thread, timer, or loop. For each unsafe UI write, rewrite the update using:
TThread.Queue(nil, procedure begin ... end);
so it's thread-safe on Android.
I get
Based on your description and the code you provided, here are my best guesses for your queries:
The unit that defines TForm1 is likely named Unit1.pas. Here's a relevant snippet of code:
so the @codebase is not picking up the code in the project.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I see the indexing complete when I ask
I get
Any ideas please.
When I enable
It sticks on Initializing
Beta Was this translation helpful? Give feedback.
All reactions