I have spent a little while reading through the messages trying to get a handle on this problem I am having.
 
I am trying to compile a c# app that uses the c1 components.
 
I followed someone elses example of how they wrote the license tags.
 
heres a snipet of my build file.
 
<target name="build" depends="init" description="compile the code">
                <license input="${sps.src}\licenses.licx" output="${sps.out}\SalesPlanningSystem.exe.licenses"
                  licensetarget="SalesPlanningSystem.exe">
                        <assemblies>
                                <includes name="${sps.out}\C1.Win.C1List.dll"/>
                                <includes name="${sps.out}\C1.Common.dll"/>
                                <includes name="${sps.out}\C1.Win.C1Sizer.dll"/>
                                <includes name="${sps.out}\C1.Win.C1Input.dll"/>
                                <includes name="${sps.out}\C1.Win.C1FlexGrid.dll"/>
                        </assemblies>
                </license>
                <csc target="winexe" output="${sps.out}\SalesPlanningSystem.exe" debug="${sps.debug}" win32icon = "${sps.src}/App.ico">
                        <references>
                                <includes asis="true" name="System.dll"/>
                                <includes asis="true" name="System.Data.dll"/>..........
 
 
The app compiles and runs, but I keep getting those annoying c1 popup boxes when starting the app.
I don't get those when compiling from the gui.
 
What am I doing wrong?
 
 
Thanks,
Steve G

Reply via email to