hahaha
Type: Posts; User: Mike Cooper
hahaha
Hahaha
Hahaha ;)
Yup... That will work.... Just thought that this would have been logical have built in.
Slight difference... Still get an error, but now I don't seem able to put my cursor into a row on the table, although it now highlights the top blank row as if it selected.
Thanks Stephen
Yes, I did find Request_AppendRow worked fine for my purposes anyway. I thought about changing the PKG file so that instead of giving the error it would just append a row instead...
PS..
If you "Send Activate" to the grid first, then Request_insertRow works but you end up with 2 lines instead of 1
Hi Bob and Garret
Changing to Request_AppendRow works without error, but Request_InsertRow consistently gives an error if the cCJGrid has no data in it.... but works fine otherwise.
In DF19.1 using a cCJGrid.
If I send Request_InsertRow to the cCJGrid, it works properly ONLY if there are current records in the cCJGrid. If the cCJGrid is empty, this error pops up. I see...
Thanks Marco
I am dreading the jump to df20 because of this. I happen to use (character(##)) a lot in my program to provide french translations .... I am watching this thread:cool:
For me, this works.
In the studio
1. Click File
2. Click New
3. Click Class
4. Click Client Web Service Class
5. In the "WSDL URL" field enter the address as ...
Thanks Samuel
Did not know this
Get_Attribute DF_FIELD_LENGTH of R1BIN.FILE_NUMBER 3 to iMaxChunkSize // this is 16336
Move (iMaxChunkSize-2) to iMaxChunkSize
Repeat
...
I use 16336
When you are reading into that field you have to read only 16334 bytes in... I don't know why but there is some reason
Great observation. Thanks for pointing that out.
I normally find myself saying, "What the hell is this code even suppose to be doing!?"
Similarly;
DF_FIELD_NAME returns a fieldname "Recnum", but the fieldname in the SQL Table is actually "RECNUM"
It seems to return the proper case on all other fields except field 0 (ie Recnum)
I use an ActiveX button and I have to set those settings during the "Activating" message
Yup... I see that this is the solution in this case
Oh... That makes sense.
In my case its a bit different because it is not being called from a DDO. In fact, it is a popup which is used to populate choices, so it is 2 Prompt Lists side be side...
I have a cCJGridPromptList that I built and one of the cCJGridColumns has pbVisible set to False.
In the studio it models properly, but when you compile and run, the column always shows
...