tradle's Q&A profile
Windows Live Developer Forums don't like msn beta.. but back to msn 7.5 open
I made mistake click for the msn beta self destroy cause to still display problem the bad color..Becuse I did struggled to figure be all fail the msn 7.5 is unable open and chat include everything.. I feel tired that waste time about the msn beta still stay in computer... But it's not good beta msn cause bad virus software and destroyed the display problem of color..As I fixed all fail how to open the msn 7.5..Also I would like to interest more attract on msn 7.5 than Beta. I wish to want be back normal on msn 7.5.. How can you help to techical support in my computer .. You will send me the download back to msn 7.5.. ...Show All
Software Development for Windows Vista How to optionally set an output parameter in xaml
I want to use an inner activity to set the output parameter of the workflow. This seems simple enough with a simple workflow: <DT:MySequentialWorkflowActivity Response="{ActivityBind Name=child, Path=Message}" ...> <MyChildActivity x:Name="child" Message="This was read from a child" /> </DT:MySequentialWorkflowActivity > But how do I optionally bind to different activities For example if I used an ifElse activity how can I push a property from an Activity within the branch that executed into the output parameter: <DT:MySequentialWorkflowActivity Response="{ }" ...> <IfElseActivity x:Name="ifElseActivity1"> <IfElseBranchActivity x:Name ...Show All
Visual C++ This application has failed to start because the application configuration is incorrect
Re: This application has failed to start because the application configuration is incorrect I have built a small console application (the .exe is 17k) that I created in Visual C++ 2005 Express. I want to share it with 10-20 users working on XP platforms. It processes data using file i/o, thats all. However, I have found that on some machines it does not execute. I get the error message in the subject above. I figured out using Dependency Walker ( www.dependencywalker.com ) that my application requires the following: KERNEL32.DLL MSVCP80.DLL MSVCR80.DLL MSVCRT.DLL NTDLL.DLL The machine that my application did not execute on was missing MSVCP80.DLL and MSVCR ...Show All
Visual Studio 2008 (Pre-release) LINQ2SQL Cast Exception on Average Aggregate only after I add an OrderBy on a Joined table
Hi, I am having an issue with the Avergage operator. I am joining two tables, and projecting some aggregates in the result. As soon as I join to another table, it fails. Average equates nicely in the un-joined example, but fails in the join. I thought I'd bring it up in case i'm doing something silly, but the query does seem reasonable. Let me know if you need more information. This works: var q = from call in db. CallLog where call.Incoming == true group call by call.Number into g select new { Avg = g.Average( c => c.Duration ) }; foreach ( var call in q) Console .WriteLine(call.Avg); SELECT [t1].[value] AS [Avg] FROM ( SELECT AVG([t0].[Duration]) AS [value] FROM [Call ...Show All
Visual Studio Express Editions Making a working form out of Visual Basic Express
Hi, I was wondering if there was someone who knows how to make a simple application using the checkboxes in Visual Basic Express what is the code to store the info on those and what is the codes to go with two buttons, one to clear the info / cancel and the other to send the checkbox marking info in an automatic text email. I just got through with lesson 2: Getting Started: Beginners Guide to Visual Basic Express. Thanks! in the solution explorer, right click on "references" > add reference and find "System.Web.Mail" and click ok. this will add a reference to that assembly in your project. Then at the top, where are you "importing" namespaces, type: imports System.Web.Mail ...Show All
SQL Server SQL Server Express Error When Installing
I've Successfully Installed Visual Web Developer Express Edition but when i tried to install SQL Server 2005 Express Edition I get this message: TITLE: Microsoft SQL Server 2005 Setup ------------------------------ An instance with the same name is already installed on this computer. To proceed with SQL Server Setup, provide a unique instance name. ------------------------------ so i downloaded the Visual Studio Auto-Uninstall and everything goes well until i accept the Agreement then i get this: < xml-stylesheet type="text/xsl" href="C:\DOCUME~1\Sam\LOCALS~1\Temp\IXP000.TMP\issues.xslt" > <Issues><Issue><Name>Uninstall Visual Studio components</Name><Id>{BB69B4AB-619E-487f ...Show All
SQL Server ReportViewer (WinFprms) View Reoprt button
I'm using the ReportViewer winforms control. It works great except for one annoying issue. The "View report" button shown to the right of the parameters for the report is rendered too far to the right. So when my application is running in 1024*768, the button is rendered outside the visible area. It doesn't seem to make any difference if I have one or several parameters, the problem remains. Is there any way of controlling the renderingposition of that button Regards Andreas Thank you for your answer Teo (even though it wasn't the answer I wanted to hear) =/ Sounds like something to improve until the next release of the ReportViewer control, or ...Show All
Visual Studio Team System Customising WorkItem & Work Flow
Hi All, I am trying to customise Work Item Template. This Customisation also include definning workflow. i am not clear about this work flow what is the relation between WorkItem customisation & workflow. Any inputs with good practicle example will be highly appreciated. Thanks. Hi Yogita Thanks a lot for your help. I have gone through this link. while customsing the template (am using PTE) for a perticular WI Defination if i goto Transitions or States nodes under workflow there is option of adding fields i am not able to understand what is the use of it & where these fileds are instrumental. wht role these filds play in transition or state. Thanks Vishal ...Show All
Game Technologies: DirectX, XNA, XACT, etc. .X features supported in XNA?
Hi, I'm currently working on a .x exporter for XSI with shader support. However I have some questions regarding exactly what features are supported in XNA. Setting the technique in the .x file does not seem to work: EffectParamDWord { "technique"; 3; } XNA always renders using the first technique in the shader, unless you manually set it with Effect.CurrentTechnique :( Also what part and version of DXSAS is supported It would be nice if semantics used in e.g. FxComposer just worked with XNA, e.g things like: float4x4 WorldIT : WorldInverseTranspose; float4x4 WorldViewProj : WorldViewProjection; float4x4 World : World ; float4x4 ViewI : ViewInverse ; Or do you have to manually parse all effect param ...Show All
Visual FoxPro How to copy one column to another
Hi all, I would like to copy a column that has prices (fprice) for parts in it to another column within the same table. Then I am going to do a replace on the original column (fprice) to increase the price by a fixed amount (I know how to do that). The table has a column that is not used for anything (by us) within the application. It is a User Character 3 field (fcusrchr3). I need to do this so our CFO can look back at the old pricing if need be. Any help copying the column would be greatly appreciated. FYI, this is in Visual Foxpro 6. Thanks, Erik FYI scope clause "ALL" that is found in many commands like replace,delete etc are an easy way ...Show All
.NET Development Problem with Transactions C# and Sql Express 05
Hello everyone I need to have a transaction with a select statement like so trans = cn.beginTransaction Insert into order table an order record select unique order Id from order table insert record 1 into orderdetails using the orderid insert record 2 into orderdetails using the orderid commit trans I am of course experiencing record locking after my first insert. I cannot select records from the order table even though I need the inserted OrderId in order to insert into the orderitemst table. I have tried switching the isolation level to readuncomitted on my transaction but sp_who2 still shows a block even with the readUncomitted Isolation level. A foreign key on the orderitems table prevents me f ...Show All
Windows Forms A date Question
Hello. I need your help with dates. I have 2 dates and i want to know the mathematical difference between them, for example: variable = Date1 - Date2 Thanks Merovingio thank you ahmedilyas , i did it, thank you for your help. ...Show All
Visual Studio Express Editions DVD player
is it possiable to make DVD software to play movies , like the software you can buy...Like intervideo and programs like that . not exactly. in order to use your software created in .NET 2.0, the other computers also need to have .NET Framework 2.0 to run your software, without it it will not run you would need to create your own filters/parsers/codecs to play DVD files which may not be possible in .NET 2.0 (but dont quote me) to play the DVD. You can however embed a WMP Control in your application and use that to play your DVD/audio files but in terms of redistributing it you would need to contact Microsoft for the licensing portion about it. Another way would be to use perhaps some 3rd p ...Show All
Windows Forms How to trap keyboard event. like Esc and Delete etc.
in my case , i want the same ability like in VS IDE which is when on design surface, select a control and then press ESC ,the Selection Control will turn to it's parent control. i trying to add the messageFilter to handle the key event . but it will trap all key events in the application. Apperently this not meet my requirement, i just want the design surface handle the message. i have tried to handle Message Loop as well it doesn't work ; for example: System.Windows.Forms.Application.AddMessageFilter(_msgFilter); ...... public class MessageFilter:IMessageFilter { private BaseForm _owner; private const int WM_KEYDOWN = 0x0100; private const int WM_RBUTTONDOWN = 0x0204; public MessageFilter(BaseForm owner) { this._o ...Show All
Smart Device Development Writing EXIF Metadata in Windows Mobile 5
I have a problem for embedding EXIF metadata information to a JPEG file in a PDA (using Windows Mobile 5). There's a good example to read EXIF metadata from a JPEG: http://www.pocketpcdn.com/forum/viewtopic.php t=6211 I can easily replace the command GetPropertyItem with SetPropertyItem, but what next Because in my opinion, these commands are applied in a memory stream and we have to save it into file if we want to embed the EXIF metadata to a JPEG file. Please help! Thank you in advance. Thank you, I got the ImageCodecInfo object. Next how to choose the correct CLSID for IImagingFactory::CreateImageEncoderToFile And then where do we specify the source image filename Is it in th ...Show All
