3
Answers

Linking vb.net GUI to c++ DLL functions

justine_km

justine_km

21y
2k
1
Hi, I'm currently doing an assignment on how to link vb.net's GUI to C++ DLL functions. I am not able to find much information on the internet on codes or information on how to link them, do anyone have any relevant information or codes on the linking? Thanks!!
Answers (3)
0
Suthish Nair
NA 31.7k 4.6m 14y

If this query got resolved then please Accept the post that helped you as Answer.
So other members can easily find the answers.
0
Suthish Nair
NA 31.7k 4.6m 14y

Sam is right.

change your code too
1. if (chineseGrade=="A")
2. use double chineseGPA or chineseGPA = Convert.ToDecimal(4.0);

0
Sam Hobbs
NA 28.7k 1.3m 14y
chineseGrade is a string variable but you are using it as if it is a method. The compiler is not psychic and neither are we. What is it that you need to do? As best as I understand your question, you are calculating a GPA for Chinese differently than for other people but as far as I know the Chinese are the same as everyone else. So perhaps the answer is that you can just use the same calculation for Chinese people as everyone else.