Home » U++ Library support » U++ Core » Gate() or flow control problem
Re: Gate() or flow control problem [message #10465 is a reply to message #10460] |
Tue, 10 July 2007 22:34   |
 |
mirek
Messages: 14265 Registered: November 2005
|
Ultimate Member |
|
|
pntkl wrote on Tue, 10 July 2007 11:14 |
Also, I can't find stricmp(), nor CompareNoCase() in Assist++. Is there an easy way to search through the UPP source code (with TheIDE), in order to find out how they are written? (I'd normally use grep/sed/awk, but I was hoping TheIDE had similar functionality)
|
Ctrl+Shift+F (Find in files).
Quote: |
<Edit2>
I used PromptOK(strColFirstName, etc), and it seems that userarray.GetColumn(i, N) isn't returning the column value. Get(i, N) didn't work for me either. I was thinking about using a char array, but that won't help me--when I can't get a column's value... 
</Edit2>
|
Yes, I have just noticed another trouble:
for(int i = rcount; i >= 1; i--)
In C/C++/Java/C# etc... array indexes start at 0, which is adapted in ArrayCtrl as well. Therefore I think this should be
for(int i == rcount - 1; i >= 0; i++)
Mirek
|
|
|
Goto Forum:
Current Time: Wed Jul 16 10:12:10 CEST 2025
Total time taken to generate the page: 0.02963 seconds
|