SCM's Q&A profile
Windows Live Developer Forums Messenger Fusion Addin For Windows Live Messenger
The Messenger Fusion addin is an addin for windows live messenger that includes the following features: Away Messages Set your away status in the options menu, then when you change your status to this predefined status, whenever a contact begins to speak to you, Messenger Fusion will send a predefined away message back. Word Filters Keep making silly spelling mistakes Using the word filter you can automatically correct these mistakes. For example: if you continually type "teh" instead of "the" you could create a word filter that replaces "teh" with "the". Auto Responders ...Show All
Visual C# How discover 'intrinsic' attributes?
Hi! I can't find a method to discover 'intrinsic' attributes - the built-in attributes such as Serializable, Obsolete, etc. There is a method to getCustomAttributes, but I haven't found one for the builtins. They have to have APIs to access them, otherwise the tools won't be able to discover them. Can anyone steer me in the right direction Examples Jess C# Online.NET http://wiki.csharp-online.net/ Exactly, some attributes are treated specially in that they are represented by their own metadata flags or tables rather than as regular custom attributes. I don't have a complete list of these pseudo ...Show All
Visual Basic Unable to create file...
When I make the slighest code change and try to rebuild/run I get the following error: Error 2 Unable to copy file "obj\Release\vwsWSGDA.HelperDP.xml" to "bin\Release\vwsWSGDA.HelperDP.xml". Access to the path 'obj\Release\vwsWSGDA.HelperDP.xml' is denied. vwsWSGDA.HelperDP I then have to exit Visual Studio 2005 and restart/reload the project and then it works fine. Do I have some setting wrong in the options or ... Please help - this is driving me crazy. Thanks, Kurt The solution has two projects in it and I forgot to set the dependency in the solution properties. I did so and ...Show All
Windows Forms creating alias for functionname
Hi, Is it possible to create an alias for object.function I have this code DSMarketDisplay.Tables[sTableName].Rows[hti.Row][ "date1" ] = oArgs.Date1; DSMarketDisplay.Tables[sTableName].Rows[hti.Row][ "CMonth" ] = oArgs.CMonth; and the list goes on, what I dont want to do here is repeat this DSMarketDisplay.Tables[sTableName] in all lines. Can I just create an alias or something to remove the redundancy Thanks, How about DataTable t = DSMarketDisplay.Tables[sTableName]; t .Rows[hti.Row][ "date1" ] = oArgs.Date1; t.Rows[hti.Row][ "CMonth&q ...Show All
SQL Server Understanding code created by SSIS import/export Wizard
I built a packaage in SSIS with the import/export utility. It created a Package.dtsx and Package1.dtsx. Both of these files seem to be XML files. I want to understand how these files work. For example, in the package I built I had about 80 tables exporting and importing data. Some of them I want to allow the identiy insert and delete the rows first. Others I want to append the data. How can I find the code or settings that does this Or where can I find the options on the gui interface to change these settings. When I search the code I can't even find a some of the tables that are being transferred. Hi Mike ...Show All
Visual C# how to get remote ipaddress from machine name in web application
Hi Guys, System.Net.Dns.GetHostByAddress( "IP address" ).HostName gives remote machine name from remote ip address but vice versa is possible i.e. how to get remote ipaddress from remote machine name Thanks, IPAddress[] addresses = Dns.GetHostByName( "MACHINE1" ).AddressList; foreach ( IPAddress address in addresses ) { Console.WriteLine( address.ToString() ); } ...Show All
Software Development for Windows Vista regarding LogOn User
Hi, I need information regarding the following.. How are consent admins supposed to administer vista boxens remotely, e.g. by making a connection to \\vistabox\ipc$ and starting and stopping services or doing other privileged work This always results in an "accesss denied" error and only works for the builtin first ("non-consent") administrator. The fact that this doesn't work suggests to me that restricted tokens are not only created for interactive logon sessions but also for network style logon sessions. It was told that UAC is an interactive issue only, which it is apparently not . It also seems as ...Show All
Visual Basic very poor design
i know i am new to vb, but i am very disappointed in some areas. 1. the help sucks, almost every item i click on i get an error. all of the suggestions are useless because it's a link problem. they just don't work. 2. and who in their right mind would store files that have to do with projects outside the folder named for that project makes no sense. if i want to back up a project, i shoud be able to go to that folder and make a copy. but no, the vb code is stored outside the project folder, under projects. just stupid if you ask me. Ha ha Lactate pump What kind of application are you writing ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX 9.0 SDK November 2005?
hello everyone, is it possible if i could know when will The DirectX Team release the DirectX SDK for november 2005 Thank You It as indeed my card :-) I got tired of it and bought myself a better one... Now of course every thing work perfectly :-) 9200 was indeed for DX8 and the new SDK expect a better shader... Now I'm having fun with Ati Render Monkey...(free on ATI site) Exept that my *.fx file don't work well in Effect Edit Oh well, I will find a way :-) ...Show All
Visual C++ MSVCMRTD.lib(mstartup.obj) : error LNK2022: metadata operation failed : tagTEXTMETRICA
I am getting the following errors when converting our Managed C++ code from VS2003 to VS2005: MSVCMRTD.lib(mstartup.obj) : error LNK2022 MSVCMRTD.lib(mehvecdtr.obj) : error LNK2022 MSVCMRTD.lib(managdeh.obj) : error LNK2022 MSVCMRTD.lib(msilexit.obj) : error LNK2022 MSVCMRTD.lib(puremsilcode.obj) : error LNK2022 I am using the same cl and link options for every file. We have one common make_com.mif that gets included by all other makefiles. That way, there is only one place to change the options. Here is the command line for cl.exe (though I'm pretty sure that the real problem is the linker): cl -c -Fddebug\ -Fodebug\ -WX -Gd -Z ...Show All
Visual Studio Tools for Office Persistent menu in Word (through VSTO 2005)
Is it possible to create a persistent menu in MS Word 2003 via any other means than implementing IDTExtensibility2 interface All other parts of our project are implemented using VSTO 2005, but we also need a 'starting point' of sorts - i.e. a menu or a smart panel that is always present (no matter what type of document or even if no document is open). Any suggestions are welcome. Thank you, -Nick Hi Nick, Word documents/templates customized with VSTO cannot be used as global templates (or loaded from the Startup directory of Word). For more information, see "Limitations of Global Templates and Add-ins" ...Show All
Windows Forms Assembly error using ClickOnce
I have published an application to a network share using ClickOnce and installed it to my PC - it works fine. Now however when I make changes and try to compile it on my PC I get this error System.IO.FileLoadException was unhandled Message="Could not load file or assembly 'xxxxx, Version=xxx, Culture=neutral, PublicKeyToken=xxx' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. This app uses several DLLS which are signed. This assembly is on my development PC - How did this happen Regards Richard Hi, ...Show All
Visual C# Process class used from Windows Service fails
I'm having trouble with the Process class. I have a Windows Service running as SYSTEM and I want it to spawn processes on behalf of users. I get the user's password there securely and create a SecureString. I get a Win32Exception "Access Denied" on Process.Start. If I run the service under the same account as the user I want to start for, I still get the exception except it says "The handle is invalid". I've checked and checked the SecureString and I've made it read-only so I don't think that's it. I actually had gotten it to work some time ago if I impersonate the client but this isn't really practical since the job ...Show All
SQL Server Can't Attach Database using SQL Server Management Studio Express
I am having a problem Attaching, well actually not being able to see a database when attempting to attach it. I suspect this is more of a security issue rather than a problem with Management Studio, but I can't figure out what is happening. If I copy a database to Documents and Settings\All Users\... and attempt to attach I can see the file in the selection tree. This also is the case if I copy it to Documents and Settings\Default User\... But if I copy it to Documents and Settings\ADynarski\... which is the account I normally log into, when I expand the folder in the selection tree, nothing is visible. And the same thing occurs if I copy ...Show All
Windows Forms TabControl and ToolStrips:strange behaviour ?
got a form with a tabcontrol on it. On each tappage a ToolstripContainer and some Toolstrips in int. If I see Tabpage 1 in the designer and run...then I get Toolstrips visible on Tabpage 1. Not on ex.TabPage2. if I see Tabpage2 in the designer and run...then I get Toolstrips visible on TabPage 2. No on ex. TabPage1. Is this meant to be or am I missing something Thx JMW You are welcome to have the last word on this, here's mine. When we set out to build toolstrips, we decided that we didn't know 100% of the cases where/when/how folks were going to use them. This is a major reason why we decided to ...Show All
