KirbyWallace
Programmer
Code:
String[] abc = {"N",nPage.toString(),text};
vBarcodes.addElement(abc);
Is there a way to condense this into something like:
Code:
vBarcodes.addElement(String[] abc = {"N",nPage.toString(),text});
I've tried about every combination of parends that I can think of!