xRuntime's Q&A profile
Windows Live Developer Forums Why is </td> filtert?
I noticed in my HTMLcode that when i use a tablecode, the </td> tag is filtert! I think this is very strange as a common tablecode would be: <table><tbody><tr><td>content</td></tr></tbody></table> After publishing it shows: <table><tbody><tr><td>content</tr></tbody></table> Is there any good reason for this I can't imagine there are any safety issues for that tag. And what will happen if this changes again, as we experience the filtert HTML changes from time to time and we don't understand the reason for some of it (for instance the target="_blank" wich was filtert before and can be used again now!!!)(finally....) ...Show All
Visual Studio Team System Invalid postback or callback argument when trying to add a Web part
I was trying to change the lay-out of the shared page of the sharepoint portal. After adding a webpart i got a screen where i selected all the web-parts and after that the startpage of portal did not contain any webparts anymore. When adding new webparts to the startpage of portal the following error occurred. Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScr ...Show All
Windows Forms "The Variable BindingSource is either undeclared.." or a bug
I've been plagued with the following designer behavior using DataGridView forms in many projects: 1. Open the Data Sources "Edit Data Set". 2. Configure a 'Fill' (or any) query. (Even if there are no actual query changes and it is just re-generated) 3. Save the changes (.XSD file) 4. Close the .XSD window Then my previously fine form has the dreaded red circle-X (sounds like a ranch name). The message is invariably: "One or more errors encountered while loading the designer. blah,blah. The variable 'myBindingSource' is either undeclared or was never assigned. The variable 'myGridViewTextBox is either undeclared or was never assigned..." ...and it lists all of the form's controls. And either ...Show All
Visual Studio 2008 (Pre-release) 3-Layer Architecture DB Objects
I want to build a 3-Layer architecture based application. In the database layer I want to work with Linq on top of the MS SQL Server. In earlier projects I created my queries in the DB Objects like that: public void statementExecute() { string sSQL; bool bAND = false ; sSQL = "SELECT Person.* " ; sSQL = sSQL + " FROM Person " ; if (existWhereStatement()) { sSQL = sSQL + " WHERE " ; if ( this .PersonID != 0) { sSQL = sSQL + " Person.PersonID = " + this .PersonID.ToString() + " " ; bAND = true ; ...Show All
SQL Server New Database Diagram - An unexpected error happened during this operation.
I try to add a new database diagram to sql server 2000 using Enterprise Manager and I get this error: SQL Server EnterpriseManager An unexpected error happened during this operation. How do I debug this Hello Robert, My bug in SQL server 2000 got solved what i did was I installed SP4 in SQL server2000. try it and let me know if it works for you or not. you can get SP4 from the microsoft webdite for free Narayanan ...Show All
Windows Forms Putting text on an image on a form
I am an old C/C++ programmer that is trying to learn C# and .net. I need to take text from a .txt file and display it on a form in graphics. I eventually need to save the image to a .jpg file. I created a picturebox (is this the right object to use ) on the main form, opened the .txt file and read in one line at a time. Now I need to put each line of the text into the picturebox area in graphics mode to display it on the screen in the same order as the text in the file. Any suggestions Thank you OldCDude you would have to use the Graphics class to draw a string. Maybe implement the paint event (im not a graphics guru so I am just hoping to guide you). There has been a topic or 2 on how to d ...Show All
Visual Studio 2008 (Pre-release) how to retrieve values from arraylist using xlinq
hi all, i'm using xlinq and i got a problem in it.That is how to get values from ArrayList using xlinq . Uh, the HTML messed up that code above and I can't seem to correct and save it without getting an error. The problem is the IEnumerable line. It is missing the generic type specifications. It should be: IEnumerable[int] ints = al.Cast[int]().Where(i => i > 2); Except those should be less thans and greater thans rather than [ and ]. ...Show All
SQL Server Reporting Services on a Workgroup based network?
Can I use Reporting Services 2005 in a workgroup to serve reports for a windows application which is distributed accross the network I've already tried but when the application on a client pc requested a report from the report server i got a message about not having enough permissions to see the report. The windows application was builded using VB .NET 2.0 and VS2005. The report server instance is installed on a server 2003 enterprise along with the SQL Server 2005. If this is possible how can set permisions or make my application to be able to requests and show reports Thanks a lot to anybody who takes the time to answer. Antonio Alfaro I think the problem with wkgrp is that IIS authenticat ...Show All
Windows Forms How can I control scrollbar of my datagridview
Hello, I have a datagridview with horizontal scrollbar. I want to GET and SET position of horizontal scroll bar of my datagridview. How can I do that Thanks, Damien, Hi, could you please check the below thread. hope this helps. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=862774&SiteID=1 thank you, bhanu. ...Show All
SQL Server SSIS Performance
I am currently in the process of migrating DTS packages to SSIS. I am finding that most of the packages are running faster, but some of them are taking longer to execute. The DTS package copies data from our Production server to Development. It uses a Copy SQL Server Objects Task to copy only the data from about 50 tables. This takes about 3.5 minutes. I created the exact same package in SSIS using the Transfer SQL Server Objects Task and it is running about 5 minutes. Another package I am having this problem with is only copying data from 1 table using a Copy SQL Server Objects Task. This package executes in 19 minutes. I have created the exact same package twice. Once using Transfer SQL Server Objects and once with a data flow task ...Show All
SQL Server Report Model, which approach?
Hi All, I'm a newbie to Report Model and not able to find some conceptual information, Can you guys answer following: I’ve Employee [Name] ->Employee_Days [Day] (1-*) ->Employee_Day_Activities [Activity_Type, HoursSpent] (1-*) schema and a generated model out of it. Now I’ve few report requirements which will be developed based on Report Model. These Reports needs aggregate of All similar activities and the hrs spent and it'll be shown with every employee. Like Employee Xyz has spent 14 hrs total on Sick Activity, which will be shown as Employee Sick Hrs Maternity Hrs WorkHrs Xyz 14 0 20 Now i need to know the approach to develop it like i'v to ways in my mind - create 3 custom fields(Sickhrs,Maternityhrs,Workhrs) ...Show All
Windows Forms Setting PowerPoint slideshow as active window over a form
HI! I'm trying to realize a simple application that loads PowerPoint presentations over a mask, displaying the name of the presentation ad the time passed. The problem is that I can't manage to set PowerPoint slideshow as the active window. This is the code (I omitted what was not important): Private Sub playerpresentazioni_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load Me.Activate() Me.WindowState = FormWindowState.Maximized Dim filePath As String = startmenu.DirectoryPath & "PresentationToLoad\" & filePres filePath = Replace(filePath, " ", Chr(32)) Dim returnValue As Boolean returnValue = My.Computer.FileSystem.FileExists(filePath) ... 'initializing componen ...Show All
Visual Studio Team System link requirements and tasks
hi, i created a "MSF for CMMI Process Improvement" project. in this project i created a requirement to manage the requirements for the project. but i do not find anything, to link the requirement with a task. is this possible in tfs it would really hurt if it is not possible. edit: i found the possibility to add a work item to a task. "add related work item" . there i can choose "requirement". but if i choose "requirement" i can just add a new requirement and not an existing one. in our project development we have requirements (mostly defined by the customer) and then we have a number of tasks which are allocated to a requirement. we use an access database to manage these requirements. and now we want to use tfs to do this. but how edit2: ...Show All
Internet Explorer Development THT_BHO.dll error.
IE7 will start, but it immidiately crashed. I traced the dll file back to styleXP, so am I going to have to uninstall this or is there a work-around. Thanks, it worked. Now I can download microsoft software. I refuse to use it for anything else, I have firefox. A much more secure and functional browser, to get it go to getfirefox.com . ...Show All
Windows Forms Expandable GroupBox
hi frnds, I have an expandable group box in my project , i am adding a few controls to it. But onthe click of the header area , its collapsing n on another click its expanding , so wat i want is it should never collapse on any click .... how do i go abt that Thanx in advance.. Subahnet Expandable groupbox What properties of a GroupBox control do you set to make it expandabale ...Show All
