Jump to content

returning hundreds of images in a rule


bcro

Recommended Posts

Let me preface this by explaining that I am not much of a programmer.

 

I've never had to write a rule returning more than 10 images tops, but for hundreds this just doesn't seem practical. There must be a more simple way. Please help...I'm sweating sandwiches of here!

 

 

if (Field("STATE") =='64' + Field("AGENT")== '7043');

 

{

return Resource("647043.tiff");

}

Link to comment
Share on other sites

Actually, I figured this out..using this:

 

 

T_STATE = Field("STATE")

T_AGENT = Field ("AGENT")

 

return Resource(T_STATE + T_AGENT +"h.tif");

else return Resource("Can Sig Default");

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...