| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Complete Property List >====== PROP:IPRequestCount ====== | [[prop intoolbar.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop items.htm|{{btn_next_n.gif|Next page}}]] | | || **IPRequestCount** is a read/write property used exclusively by the SoftVelocity IP Driver that sets the number of requests to be sent to the server in a single MRP (Multiple Request Packet). The server will then execute the specified number of statements, and return the results in an MRP packet to the client. If this property is set to -1, the current packet is immediately sent. If this property is set to zero, the current packet is reset, and nothing is sent to the server. This property can also be used to determine how many records were actually read. ** ** **Syntax:** **//entity//****{PROP:IPRequestCount} = ****//number//** | //Entity// | the label of a FILE or VIEW | | //number// | the number of requests to be sent to the server in a single MRP. The maximum value is 1,000,000. | ** ** **Example:** **myfile{PROP:IPRequestCount} = 20       ! create packet with 20 requests** **NEXT(myfile)                           ! send packet to server with 20 NEXTs** **nRecNum = myfile{PROP:IPRequestCount}  ! get number of records in MRP packet**