Hi !
is someone can help me with the correct synthax to display proper list names in the list box ?
I did this :
pParamInfo->ParamType = ptListBox;
pParamInfo->Caption = "wave type";
pParamInfo->ListBoxStrings = "W1", "W2", "W3", "W4", "W5", "W6", "W7","W8"";
and I got that when using the module :
W1"
"W2"
"W3"
"W4"
"W5"
"W6"
"W7"
W8
that is weird.
thanks for your help
Olivar
listboxstring
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
this one was easy :
pParamInfo->ListBoxStrings = "W1,W2,W3,W4,W5,W6,W7,W8";
but if there is any "space" like "W1, W2... you'll get an process error.
pParamInfo->ListBoxStrings = "W1,W2,W3,W4,W5,W6,W7,W8";
but if there is any "space" like "W1, W2... you'll get an process error.
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
- oli_lab
- Member
- Posts: 1286
- Location: Brittany, France
- Contact:
My module is copy intolerant.
Don't know why yet.
Don't know why yet.
http://oli-lab.org
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
Win11 Ryzen9/32GB RAM - RME MADIFACE - SSL alpha link 4-16 - OSC capable interfaces
follow OLI_LAB adventures on Mastodon
@olivar_premier@mastodon.social
