Any youtube videos may help me write a VBA macro to append text to multiple topics's notes? thx
hi,
from this post i knew that it's now NOT possible to paste text into multiple nodes' note:
https://community.mindmanager.com/topic/208-paste-to-multiple-topics
currently, i routinely have to do so. it uses up time so i wanna change.
i knew some programming PRINCIPLES, but don't know much.
just dig out the API, i found that.
suppose i selected a topic,
1. then "topics object's UnfilteredSubTopics Property" could tell me what topics are under the selected topic.
2. then "notes object's insert method" will allow me to add text at start (if cursor is 0) or append (if cursor is -1).
then make a loop of something like:
for cycle=0 to end
[topic.insert=text]
then will be ok.
is it like that?
or could someone write it up for a small amount of money?
thanks
i would like to use the app studio if it could do it, /w student discount, thanks
i would like to use the app studio if it could do it, /w student discount, thanks
https://www.freelancer.ca/projects/visual-basic-visual-basic-for-applications/mindjet-mindmanager-vba-macro
seems could pay for just 25USD.
i'll donate 25USD and host a project there if no response here.
thx
https://www.freelancer.ca/projects/visual-basic-visual-basic-for-applications/mindjet-mindmanager-vba-macro
seems could pay for just 25USD.
i'll donate 25USD and host a project there if no response here.
thx
I would be happy to help with this, but I cannot compete with $25 :-) I would be interested to see the results though.
Please contact Nigel Goult at Olympic about a long term trial key for App Studio.
I would be happy to help with this, but I cannot compete with $25 :-) I would be interested to see the results though.
Please contact Nigel Goult at Olympic about a long term trial key for App Studio.
just tested codes,
if the macros only deal /w single topic and you select multiple topics,
it wont work like the original, build in paste note function.
https://community.mindmanager.com/topic/1847-worth-to-spend-time-learning-mms-vba-the-winwrap-basic-language#comment-4671
a thought was there, may be implement later.
thanks
just tested codes,
if the macros only deal /w single topic and you select multiple topics,
it wont work like the original, build in paste note function.
https://community.mindmanager.com/topic/1847-worth-to-spend-time-learning-mms-vba-the-winwrap-basic-language#comment-4671
a thought was there, may be implement later.
thanks
---