1- I didn't get how can I appear in the editor the snippet list? Is there a specific code that I have to insert or I have to load a file for it?
Please send me a full example.
2- Another question is I have used this code to appear a completion list:
syntaxEditor1.IntelliPrompt.MemberList.Clear();
syntaxEditor1.IntelliPrompt.MemberList.Add(new IntelliPromptMemberListItem("one", 0));
syntaxEditor1.IntelliPrompt.MemberList.Add(new IntelliPromptMemberListItem("two", 0));
syntaxEditor1.IntelliPrompt.MemberList.Add(new IntelliPromptMemberListItem("three", 0));
syntaxEditor1.IntelliPrompt.MemberList.Show();
but how can I get an intelligent list that show me predefined methods?
3- My last question is how can I enable to show "Parameter Info" "Smart Tags" and "Quick Info"?
Thinks,