Reetesh's Q&A profile
Visual Basic Third Party Component for Printing?
Hi, Does anyone know where I can purchase a good third party component for printing to the printer for VB. NET I have a bunch of documents that need to be printed and the PrintDocument object is just not cutting it. Thanks ...Show All
Visual Studio Team System Can't install CTP6 "requires one of those editions of Visual Studio 2005 be installed before you "
Hi, I'm trying to install the CTP6 in my machine to start working, but I have the following error during the installation of CTP6 Required: Visual Studio 2005 Visual Studio 2005 Team Edition for Database Professionals requires Visual Studio 2005 Professional Edition, Visual Studio 2005 Team Edition for Developers, Visual Studio 2005 Team Edition for Testers, Visual Studio 2005 Team Edition for Architects, or Visual Studio 2005 Team Suite. Visual Studio 2005 Team Edition for Database Professionals requires one of those editions of Visual Studio 2005 be installed before you install Visual Studio 2005 Team Edition for Database Professionals. I already have installed VS2005, and I'm running Windows Vista RC1, an ...Show All
SQL Server Child packages: Execute them all out of process?
HI, I have some parent parent packages that calls child packages. When I added a bunch of packages, I faced the buffer out of memory error. I then decided to set the child packages property ExecuteOutOfProcess to TRUE. I noticed that the execution time is longer now. Is this a good practice to set the ExecuteOutOfProcess to true If so, is it normal that the execution time is longer Thank you, Ccote ccote wrote: HI, I have some parent parent packages that calls child packages. When I added a bunch of packages, I faced the buffer out of memory error. I then decided to set the child packages property ExecuteOutOfProcess to TRUE. I noticed that the execution time is longer now. Is this a good pra ...Show All
Visual Studio 2008 (Pre-release) Error: Mapping not found in workspace
I just start a new model from a simple database and receive this error when I try manipulate some data: The mapping for Entity Container 'ADONextLib.ADONext' was not found in Workspace. The samples from the CTP is working properly. There is a connectionstring in a .config file called "ADONextLib.ADONext" Occurred that in sometime I clicked in SSDL, CSDL ans MSL files and exclude from project and than when I include them comeback I didn't mark "Copy to output directory if newest" Now it's work properly! Thanks and sorry! ...Show All
SQL Server Just a couple quick questions
I need to: Copy an existing production database to a new database on the same server; this will be used for development. Copy an existing table for backup purposes in preparation for deleting a couple fields from the table (precautionary process really). I've been out of the database swing if you will for a while, just now getting the opportunity to get my feet wet so to speak. I can use either Enterprise Manager or connec to the database via ODBC and make the copies/deletes there, but I'm looking to do this via EM or SQL command. Any help or direction would be greatly appreciated! Thanks! Bobby You can use Copy Database Wizard. Right click on your production database, select Tas ...Show All
Windows Forms working with MySQL data bases from windows ODBC connection
Here's the problem: I've installed the mysql odbc connect (v3.51.12) and I've created a data source connection ...added a DataSource to my project binded the data with a dataGridView and all worked well. My dataGridView fills up with the data from my db. All fine until this point. Now I want to be able to save the changes I make to the data in my dataGridView and update(insert) the data in my data base. How can I commit those changes I added a data source to the solution, and dragged the table from mai data set to the form automaticly generating a dataSet, tableAdapter, BindingSource and Navigator. the problem is that the table Adapter does not have an update method...I might just think it cannot be done. ...Show All
.NET Development Login Page validate against the server sql database
Hi, I want to create a login page that can redirect to the welcome page and display welcome username. But I don't know how to validate the username and password entered by the user against the server database using ado.net. Can anyone help me with it Hi. what you are giving me is an example using sql and vb to write the codes.. But some of the lines I don't understand. Can you write some comment beside the codes. The words that are bold are some i don't understand. private bool ValidateUser( String userName, String password ) { SqlCommand cmd = new SqlCommand ( "Select UserName, Password From User Where UserName = @UserName " ); cmd.Parameters.Add ( "UserName& ...Show All
SQL Server Integrate more than one SSIS packages into one package
Hi I'm new to SSIS field. I'm importing data from flat files to sql server 2005 through SSIS packages. I have around 30 packages which transfers data from flat files to corresponding database tables. I want a single package that will run all the 30 packages by running that single package. Like in a single stored procedure we can run multiple stored procedure, I want the same solutions for my packages. Is there any method which can solve the above issue Please kindly guide me . Its urgent. please reply soon. Thanks in advance. You can actually have them execute all at the same time by NOT connecting them to each other with the control flow arrow connectors. T ...Show All
SQL Server How to Cluster Windows and SQL Server Videos
I thought this might be useful for anyone who's looking at learning how to cluster. They're a series of mini-webcasts on how to create a SQL Server cluster from the ground-up (architecture, to windows, to SQL Server 2005). Windows and SQL Server 2005 Clustering Architecture Description: Before you start learning how to cluster, this video will show you the basics on how clustering in Windows 2003 and SQL Server 2005 works. Brian shows the basic architecture on clustering as well as the checklist that you would want to follow before starting to cluster. Clustering Windows 2003 R2 Description: In this presentation, you'll learn step-by-step how to cluster Windows 2003 R2. Brian shows you how to configure ...Show All
SQL Server ROLLBACK TRANSACTION
Hi everyone, In the following T-SQL code snippet,when I attempt to insert more than one record I encounter an error because of the following trigger but I have some doubts about the performation of ROLLBACK TRANSACTION in here. So there is only one transaction occured in the specified table that contain both trigger and the specified table however I supposed that when we call ROLLBACK TRANSACTION, the transaction is aborted. But the code run the Raiserror statement which is located in after the ROLLBACK TRANSACTION statement. So why do this code( Raiserror) is run Should not it be terminated because of the ROLLBACK TRANSACTION statement ALTER TRIGGER kimlikNo_Degistir ON Bilgi FOR INSERT AS IF(SELECT COUNT(*) FROM Inserted) > 1 BEGIN ...Show All
Windows Forms DataGrid, Detecting doubleClick on Row header not working properly.
Im using the code below: private void dataGridMessages_DoubleClick( object sender, System.EventArgs e) { System.Drawing.Point pt = this .PointToClient(Cursor.Position); DataGrid.HitTestInfo hti = dataGridMessages.HitTest(pt); if (hti.Type == DataGrid.HitTestType.RowHeader) { MessageBox.Show("double clicked clicked row " + hti.Row.ToString()); } Clicking on half of the rows work but other half does not. Any ideas ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Runtime footprint on 360
How much RAM is left to play with on the 360 once the launcher and runtime has loaded That would only let me know the available managed heap space - I'm assuming there is an unmanaged heap knocking around as well. An official breakdown of memory allocation would be useful as well - for instance, do the managed and unmanaged heaps fight for space, or do they have their space already allocated. And what goes into each heap when stuff is created - for instance with vertex/index buffers, textures, sounds. ...Show All
SQL Server Filtering Measures by Measure Groups
I'm trying to create scripts to convert foreign currencies. I would like to create the script so that the measures are not hard coded but would be specified by MeasureGroup, something like the following: Filter([Measures].AllMembers, Measures.CurrentMember.MeasureGroup = "Policy Measures") Is it possible MeasureGroupMeasures (MDX) Returns a set of measures that belongs to the specified measure group. Syntax MEASUREGROUPMEASURES ( MeasureGroupName ) ...Show All
Visual Basic Dataset.ReadXmlSchema problem
Ok folks i've now got a flat fore head from all of the head banging on the wall I've been doing so I need your help!... I am trying to read in an xml document against a xml schema using the dataset.readxml and dataset.readxmlschema methods. See code below... Public Sub ReadXML Dim settings As XmlReaderSettings Dim reader As XmlReader Dim strSchemaLocation As String Dim objDataSet As New DataSet ' First check the schema is where it should be If Not File.Exists(strSchemaLocation) Then Throw New BespokeException( Nothing , BespokeException.ErrorType.FILE_NOT_FOUND, "Cannot find file: '" & strSchemaLocation & "'" ) End If Try ...Show All
Visual Studio Report Viewer does not work for me
I have this Report Viewer that I add to a windows form....and i bind it to a RDLC report and I add a new data souce...I configure my TableAdapter and when i click preview data and pass it the parameters it shows the correct data.....But when i try and view my data while running my app I get "Data Source Instance has not been set for "MyDataSource"......Is this the correct way to bind my report to the datasouce in my Form that holds the report Load Event this .getShipperForReportTableAdapter1.Fill( this .eTFreightDataSet1.MyDataSource, 10, true , 186, 10, true ); this .reportViewer1.RefreshReport(); I dont see any data though whats wrong......I even go to Report -> DataSources and Remove and Add the datas ...Show All
