Stefan Gabriel Georgescu's Q&A profile
Visual Studio Problem using SandCastle with ASP.NET 2.0 WebSite
Hello, I have all the pre-compiled dlls of the asp.net 2.0 application, I trying to use Eric Woodruff's sandcastle GUI While building the build fails asking for System.Configuration unresolved assembly reference: System.Configuration (System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a) required by App_WebReferences BUILD FAILED: Unexpected error in last build step. See output above for details. Does it necessary that i should include all the namepaces used to build documentation for a project. Can anyone point me who to use sandcastle with asp.net web applications. thanks!! sqlnew I'm not sure which file you are refering to when you say ...Show All
Windows Live Developer Forums Robot Invaders Contest Winners
It's time to annouce the winners for the Robot Invaders contest. The contest ran from May 15th to September 15th and in the end 53 Messenger bots were accepted as valid entries in the contest ( per the how to compete guidelines ). Each entry to the contest was judge by three judges separately using the Judging Criteria outlined on the How to Compete page and then the judges scores were averaged. There were a lot of great robot's submitted but here's the winners: Title Prize LiveBot Grand Mother Nature 1st Spleak 2nd Mobile Record bot 2nd Virtual Secretary 2nd Dr Phile Knowledge 2nd Comtec Travel Bot 2nd Search Bunny 3rd ...Show All
.NET Development double and parse - difference
Can anyone explain the difference between these: double .Parse (invrow[4].ToString()); convert.Todouble(invrow[4].ToString()); and which one is the best to use. Thanks best would be to use TryParse to try to parse a given string input and if it succeeds, the result will be stored in the ref variable you give it. the Convert, just converts one type to another. the Parse parse's exactly the variable as is. Parse: "Converts the string representation of a number to its double-precision floating point number equivalent. " Convert: "Converts a specified value to a double-precision floating point number. " ...Show All
Smart Device Development VB 2005 & SQL Server 2005 Express
Hi guys, this is my first post here, im a VB Win developer with some experience, and now id like to try Smartphone programming, but i reaally need some help, heres my case: Im using VB 2005 and i have installed SQL Server 2005 Express. I create a new project and add a reference to System.Data.Sqlclient, located in: C:\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\SQL Server\Client\v1.0 Then i procceed to import the namespaces: Imports System Imports System.Data Imports System.Data.SqlClient Since i just wanted to test if the connection works just like it does in VB Windows Applications, i added a Textbox (named Textbox1 ) and added the following code in the KeyPress event: Dim strconn As String = "Data Source=XZIBIT;Initi ...Show All
SQL Server How to write Condition in the Conditional Split control in SSIS
HI i need to write the Condition for Insert and Update Reccord depending upon the Prod_ID. How to write the Follwing condtion in the Condition Split pls Anyone give me the Solution " if Prod_ID Exist then UPDATE Records if Prod_ID Not EXIST then INSERT Records " how to write the above conditon in the Condional Split Thanks & Regards, Jeyakumar.M chennai Thanks, Jamie. I'm not sure that I would want to use an OLE DB command for performance reasons, but maybe you can advise otherwise. I'll be dealing with 10-20,000 rows, and since an OLE DB command executes an SQL statement for ...Show All
.NET Development Objects and Structs - whats the efficiency different.
Hi all, I know alot depends on exactly what properties are contained in the types, but is it more efficient to use structs where nessecary (I'm programming on a mobile device). Thanks You'll probably want to have a look at Choosing Between Classes and Structures . Generally, structs are more inefficient than classes. ...Show All
Visual Studio Express Editions anyone know a good reference for graphics, charts etc
Hello Does any one know a good book, geared at createing graphics, charts, scrolling trends, geneal graphs. I would like to create a line graph that scrolls left to tight and new data comes in to join the graph. Many Thanks Ian GIbb http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=9915&SiteID=1 ...Show All
Visual C++ Reference to DLL behaves differently than Reference to Project
Ok, this IMO defies all logic and reasoning. I have the same identical C++ Project in two solutions. I know these are identical because I copied the entire project from one solution and pasted in another and that added that pasted project to the solution. In one solution, the C++ Project references a C# Project. In the other solution, the C++ Project references the compiled DLL of the same C# Project. These are the steps that I performed to ensure that I am working with correct DLL. First, I cleaned both solutions so that no DLL's are available. Second, in the C++ Project that was referencing the DLL, I removed the reference to ensure I am referencing the new DLL. Third, I compiled the C# Project. Then, I took the freshly compiled DLL f ...Show All
Visual Studio Team System Really Delete from Source Control
Ok, I've read all the old threads and I still don't get it. How do I completely delete a TFS project including all the related artifacts in source control I've already tried tfsdeleteproject.exe /force /server:servername "team project name" and it "seems" to work but I still see the project in the source control explorer. Jeff Lynch MVP - Commerce Server We understand that HD space is a concern for some customers, e.g. game developers who checkin lots of binaries. Destroy will be supported in the future. ...Show All
Visual Basic Sending data to web page
Hello, After reading different post, I have tried the following programme in order to send an identifier (data string) to a web page. The programe is as below and it seems it doest not work. Any help well be usefull ! Imports system Imports System.io Imports System.Text Imports system.net Public Class Form1 Public Class webrequestPostexample Public Shared Sub main() Dim request As WebRequest = WebRequest.Create( "https://www.boursorama.com/connexion.phtml org=/index.phtml " ) request.Method = "POST" Dim postdata As String = "6661234" Dim byteArray As Byte () = Encoding.UTF8.GetBytes(postdata) request.ContentType = " ...Show All
SharePoint Products and Technologies Sharepoint Designer Backup/Restore problem
I am trying to use Sharepoint Designer's backup and restore functionality to move a site from one server to another. The backup seems to complete successfully, but when I go to restore the site I get an error that looks like this: Cannot find C:\Windows\Temp\.......\exportsettings.xml. Does anyone know how to resolve this problem Hi: Has anyone found a solution for this I can't use the command line tools because the source site (i.e.: the site that was backed up) is hosted by a hosting company. So, all I can do is use sharepoint designer to back up the site. But, the restore isn't working because I'm getting the same error message as the opening post: "Cannot find file c:\win ...Show All
Windows Forms Drag and Drop problem(I have the code thoe)
Hey, For the image drag and drop stuff I ahve a little problem...I want it to drag and drop but I dont want it to totaly take the image out...So what I am trying to do is instead of making it so that when you drag and drop an image it goes that but the picturebox that you draged the image from will still have it's image in there...Here is the code: private void pictureBox2_DragDrop( object sender, DragEventArgs e) { // Display the image in the selected PictureBox control. PictureBox pic = (( PictureBox )(sender)); pic.Image = (( Bitmap )(e.Data.GetData( DataFormats .Bitmap))); if ((e.KeyState & CtrlMask) != CtrlMask) { if (sender == pictureBox1) { pictureBox2.Image = null ; } else ...Show All
Game Technologies: DirectX, XNA, XACT, etc. xna racer, how and when can i get it
i saw this thing on something called xna racer, and it amazed me that we could do this with xna http://www.kotaku.com/gaming/xna/clips-xna-racer-preview-213594.php does anyone know anything about getting this Clicky . Read the book description. ...Show All
SQL Server composite primary keys versus composite unique indexes
Hello, I have a table which has a composite primary key consisting of four columns, one of them being a datetime called Day. The nice thing afaik with this composite key is that it prevents duplicate entries in the table for any given day. But the problem is probably two-fold 1. multiple columns need to be used for joins and I think this might degrade performance 2. in client applications such as asp.net these primary keys must be sent in the query string and the query string becomes long and a little bit unmanagable. A possible solutions I'm thinking of is dropping the existing primary key and creating a new identity column and a composite unique index on the columns from the existing composite key. I would like to have some tips, recom ...Show All
Visual C++ Focus in Multiple Dialog application
hi, i have an client-server(chat broadcasting) application. where in client side i have 2 dialogs , such that first a connection dialog appears (to connect to server), when the connection is sucessful , the chat window appears . In the server side i have a simple dialog. the problem is when i open multiple clients , each client is able to send data to server individually , but i am not able to transmit the data to other clients(Broadcasting). It seems that the focus is not present on the chat dialog, it is still remaining on the connection dialog. (i have written necessary code in server for sending to other clients) this seems to be a weird problem , pl help me out However you desig ...Show All
