2
Answers

setup file

Sneha Prasai

Sneha Prasai

9y
289
1
I made a project which consists of many number of forms and crystal reports. I have used MySQL workbench as a localhost for storing database. Now since i have completed the project, i couldn't make a final setup file. I installed InstallShield for making setup file but the output of the setup file created by this couldnt include cystal reports.  
This is actually a user demand project and i need to make the setup file which i could give them too.
Please anyone help me in this.
Thank you  
Answers (2)
0
Jithil John

Jithil John

NA 1k 59.5k 9y
$scope.countries = [{ 
"name": "USA",
"id": 1
},{
"name": "Canada", "id": 2
}];


$scope.states = [{ 
"name": "Alabama",
"id": 1,
"countryId": 1
}, {
 "name": "Alaska",
"id": 2,
"countryId": 1
}, {
"name": "Arizona",
"id": 3,
"countryId": 1
}, {
"name": "Alberta",
"id": 4,
"countryId": 2
}, {
"name": "British columbia",
"id": 5,
"countryId": 2
}];



<select data-ng-model="country" data-ng-options="country.name for country in countries" data-ng-change="updateCountry()"> 
<option value="">Select country</option>
</select>

<select data-ng-model="state" data-ng-options="state.name for state in availableStates">
<option value="">Select state</option>
</select>


$scope.updateCountry = function(){   
$scope
.availableStates = [];
angular
.forEach($scope.states, function(value){
if(value.countryId == $scope.country.id){
$scope
.availableStates.push(value);
}
});
}
Here is a working plunk for you.