ukgam3r's Q&A profile
Visual Studio Express Editions Project out of Date
Hello. I know there have been a few 'project out of date' threads, but I wasn't able to fix my problem looking through them. Anyways, I posted a question yesterday about saving a project with a new name, and this might be related to having done that. It seemed like this started happening after I successfully changed the name of my project by saving it as something else. Now, when I build my project and then start debugging I get the project out of date message and am asked if I want to rebuild. If I say no, my program executes just like I would expect based on the last build I did. I've tried all the options - clean, rebuild, etc. but still get this message. It's mainly annoying, but I never like to have messages I don't understand coming ...Show All
Game Technologies: DirectX, XNA, XACT, etc. A problem with SpaceWar Starter Kit
I have installed XNA Game Studio Express to my Visual C# Express, i have started a new project, but I got problem. I successful compiled it, but I don't see a cursor in the game so i can't select choice in menu and keyboard also doesn't work. What's wrong It doesn't help. In readme is How to build it, but that's like press F5 for Debug or F6 for Build. Nothing about the keyboard's setting or the cursor. ...Show All
Visual Studio Need help building web projects with MSBuild?
If you're interested in building your web project using MSBuild, we can save you the trouble of posting the question and waiting for an answer :) To build web projects with MSBuild you need the Web Deployment Project add-in. You can get it from http://msdn.microsoft.com/asp.net/reference/infrastructure/wdp/ . Another option is to use Web Application Projects , which give you the VS2003 model of working with ASP.NET projects, but the benefits of ASP.NET 2.0 and VS2005. Happy building! Neil Neil Enns MSFT wrote: If you're interested in building your web project using MSBuild, we can save you the trouble of posting the question and waiting for an answer :) To build web projects with MSBuild you need the W ...Show All
.NET Development Working with FtpWebRequest and Special Characters
Hi, I have been working with FtpWebRequest perfectly, downloading, uploading, etc., until I found myself into trouble when the file name has special characters like this: Escnoqqwna#.jpg and it just doesn't work, no matter what, I always get the "error 550 file unavailable" when trying to download, so I tried to rename the file and trying to access the file name with httputility.urlencode(str), but I can't still modify the name so I can download it. Dim fReq As FtpWebRequest = WebRequest.Create( ftp://192.168.254.1/2203/Escnoqqwna#.jpg ) fReq.Credentials = New NetworkCredential( "XXXXX" , "XXXXXX" ) fReq.Method = WebRequestMethods.Ftp.Rename fReq.RenameTo = " ftp://192.168.254.1/2203/Es ...Show All
SQL Server Using calculated members in RS 2005
Hi everyone... This is my first post here... Well, I got a problem with a calculated member I have created in a cube.Its based on "Percentage of Parent" template. I'm trying to build some reports for a survey and I have data about the profiles of the users (that is I know the answers of each user and I have data about their living region and prefecture). FactAnswers : AnswerKey, PrefectureKey DimAnswerKey: AnswerKey, AnswerName, QuestionKey, QuestionName, SurveyKey, SurveyName DimPrefecture: PrefectureKey, PrefectureName, RegionKey, RegionName Measure: Surveys Count Actually i use snowflake schema but for simplicity's shake I'll describe the problem using the above star schema. In order to get the percent of Answers for eac ...Show All
Visual C++ How to access web page files using C++
Hi all, I have a list of web pages that I need to pull certain numbers from and will need to do it frequently, thus a program that has the list of address to pull the data from will make my life easier. Can you access web pages like you would to access files on your computer using the fstream library. The idea is to then parse through and find the certain tag, for example: I need to find the living area of a home on the site, I would like to open up the file, in this case and .asp. Then I would read in each line and look for what I need, in the case I would look for: <td width="200"><strong>Living Area</strong></td> &nbs ...Show All
Visual C# [c#]I need help to write a class
Hi all :) Here is my problem: I write this class: public class dbConnect { #region Private private string source = "database=mydatabase;datasource=localhost;user id=user;password=password"; private SqlConnection cn; #endregion #region Delegate public SqlConnection connection { get { return cn; } } #endregion #region MemberFunction public bool connectionIsOpen() { if (cn.State == ConnectionState.Open) { return true; } else { return false; } } public void openConnection() { try { cn = new SqlConnection(source); cn.Open(); } catch (SqlException ex) { ex.Mess ...Show All
Visual Studio Locals Debug Window
Hello, Since short I the Locals - Debug - Window is empty. I cannot figure out what is the problem. When I run the solution, I cannot debug/verify the variables. Does someone have a clue what is going on It is happening with all my solutions. Thanks. Hi, I reinstalled the machine and problem resolved. I cannot figure out what caused this flaw. Thanks for reading and helping during this thread. ESTAN ...Show All
SQL Server automate GACing assembly
Hi, Unfortunately the deployment Utility does not support adding dll's to the GAC. Still I want to automate it. (By the way on target machines GacUtil is not present). I tried to make a setup project that only adds a dll to the GAC, however the setup project still makes an application folder. How can I turn this off Regards, Henk I haven't used the Visual Studio installer projects for some time, but is there not a File page in the project Can you not delete the app folder in that File page Saying that I can highly recomend WiX as a method of generating MSIs. Checkout the very good tutorial if you are interested. Windows Installer XML (WiX) toolset ( http://wix.sourceforge.net/ ) ...Show All
Visual FoxPro set font
i have a variable chr(18) chr(27)+chr(77) as a global variable ... now i want change my report for details font size to more smaller it dont have any effect. Gcreset = " chr(18)" &Gcreset and now i SET PRINTER FONT 'Courier New', 8 STYLE 'N' it didnt have any affect at all. Thanks in advance. ...Show All
Visual Studio Express Editions problem with working with windows XP DDK
Hello, I am trying to enumerate all the 1394 devices connected to my PC, in windows XP DDK . But after building the application, when I run the WIN1394.exe, and when I Plug-in the 1394 DVD device which has both the USB Mass Storage and 1394 interfaces. In the WIN1394.exe I can see only the NOTIFY_DEVICE_CHANGE. but i cannot see the 1394 device information. And immediately after plugging-in the 1394 DVD device, while running the WIN1394.exe, it is prompting me for the drivers for 1394 virtual device. I also tried to install 1394vdev.inf, but when i am doing this it says that 1394diag.sys is not found anywhere in the PC. Can anybody tell me how can I fix this problem. I would like to debug the WIN1394.exe so that i can get the unique id of 1 ...Show All
Windows Forms Further Help Required - Updating a form from a serial port
I have implemented this code that was posted by OSha in February 2006: delegate void SetRichTextDelegateType(System::String ^); private : System::Void serialPort1_DataReceived(System::Object^ sender, System::IO::Ports::SerialDataReceivedEventArgs^ e) { String^ myString = serialPort1->ReadExisting(); SetRichTextDelegateType ^pfnDelegate = gcnew SetRichTextDelegateType( this , &Form1::SetRichText); this ->richTextBox1->Invoke(pfnDelegate, myString ); } void SetRichText(String ^myString) { RichTextBox1->AppendText(myString); } I have successfuly implemented the code but have a further query. I want to read data from a hardware device that sends packets of data to my pc via the serial port. ...Show All
Visual Studio Team System CTP5 patch bug - Object reference not set to an instance of an object.
I consistenly get an error dialog that says "Object reference not set to an instance of an object." whenever I invoke the SQL Server 2005 Wizard after installing the CTP5 patch. Without the patch, everything is fine. I've done this three times and a coworker has done this once. John - Have you had a chance to try this using our latest CTP - CTP6 If you are still having problems with CTP6, maybe we can get your database from you and try to debug the issue. ...Show All
.NET Development How to Identify .NET (CLR) Based Apps?
@Everybody, Hello, -Sorry for asking question like this, but is there any way for us to know whether a specific app using CLR or not (native) Yes, we can review their System Requirements; but as time goes on, many Windows setups will have .NET Framework installed by default (especially Vista), so, more app will not bundle nor states the requirement for .NET anymore. Can Dependency Walker do this -BTW, are MS Office 2007 are .NET apps I thought like that because Accounting Expresss 2007 requires it. Is the same goes for Vista apps binary I tried to run some from RC2 on WinXP SP2, but got error ".... is not a valid Win32 app..." (even Notepad.exe!). -Hope for detailed replies, thanks. Regards, -Musafir_86. ...Show All
Visual Studio Express Editions An error about an error
Hi all, Sorry to bother you all yet again (I'll bet you're getting sick of me by now), but I have yet another odd question for you. When I run my program in debug mode (Press F5 in VB 2005), it comes up with an error message and highlights that exact piece of code. Here is the full block of code it picks up on, and the highlighted bit is both the error message it gives me, and the bit the debugger highlights. <System.Diagnostics.DebuggerNonUserCodeAttribute()> _ Public Property Signature_File() As Byte () Get Try Return CType ( Me ( Me .tableTime_In_Table.Signature_FileColumn), Byte ()) Catch e As System.InvalidCastException Throw New System.Data.StrongTypingException( "The value ...Show All
