Hila123's Q&A profile
Visual Studio Team System Good book on SQL Server Reporting Services in TFS context
Hello guys I wonder whether someone could recommend a good book on SQL Server Reporting Services. I need to create customized reports for some Team Projects and I know that there are several books out there on SQL Server 2005 Reporting Services but I was wondering if there was a book that somehow closely relates to Team Foundation Server. Thanks Gabriel Hi Gabriel, As far as I know there is not a book that tells you how to make reports with TFS. You can look at this post for a bunch of references: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1243455&SiteID=1 I can ask our developers for what references they use when building the reports. HTH mauli ...Show All
Windows Forms Trying to access another process from my Win Form
Hi, I am trying to access another process from my application. The problem is I am not able to activate this process and give tab sequences in it. This is the code I have written. What to do after this Please give suggestions. private void Form1_Load( object sender, System. EventArgs e) { Process myProc = Process .Start( "IExplore.exe" , "http://kshop/kshop/default.asp" ); int id = myProc.Id; Process .LeaveDebugMode(); Process p = Process .GetProcessById(id); // After this, how do I activate this process //SendKeys.SendWait("{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}"); //this command is not working } Oooh, trying to make a multi gmail account notifier ...Show All
Visual Studio 2008 (Pre-release) small caps
Hi can anybody know how to get small caps(just like in ms-word) in textbox or richtext box. Thanx-Nagu Hi like this " Hello How R U" here font size (11) is same for all but its look like some different ...Show All
Visual C# Why do we need Referenced Values/Pointers?(Low-Level Question)
I have posed this question to several people (including 2 of my college professors) and have not recieved what I believe to be a good answer. What I'm looking for is to understand why simple types are created as value types while complex types and user defined types are created as Reference Types. I know that that's the way that the MS Engineers designed it but what I really want to know is why did they choose to design it that way Why didn't they make objects and arrays accesible as value types Why did they make it so that we must reference them through a name-holder variable (essentially a pointer) Is it because in order to create an object you need dynamic memory allocation If this is the case then how come in C++ you can create complex ...Show All
Internet Explorer Development Problem with IE7
I build MCMS site when the user tried to upload a file (size :800k ) ( to singleattachmentplaceholdercontrol ), his browes is terminated (closed ) in the middle of the file transfer process (without some error message !!!! ) the user have IE 7 I tried to simulat the same file transfer with no problem in my computer ( I have IE 6 and IE 7) what's the problem Maybe IE 7 have some speciality Maybe it's happend because of antivirus or any programm that block uploading files Thank you Yana I'm getting the same thing. I'm on an IBM T60, with IE 7.0. .net 2 installed, VS 2005 TESD. I was building a form with a fileupload control, and when I browse for the file, the browse window is open for a few s ...Show All
SQL Server Insert after rda pull
Hello, in my scenerio i am pulling a table from msde to my ppc and then i want to insert a new record to my local table but when i try to do that i faced with an index paradox forexample: if i pulled a table with record index 1 then i am triying to insert a new record at local but at local it tries to insert index 1 again so i can't finish my operation. My primariy index is seed 1 also. How can i achieve my goal Try changing the seed using: ALTER TABLE <TableName> ALTER COLUMN <ColumnName> <DataType> (<New Seed>, <Old Step>) Hope this helps! Thanks, Laxmi ...Show All
Windows Forms Moviemaker Help!
Hi! Im having a problem with windows media movie maker. I oppen it up and after a minute it a window comes up saying: Windows movie maker has encountered a problem and needs to close. We are sorry fot the inconvenience. tatata--- Debug Send error repor Dont send I send error report but nuthing happenes.. Can sumeone tell me why it does this im afraid this is the wrong forum to post your question in. These forums are for software development and your query is more of a technical support nature. Best place to ask questions about this would be in the appropriate newsgroups (perhaps XP) over here: www.microsoft.com/communities Thanks! ...Show All
SQL Server Script Task
Hi, I am very new in Integration Services and I am using the Script task object. From what I know, it is used when you want to have a vb 2005 programming which is for accomplishing tasks that are not available in SSIS. I pasted my codes there from my vb 2005 code area. However, I get this error: Reference required to assembly 'system.xml, version = 2.0.0.0, Culture=neutral, PublicKEyToken=b77a5c561934e089' containing the implemented interface 'System.Xml.Serialization.IXmlSerializable', Add one to your Project. How is that resolved How can I add it to my project Thanks so much! Cherrie from the vsa script environment select: project > add reference. then, choose "system.xml.dll& ...Show All
Visual Studio Team System changing TFS workgroup to TFS trial
Hi everybody, I've installed TFS workgroup edition in over company, And so far it's works OK (haven't added a lot of code to the source control but then again our server does not meet the minimum requirments :) The problem is that in the next couple of weeks we are going to hire another programmer and we already use 5licenses. Is there any way to replace the installation of the TFS workgroup with TFS trial (hopefully, in those 6 months we'll be able to convince the company to buy a licence for the full TFS). Nadav According to MSDN you can upgrade from Trial to Workgroup but not the other way around: http://msdn2.microsoft.com/en-us/library/ms404844.aspx I believe you’ll need to ...Show All
Software Development for Windows Vista Using transactions to access database within Worfklow
Here is my scenario (in an abstract form): Say I want to get a value in a database table, and then based on that value perform some other action. I do not want that value within the database to be able to be changed until after I have performed the follow up action. I have no problem implementing this process within a SqlTransaction in my data access layer, and getting the desired atomicity. However when putting this inside a workflow, I cannot get the atomicity. Within a transaction scope activity I have a call to a web service, which in turn invokes a stored procedure to get the value in the database. Once the web service returns the value and focus returns to the workflow, and before I check out th ...Show All
Smart Device Development DataGrid and row update speed
Hello everyone, I've been working on an application that displays dynamical tabular data to the user. I have several rows of information displayed by a DataGrid which is not bound to a database, but the information is received from a webserver through a request/response mechanism. A worker thread computes some of the values and invokes the main form update method through (( MainDisplay )_AFMain).UpdateDisplayData(response);//worker thread if ( this .InvokeRequired)//main form, UpdateDisplayData method { this .Invoke( new UpdateDataDisplayDelegate (UpdateDisplayData), new object [] { response }); return ; } The problem is that this data is updated so frequently that my datagrid is somewhat too s ...Show All
.NET Development Fill a DataTable with another DataTable.Select() method.
Hi! I'm test ways to perform this simple operation, i want generate a new DataTable with the result of other DataTable.Select() but i cant got it!! currentMunID.Clear(); currentMunID.Columns.Add("ID"); currentMunID.Columns.Add("NOMBRE"); currentMunID.Columns.Add("ID_PROVINCIA"); DataRow[] X = BD.Tables["Municipios"].Select("ID_PROVINCIA = " + cmb_ProvID.SelectedValue); currentMunID.Rows.Add(X); // Exception here ! cmb_MunID.DataSource =currentMunID; The X variable is a DataRow array with three columns DataRows (i see it with a breakpoint), but i get the following exception : "Input array is longer than the number of colum ...Show All
Commerce Server New address
The flow that I am faced with is that a user will add line items to a basket as they are picked from the catalog. When done the user "checks out" and places the order. As part of the checkout process I need to add shipping info to the basket (and each line item) and add payment information to the basket. First question, if I want to add shipping information (first shipping address) then how is the best way to "create" a new address There must be more to it than simply new Address(...) because I need the address id. There must be a "create address" function somewhere that creates the address along with the address id. I am assuming that once this "create" method is called the newly created address wil ...Show All
Windows Forms Tooltip component to have TTS_CLOSE...
Any way to pass TTS_CLOSE to the Tooltip component so that it will have a 'close window'... I am aware of the contents in that link. My question is aimed at the Tooltip component that comes with .Net 2.0 framework. Currently am using the code in the link that you have mentioned. But, what I am more interested in is extending the 2.0 component instead of 're-inventing' the wheel... Any way I can achieve that ...Show All
Visual Studio Localizing Reports
I have an application that I'm currently going back through and localizing it for multiple languages and I'm having an issue with my reports. I came across a posting on this site that said the RDCL files do not currently support localization but it gave some code to work around this issue. The link to the code is here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=904842&SiteID=1&mode=1 The code seems to work fine except that the subreport quit working. When I run the report I get a message where the subreport is saying: "Error: Subreport could not be shown". I tried to create a seperate routine that would localize the subreport but to no avail. Can anyone tell me how I can resolve this or if there is anothe ...Show All
