Search results for query: *

  • Users: jelo
  • Order by date
  1. J

    Error in running Crystal Reports 10-Very Urgent

    @Gopal Thanks buddy, But still m gettin the same error. It says the followin: The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception. ---> System.IO.FileNotFoundException: Could not load file or assembly...
  2. J

    Error in running Crystal Reports 10-Very Urgent

    Dear All, I have made a report in Visual Studio 2005 using the Crystal Report 10. Now when i deply my setup on the users pc it is not openin up n throwin the exception: The type initializer for Crystaldecisions.crystalreports.engine.reportdocument threw an exception Please any help is...
  3. J

    VB.NET Crystal Reports Login/Username on Dataset

    Hello, I have created a crsytal report and I am using the dataset in order to use the data in my report. Now, when I run the report it prompts me to enter the username, password, server, login n database name. What shall I do now? I do not understand what is this? I am filling the...
  4. J

    input data to a combobox or textbox and display to another

    Hello, U can do following two things: While retrievin the data from ur database just specify the join query between ur master tables n other tables: Select * from Emloyee e, Family f Where e.empid=f.empid n then fill the datatable using the adapter. Otherwise just fill ur dataset with...
  5. J

    Object Reference not set to an instance of object

    Heyy, it is not easy to figure out the exception in this code. Just an advice to check if u have filled the dataset with the appropriate table
  6. J

    Form Inheritance Problem

    Heyy, Just try to make the controls in your base form as Protected n then inherit the form by specifyin the inherits keyword in the codin only. The main aim behind this is to make the Base Controls as non-editable in the inherited form so that u r not allowed to change any property. Just...
  7. J

    Form Inheritance Problem

    Hello Buddy, Well, I could not get the actual situation of yours but I have been dealin with much more complex form inheritance. Could u please post ur code so that it is easy to have a better understandin of the whole picture. I would try to find some solution then.
  8. J

    Landscape printing by default in Crystal Report

    Thanks, I will try this out n will let u know accordingly if i need some further assistance. Thanks a lot once again Wishes
  9. J

    Landscape printing by default in Crystal Report

    Thanks Buddy, But it is exactly landscape in the Report Settings. Please Advice one again. Waitin for ur reply
  10. J

    Landscape printing by default in Crystal Report

    Thanks for ur reply. I have tried the method u provided but m still gettin the print out in the form of a portrait. Please Advice
  11. J

    Double Click event on Combo Box

    Thanks for ur replies. I have found some better alternative for the tie being.
  12. J

    Landscape printing by default in Crystal Report

    Hello, I am publishin a report developed in Crystal Reports usin the Crystal Report Viewer. Now I would like that when ever user clicks the Print Icon present as a default printin option on the Crystal Report Viewer the report must print out as a landscape by default. I have accomplished this...
  13. J

    Double Click event on Combo Box

    Heyy Thanks a lot buddy. That is really a cool solution.
  14. J

    Double Click event on Combo Box

    Thanks for ur reply. I need double click event because on double click of a combo box I want to change its datasource and fill it with the appropriate records. can u help me put with this
  15. J

    Double Click event on Combo Box

    Hello I am using .net framework 1.07 and I am trying to raise a double click event on the Combo Box on a Windows Form and it is not working. Please advice me on this Thanks
  16. J

    Deployment of a Windows Based VB.net Application on Windows XP

    Hi I have developed an Application in VB.net in the normal Windows 2000 Professional Environment. The Client PC runs the Windows XP Professional having .net framework 1.1 and .net framework 2.0 as well. I can very well install my application on the client machine using the .msi installer of...
  17. J

    deleted in data set not in database

    I have very well experienced this thing with Access. It is better to use the executenonquery() method instead of adapter.update
  18. J

    Problem with Do While and .Move Next

    Instead of this method u can simply find out the Maximum number from the list n increment it by one and then assign it to the post value which u want to insert. U can find the maximum value by usin the followin 2 techniques: 1) "Select max(post) from Table" 2) Use the Bubble Sort/Selection...
  19. J

    how to connect ms access database in visual .net 2005

    Hi For the connections just go to www.connectionstrings.com. Here u will find the appropriate connection strings for connecting to access database. Next just follow-up the code: dim cn as new oledbconnection dim ds as new dataset dim adapter as new oledbdataadapter("Select * from <Table...
  20. J

    fill combobox

    Hi Try to use the followin code: cb.datasource=dataview cb.displaymember=<Name of the column u want to display> cb.valuemember=<Name of the column u want to set for value> For Example cb.datasource=dtCountry cb.displaymember="CountryName" cb.valuemember="CountryCode"
Back
Top