Software Development Network Logo
  • Smart Devicet
  • Visual FoxPro
  • Visual C#
  • Game Technologies
  • Audio and Video
  • .NET Development
  • IE Development
  • Visual C++
  • SharePoint Products
  • Windows Vista
  • Microsoft ISV
  • Windows Forms
  • Visual Studio
  • Visual Basic
  • VS Team System

Software Development Network >> hawash's Q&A profile

hawash

Member List

Wolf359
becklighter
yromanen
G.D.T
Daniel Gary
JFoushee
VinceG
Ryan_H
Ntc
Chameleon991
Nick Hart
Bapa
Saurabh Kulkarni
10wattmindtrip
Michael Vanhoutte
Marko B. Simic
sticksnap
Pablo Jord
Kamil Janiszewski
Sevugan
Only Title

hawash's Q&A profile

  • Visual Studio Team System Error: No Pending Changes - But there are changes!

    Hello, Sometimes we're experiencing the following annoying behaviour with our TeamFoundation Server (RTM) and the TeamExplorer: A file was checked out and changed, and if I try to check in the changes ("Check in pending changes..."), TeamExplorer says "Error: No Pending Changes" and does nothing. This is not safely reproducible though. But it still gives our team a really bad feeling about migrating to TeamSystem (we're at it right now, and we're running into several small glitches). Whatever, right-clicking the directory and selecting "Refresh" solves the problem. Has anybody else experienced this problem and knows why or when it appears Best regards, Martin Do you mean Sou ...Show All

  • SQL Server Sql Reporting Services 2000 Using VS.NET 2005

    Hi i am working in vs.net 2005 (c#.net & asp.net), my application need reporting functionality, for that i am using Sql Reporting Services 2000 in vs.net 2005, and i am not able to generate the report, can any pls tell me how to use sql reporting services 2000 in vs.net 2005 and configuration setting etc... it would really help more to build my applications in sophisticated way kinds regards sy From Microsoft's website: http://msdn2.microsoft.com/en-us/library/ms143520.aspx Report definition (.rdl) files that you create in the SQL Server 2005 version of Report Designer can only be published to a SQL Server 2005 report server. Jarret ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Serializing CustomVertex

    Microsoft.DirectX.Direct3D.CustomVertex is not marked as Serializable, so an array can not be Serialized. Is there any way to overcome this Thanks. Hey man! please stop laughing at the people who’s trying to help you. After all, It is you who is asking for help. Have your extra intelligence ever put it’s hands on the fact that the CustomVertex is just an structure and that you can define your own, marked as serializable You don’t need at all the structures defined in DX. Every method will accept your own custom Vertex Structure. here it goes: [ Serializable ] public struct MyPositionNormalTextured { public const VertexFormats Format = VertexFormats .Normal ...Show All

  • SQL Server Word/RTF from SQL to Display

    I have Word and RTF objects stored in SQL. I return them along with some other strings. But I can't get the Word and RTF objects to display as they should. I can only display them as strings, showing the formating codes, instead of formatting the output. How do I display the output as it looks in Word This thread may help. http://blogs.msdn.com/bimusings/archive/2005/12/14/503648.aspx ...Show All

  • SQL Server Set limited to 4,294,967,296 tuples, Excel queries bad in 2003, good in 2007

    The expression contains a function that cannot operate on a set with more than 4,294,967,296 tuples. Chris Webb takes up an internal limitation where sets seem limited to 4,294,967,296 tuples here: http://spaces.msn.com/cwebbbi/blog/cns!7B84B0F2C239489A!473.entry I have the same problem but in the whereclause instead and wonder if anyone has any workaround. I can use WITH MEMBER foo AS (AGGREGATE(offending set,measure)) to achieve a correct result but it's performance compared to using the same set in the where-clause (tested on smaller cubes that allow both of course) ranges from poor to unworkable. Any suggestions Hi, I have the same problem when attempting to add ...Show All

  • SQL Server Complaints about SSIS

    I'm sure Microsoft has heard most of these complaints many, many times, but I just have to rant about the issues I've encountered with SSIS over the last few weeks. Basically, SSIS, IMO, is a pile of dog ***. Yes, it gets the job done, but only in an extremely inefficient fashion: Objects are ID'd by a GUID. This means that, (for instance) if you change a connection by deleting an existing connection and replace it by another, all of the objects using the old connection break -- EVEN IF YOU USE EXACTLY THE SAME CONNECTION NAME -- because they only know the connection by the GUID. Deleting the old Connection, even if you rebuild the new one with exactly the same name, pointing at exactly the same server, etc., breaks everything because a ...Show All

  • Visual Studio 2008 (Pre-release) Listview content Wrap

    Is there a way to have the control list items like in a list box but when the bottom of the screen is reached have a new column formed so that all of the content is on the screen I.E. If the screen can hold 40 rows of data and I have 100 rows to display I would end up with three columns of data. Thanks in advance If I understand correctly, you can use WrapPanel < ListBox Name = " list1 " Height = " 200 " > < ListBox.ItemsPanel > < ItemsPanelTemplate > < WrapPanel Height = " 200 " IsItemsHost = " True " Orientation = " Vertical " ></ WrapPanel > ...Show All

  • SQL Server can not browse to http://localhost/reports

    This is the error I get: Object not found! The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again. If you think this is a server error, please contact the webmaster . Error 404 localhost Thursday, February 15, 2007 12:50:47 Apache/2.0.54 (NETWARE) mod_jk/1.2.14 Are you trying to access Report Manager from your own machine If so, do you have Reporting Services installed on your machine Did you install Reporting Services with an instance name Try this: http://<ServerName>/Reports Where <ServerName> is the name of the server with Reporting Services installed. Hope this helps. Jarret ...Show All

  • Smart Device Development Differences between .net 1.1,1.2 and 2.0?

    Hi, Can any one please tell me the differences between .Net 1.1 and 1.2 and 2.0 And can you also tell me when was .Net 1.2 was released Thanks. there was no .NET 1.2 (even for full framework version) for CF there was only ever .NET 1.0 (SP3) and .NET 2.0 differences are alot, .NET 2.0 is new, latest and has alot of features, just the natural progression of a product from an old version to the new one. .NET 2.0 SP1 was also recently released, having the ability to install on Windows CE 4.2 and install the GAC on the storage card by customer demand. take a look at the .NET CF Team blog:   http:// blogs.msdn.com/ net cf team   with .NET 2.0, you can do xml serialization, h ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Simple BlackJack game in XNA (zipped up project files)

    Hey all, just been trying to learn GSE, and I made a VERY basic BlackJack game, which hopefully may help someone else get started. I tried to comment the code, and I know there's a LOT of room for improvement. Input on how to make some of my classes more generic (maybe even make the components) would be appreciated. Such as: Card class (uses tiles in a texture to build the card, so each face value and suite symbol is listed in the texture) Deck class (actually a class to hold a deck and several hands or piles of cards) BMPFont class (a very rough and dirty, but functional tile based rendering engine) You can get it here: http://www.preik.net/xna/cardgame.html WQP wrote: Hey all, just been trying to ...Show All

  • Software Development for Windows Vista workflow data??

    I have a problem with the re-hosting sample. When I define properties for workflow it didn't retained when I re-open the workflow, i.e. loading problem. I read a thread in this forum that talk about this issue but without a solution. I don't now if any body had found a solution for this problem because I stuck in it and I want to finish my project. So please if any body can help me in this I will be appreciated because I don't know exactly where the problem is thanks..   Thank you Tom for your response…   I read about codeDom to know exactly whay are we using it. I found out that CodeDom is for developing automatic source code generators. The goal of code generators i ...Show All

  • Visual Studio Team System TSQL Debugger is not working after installing "VSTS - Database professionals"

    Hi, After I have installed VSTS - Database professionals CTP5 I have found that TSQL debugger is not working any more. When I put breakpoint into the stored procedure and do "Step into Stored Procedure" the break point became disabled and the message is "The breakpoint will not currently be hit. Unable to bind SQL breakpoint at this time. Object containing the breakpoint not loaded." I'm absolutely sure that this was working normally before the installation of the CTP5. I'm guessing that something was done to the security settings by the installation package. I hope it is fixable. I'm running VS2005 and SQL Server 2005 Developer eddition and now SQL 2005 Express edition as second instance. CLR Stored p ...Show All

  • Visual Studio Team System CTP5 is mature enought to use as a development tool?

    Hi all... I’m testing CTP5 with refresh bits, and in the middle of project development, i’m wondering if this product is safe enought to use as a development tool And if not yet, wich other product i can start using for DB projects. I found it very interesting, but i’m not sure if i’m safe to use it for a production project. Thanks in advance... cmf. There were a number of issues we experienced in CTP5 release, more notably the performance and crash on the schem import. We have addressed the performance issue with a CTP5 upgrade which was a dramatic improvement. For most of the issues that were reported in the forums and the Connect site from the CTP5 release we have f ...Show All

  • Windows Forms Context Menu In GridView

    How can I have context menu in Gridview upon right clicking at any where in gridview.Can any one plz help me up... Thanks in adavance.... With regards, mahender Hai, Well Mine is Server side application.I am Using gridview.My VS is 2005.Context menu Displays Properly when I try to use textbox as a control.Context menu COme over the Control.AWhen i try to replace textbox with dropdownlist .The Context menu is display backside of Dropdownlist.i mean it looks like Context menu upon tht Dropdownlist occurs....I am using IE7.0 With regards, Mahender ...Show All

  • .NET Development WriteNode(XmlReader,false) inserts empty namespace attribute

    Hi, I am using WriteNode(XmlReader,false) to insert an XML fragment into my XmlWriter but it adds an empty namespace attribute (xmlns=""), which causes problems. How I can I prevent this Thanks, Tad That can only happen if the writer is currently writing elements in a default namespace while the fragment you read in does not declare a default namespace. You can use an XmlParserContext to work around that, here is a .NET 2.0 C# example: XmlWriterSettings writerSettings = new XmlWriterSettings (); writerSettings.Indent = true ; const string ns1 = "http://example.com/2007/ns1" ; using ( XmlWriter writer = XmlWriter .Create( Console .Out, writerSettings) ...Show All

©2008 Software Development Network