PureBytes Links
Trading Reference Links
|
On Mon, 29 Dec 2003, c wrote:
> Hi all
>
> I tried but I cant do it . I want to assign an array with the following
>
> parray[1]="nameofworkspace=""+nameofworkspace+";
>
> ie meaning this would end up in the array from the example above
>
> parray[1]=nameofworkspace="my_test_workspace"
>
> and if you dont understand that I want to put " into the array.
>
> Any suggestions , I am clean out
var: parray[100]("");
parray[1] = "nameofworkspace=" + GetWorkspaceName();
I don't know that there is a function 'GetWorkspaceName()', but
if there is then the above lines will work.
Mike
|