Alexander Ashwin's Q&A profile
Visual Studio Express Editions Setting the Version Information in the exe file
I am currently using the express edition of Visual C++ 2005. Is there any way of setting the version number, description, company, etc. that appear in the Version tab of the properties dialog of the exe There doesn't appear to be a resource editor in the express edition. Is there an alternative or would I need to upgrade to the full Visual Studio to do this Mog0 Yes,That is the correct way. I did it but was not getting the group name. I found the following sol. In .NET this is the AssemblyTitle. If you already have run the executable, then modify the EXE will not modify the group name. That's because ...Show All
Visual C++ unresolved external symbol YGXXZ vs YAXXZ
Hello, I have encountered an unresolved external symbol error when trying to use function from a DLL (implicitly linked). The linker complains : "__declspec(dllimport) void __stdcall HYDynamics::init(void)" (__imp_ init@ HY Dynamics@@YGXXZ) is missing. The dumpbin tells me that the following is exported: 229 E4 0000106E init@ HY Dynamics@@YAXXZ Can anybody tell me why these two don't match I see YAXXZ and YGXXZ are different but I couldn't find what these symbols mean. Thanks in advance, MDErdem Drop the ( ) and __imp_ prefix . The thing to know is that "decorated" names ...Show All
Windows Forms Searching files in directories
hi.. how do i search files in a directory using file attributes like modified date,file size,create date time using .Net. Regards dhn Here is a self-explaining example: DirectoryInfo directory = new DirectoryInfo("c:\mydirectory"); foreach ( FileInfo file in directory.GetFiles() ) { if ( file.CreationTime.Date.Equals( DateTime.Now.Date ) { // Found a file that was created today. } } ...Show All
Visual C# An interesting and challenging application
hi i want to do this, i want to make a web application which is capable of downloading a page at client side make some changes and then return the changed page to the same server. Now when the same page is accessed for the next time, it should reflect the newer change......... Is this possible................ sorry mr. David N. You had to apologize... I know that doing such is against the rules of ethics... I am not going to implement such idea... I want such just only for my information... because if this becomes possible then no site will remain secured... I again apologize and sorry if you have minded my any statment... with rega ...Show All
Visual C# please microsoft or anyone tell me why !!!????
when i debug this code Process p=process.getAllprocessbyName(processName, Remote MachineName); p.Kill(); i have this exeption this feature is not supported in remote machine what i want to say is why microsoft make this function and told us that we can use it for remote machinr in msdn help i found: C# public static Process [] GetProcessesByName ( string processName , string machineName ) Parameters processName The friendly name of the process. machineName The name of a computer on the network . yes my dear I tried to test my code in domain between two computers ...Show All
Smart Device Development Emulator can't connect to web service
I thought this would be a simple conversion from VS 2003, but we have an issue we need help figuring out. We have a 2.0 web service and a pocket pc application that needs to connect and use its web methods. Problem is, we get "WebException" when trying to connect. The application worked just fine when it was running under the VS 2003 IDE and emulator. Before blaming the conversion process, we made a new sample application and sample web service to test the issue and have the same problem. This seems to occur both on local machines and remote servers. The error occurs when a call to a web method is made. Any idea ...Show All
SQL Server SSIS & SharePoint Lists
Hi, is there any example how to extract values from a SharePoint list I searched in Google but I only found something about that someone failed using the web service task for it... If possible I would like to get around any custom .net code (Scripts would be OK), but if I can't get around that, I have to follow that path... Thanks, I would prefer doing something which is supported...On the other hand direct OLEDB would be quite easy... Or not Thanks, ...Show All
Visual C++ This application has failed to start because the application configuration is incorrect
Hi, I am just starting programming using Visual C++ 2005 Express Edition. I have had some limited practice in other languages and older versions of C++, so I have some idea whats going on but not much... Anyway I made a short program which perfroms a bubble sort on an array of numbers which the user enters (I know its nothing to write home about but its a start), it works fine on my PC and when I sent it to a freind who also had VC++ 2005 Express Edition it worked fine for him. However I then sent it to a freind without it (in a fairly poor attempt to persuade him to download it) , and my program didn't work on his PC giving the error: ...Show All
Visual Studio Team System TF30177: Team Project Creation Failed - Unable to connect to the Windows Sharepoint Services
I followed the latest installation guide TFSInstall-v60208.chm closely to create a 2 VM system. 1 VM for the DC/AD server TFSDCAD and 1 VM for the Apps tier TFSAPPS with SQL Server 2005, Sharepoint Services 2 and TFS I installed Sharepoint Services SP2 and did NOT configure it. Next I verified the Sharepoint Services install and saw the "Under Construction" page. I then went ahead installing TFS RC1, installed successfully (it said) I can connect from VSTS loaded on TFSAPPS to the TFS but creating a new team project produces: TF30177: Team Project Creation Failed Error: Unable to connect to the Windows Sharep ...Show All
Microsoft ISV Community Center Forums VBA for Powerpoint
Hi, I have been asked to modify a powerpoint presentation so that from a series of jpg files, one appears on the screen and then after a specific time period disappears and is replaced by another; this being a continuous loop on one slide only - like a photo tour. I have the following code, but need to get it up and running. Any suggestions: Sub ImportABunch() Dim strTemp As String Dim strFileSpec As String Dim oSld As Slide Dim oPic As Shape strFileSpec = C:\PFS Pictures\beach party *.PNG 'Ex. on a PC: C:\My Pictures\Flowers\*.PNG strTemp = Dir(strFileSpec) Do While strTemp <> Set oSld = ActivePresentation.Slides. Add ppLayout ...Show All
Visual Studio Team System Error TF30207 Creating Project
I'm getting a TF30207 error when I try to create a new project. I was able to create a new project with no problems last week, but now I get this error every time I create a new project. I didn't make any changes to the server, but Windows Update did apply some updates recently. I'm running TFX Beta 3 refresh. Here are the log file enties: 11/11/2005 11:24:40 PM | Module: ELeadServiceMediator | Team Foundation Server proxy retrieved | Completion time: 1.50486 seconds 11/11/2005 11:24:40 PM | Module: ELeadServiceMediator | The template information for Team Foundation Server "vsts.claritycon.com" was retrieved from the Team Foundat ...Show All
Game Technologies: DirectX, XNA, XACT, etc. where get more particle system sample source code
I'm a particle jackaroo. Now I can write basic snow particle, but I want to write more particle. For example, explode, fire-flag, Magic Effect etc. Admin give me more particle ,thanks. What you need is point sprite Other particule based on Quad will have sorting problems You need to accelerate the particule and not being afraid of speed It make the effect more spectacular for the explosion and don't forget to match a sound to it... I recently discover the color orange...don't laught it's fun... If you set color to 1, 0.5 , 0 you have orange if you set color to 1, 1, 0 you have yellow So if you make fire particule and y ...Show All
Visual C++ What do I need to include to make a Bitmap?
I'm using VC++2005 and I'm trying to make and save a bitmap for debugging. The statement: Bitmap myBitmap: gives error C2065 'Bitmap' : Undeclared identifier What do I have to include to identify Bitmap as a class After I get that done, what will I have to do to get Format32bbpArgb recognized Thanks, Ken Try adding "using namespace System::Drawing;" after your include files. Prefix Format32bppArgb with PixelFormat:: ...Show All
Visual Studio Team System Extraction Rule
Hi, I am trying to extract an HTML response and reuse it for the subsequent request. The response contains a list of <a> tags with the following format: <a href='client_home.aspx N=1&gldx1.1=1740' target="_parent"> <a href='client_home.aspx N=1&gldx1.1=1741' target="_parent"> Basically, I would like to parse and extract the value of gldx1.1. That is, for the first <a> tag, I want to get the value of 1740; for the second tag, 1741. Is this currently possible in VS 2005 using a custom Extraction Rule Thank you Buhi Mume I believe th ...Show All
Visual Basic Undo
Hi folks! I have a cancel button on a form that I want to undo changes made to the controls on the form before closing the it. This works if I address 1 control: TextBox1.undo but I can't find a way to loop through all the controls and undo changes. Can some of you fantastic chaps help please! Thanks. This will iterate around all the textbox controls on the form doing an undo on them. Not all the different controls will support the undo method so you should only do this on ones which do. For Each c As Control In Controls ...Show All
