Search results

  1. Z

    Reports

    You can use Crystal Reports and this really very easy to use and you select crystal-report and then step by step you follow and use your SQL connection and then select your table then your reports ready.
  2. Z

    Crystal reports with multiple tables

    -From main menu in Visual Studio select PROJECT-->Add New Item . Then Add New Item dialogue will appear and select Crystal Reports from the dialogue box. -Select Report type from Crystal Reports gallery. -Next step is to select the appropriate connection to your database. Here we...
  3. Z

    html help plz

    <html> <head> <style type="text/css"> body { background-color:#b0c4de; } </style> </head> <body> <h1>My CSS web page!</h1> <p>Hello world.</p> </body> </html>
  4. Z

    binding data to listbox

    <ListBox Name="myListBox" HorizontalAlignment="Left" SelectionMode="Extended" Width="265" Height="55" Background="HoneyDew" SelectionChanged="myListBox_SelectionChanged" ItemsSource="{Binding Source={StaticResource Colors}}" IsSynchronizedWithCurrentItem="true"> </ListBox>
Top Bottom