Search results for query: *

  1. D

    Error in running Crystal Reports 10-Very Urgent

    I believe the preferred deployment method is by use of the Merge Modules, rather than including the individual dll's. The Crystal Reports (Business Objects) web site has extensive instructions for deployment on both .Net 1.1 and 2.0. The Merge Modules resolve all of the dependencies.
  2. D

    Crystal Report View Page Position

    gopal2006 - Thanks for your help! I tried the DisplayBackgroundEdge property setting & it doesn't make any difference. I am posting a .gif of the image:
  3. D

    Crystal Report View Page Position

    Thanks for your reply. The problem I am having is within the Main Report Panel; toggling the Show Tree button creates a blank white space to the left of the Main Report Panel. But the problem I have is within the Main Report Panel. It's as if there was some sort of Alignment setting that...
  4. D

    Crystal Report View Page Position

    I have a VS .Net 2003 application using a Crystal Report Viewer where there is a wide margin to the left side of the displayed page. I set Viewer.DisplayGroupTree to False, so all that shows is the Main Report panel. Within that panel, the page has a wide margin to the left. The result is...
  5. D

    SQLExpress - SQL DataAdapter Conflict

    I have narrowed this problem down as follows. After I connect to the server, I get & display the names of the databases for that server. After a database is selected, I get & display the names of the tables in that database with the following code: For each tbl in...
  6. D

    Visual Studio 2005 "How do you create a new sql database?"

    Gary - what was your connection code? Here is code that works in connecting to SQLExpress: Imports Microsoft SQLServer.Management.Common Imports Microsoft SQLServer.Management.SMO Public SQLServer as Server Dim SC As ServerConnection = New ServerConnection Try ' Recreate connection if...
  7. D

    SQL Server / SQL Express?

    Well, I'm still confused about the SQL versions. The product spec chart for VS 2005 Pro shows that the SQL version is the Developer version. But when I use the SQL Management Server Express tool, everything shows up as SQLExpress and the connection strings I use are all Express strings. So...
  8. D

    SQLExpress - SQL DataAdapter Conflict

    I have a VS 2005 Pro VB - Windows XP Pro Application that connects to an SQLExpress Server, obtains & displays database & table information, and then makes an SQLDataAdapter connection to a selected database to obtain data from a selected table. My SQLExpress Connection String is...
  9. D

    SQL Server / SQL Express?

    Is the SQL Server that is distributed with Vis Studio 2005 SQL Express? Or is SQL Express only available as the Download? An MSDN article "Using SQL Express from Visual Basic 6" talks about an "Express Manager" that I can't find. Any help appreciated. Later That Same Day .... Found the...
  10. D

    Dim dr as DataRow = ?? in VS 2005

    In VS 2005 many of my datarow statements result in the following exception: "Variable (DataRow) is used before it is assigned a value. A null reference exception could result at runtime." Is there a way to "Dim drows() as DataRow = Something" to prevent that exception? What is that Something?
  11. D

    Containing object within VB.NET

    The post was responding to JuggaloBrotha's comment in #4 above. Unhappily Adox won't seem to go away: there are two circumstances where Adox seems to be the only solution to managing Access databases under .Net and ADO. Namely (a) creating a new database and (b) applying an index to a...
  12. D

    Containing object within VB.NET

    To resolve the required field problem with Adox tables, include the following statement AFTER you've done the Column Append statement: objTable.Columns(strColumnName).Properties("Jet OLEDB:Allow Zero Length") = True where objTable is previously declared new Adox table. Don Seydel
Back
Top