AAG's Q&A profile
Windows Live Developer Forums Daily Report
Hi, Anybody can say me the reponse to the following question How I can receive whole daily report as when I tried to specify startDate = endDate, then report isn't respective with MSN UI Report... A gathered contains data lesser than in MSN... Should I specify date like 2007-02-15T12:00:00... Thank you Hi Shai, This sample doesn't help me, as there isn't any information re HOW to recieve the daily report - the report that will include whole day... Serg ...Show All
.NET Development Some of the files required for Web references are not installed.
When I click "Add Web Reference", following error inoked. Some of the files required for Web references are not installed. VS Configuration! Microsoft Visual Studio 2005 Version 8.0.50727.26 (RTM.050727-2600) Microsoft .NET Framework Version 2.0.50727 Hello, What version do you have installed For the retail bits of VS.NET 2005 it should be version 8.0.50727.42. Is the version you installed bought from a store or was it handed out at a preview conference My guess is that you are simply missing files needed to render this Add Web Reference dialog box. I assume you've already tried an uninstall and reinstall. Check to make sure that the following files exist on your machine... C:\W ...Show All
SQL Server SQL Express Management Setup Error on Windows Vista Beta 2
Miscrosoft SQL Server Management Studio Express (SQLServer2005_SSMEE.msi) don't complete setup on Windows Vista Beta 2 with Sql Server 2005 Express installed. Error Code 29506. C:\Program Files\Microsoft SQL server\\90\Tools, Alberto What mean (Alberto is my Windows account) I finally tracked down a couple of developers who know something about SSMSEE. Apparently for this version of the product only, it'll only log if you specifically ask it to. This is an oddity of the slightly unique way we install SSMSEE. Anyway, try a command like this to generate a log so you have something to work with: msiexec /i sqlserver2005_ssmsee.msi /l*V c:\setup.log ...Show All
SQL Server Syntax using EXCEPT
My statement below gives me an " Incorrect syntax near the keyword 'EXCEPT'" error. select distinct tprod , tlot from ith where ttdte between 20061023 and 20061105 and ttype = 'R' and twhs in ( 'FV' , 'S1' , 'MV' ) EXCEPT select distinct tprod , tlot from ith , frt where tprod = rprod and ttdte between 20061023 and 20061105 and twhs in ( 'FV' , 'S1' , 'MV' ) and ttype = 'R' and rtwhs = 'RP' Each individual SELECT statement runs fine on its own. What have I done wrong when combining them h Yep. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Windows Forms Send a mouse button click when the form doesnt have focus
I'm trying to click a button on a different program. I have successfully given the other program focus, and changed the cursor position, but I am trying to figure out how to send a mouse button click to actually click the button. I just wanna say it's a big SHAME microsoft developpers didn't think about fire an event to a specific Control. I can also use the Microsoft.WindowsCE.Forms.MessageWindow.SendMessage func to try to generate a click at the location of the button, but I'm repeating it ...Show All
Software Development for Windows Vista Fault Handler and Bindable Properties
I'm using the June CTP of WF. After I promote Bindable Properties on my FaultHandler I'm getting a weird popup in the VS environment. DependencyProperty 'Fault:System.Workflow.ComponentModel.FaultHandlerActivity' does not have an associated CLR property. All non-attached Dependency Properties should have a corresponding CLR property. Any ideas I'm trying to log Exceptions that happen in an EventHandler. I was trying to put an faulterHandler that caught all generic System.Exception and then write to the EventLog and set the state back to the current state. I figured that the only way I could see the exception from my EventLogWrite activity was to promote the faulthandler as a ...Show All
Visual Basic Drawing is not a member of System?
I have a namespace called "Jimmyware.GameLibrary" which contains a form called "Game". Apparently Drawing is not a member of System. I have ensured that System.Drawing is referenced in my app, and I added "Imports System.Drawing" at the top of my code, and it still doesn't work!!! What's going on I have checked in My Project, and System.Drawing is definitely imported. The code: Namespace GameLibrary Public Class Game Inherits Windows.Forms.Form Public Sub New ( ByVal FullScreen As Boolean ) End Sub Private Sub InitializeComponent() Me .SuspendLayout() ' 'Game ' Me .BackColor = System.drawing.color.black '<--Drawing is not a ...Show All
Smart Device Development Application login
Hi, i am building a mobile application, in which the users needs first to login, and then can perform several operations against dedicated web services. we hold an offline table in Sql Mobile with the users that can login into the application. now, considering that the user has successfully logged in (checked againsted the offline table) - how do i check in the web service that the requester of the method is a legitimate user. should i send out the user+password on each call to the webservice what is the best practice to work with web services , where i want only authenticated users to use I read a while ago, that i can login once (using a login method in the webservice), get a token and use it is the next calls. Th ...Show All
SharePoint Products and Technologies Publishing Feature in WSS 3.0
Hi, I have been looking for information on Content Deployment in the new Sharepoint products. We are looking to have an intranet MOSS server and a WSS 3.0 internet server. Is it possible to deploy basic content from a MOSS server (doc libraries) to a WSS 3.0 server I cannot find a direct answer to this. I know that publishing is a MOSS-only feature, but do you require publishing to recieve content, or only push Is is possible to enable some feature in order to achieve this Thanks in advance for your help. I understand that this may sound like a stupid question. Regards, Michael ...Show All
Smart Device Development Icon problem with CAB?
Hi, I have created CAB for my application with many shortcuts in different locations. Actually my problem starts with my Application Icon. When I run CAB in Emulator no problem occurs. But when I try it on real device the problem comes. Actually the Icons which is displayed in Strat--> Programs properly. but the icons which are placed in start, and in my application folder appear only 25% of the icon. I tried with both sizes 32 X 32 and 16 X 16 but same problem with both icons. Why this problem is occuring. Can any one solve my problem. Thanks in Advance, Hi Friends, Can I place two icons for my apllication. like in Programs(Start--> Programs) short cut I want to use ...Show All
Software Development for Windows Vista Problem with Configuration File Remote with Workflow
I create workflow for vacation. Dim vacation As New VacationServicesLibrary.VacationReport vacation.EmployeeId = "20071045" vacation.VacationReportID = System.Guid.NewGuid vacation.SubmittedBy = txtSubmittedBy.Text vacation.Status= VacationServicesLibrary.StatusEnum.Approved vacation.SubmittedTime = CDate (DateTime.Now) Dim strVacationRemoteServiceUrl As String = ConfigurationManager.AppSettings.Item(ConfigurationManager.AppSettings.Keys(0)) Dim svcVacationService As VacationServicesLibrary.VacationRemoteService = CType (Activator.GetObject( GetType (VacationServicesLibrary.VacationRemoteService), strVacationRemoteServiceUrl), VacationServicesLi ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Stuttering in D3D application
Hello, we're experiencing stuttering in our D3D game. With stuttering, I mean that the game loop will generally take 20-30 milliseconds to complete, running smoothly at ~30 fps. But then, like once per second or so, the game loop will take like 150 milliseonds or more to complete. The stuttering happens on many different computers so I don't think it's a driver/hardware/setup problem, but rather something that we're doing in our rendering that's causing the stuttering. Many other games run fine on these computers. I've profiled parts of the code.. and usually the huge delays come from D3D Present() method or the actual rendering. Does this indicate that there's a problem with the rendering command queue being filled up and stalled or somet ...Show All
SQL Server Space problem in ReportServerTempDB.ldf
As we have heavy reports.and due to large space occupied by reportservertempdb.ldf we have to manually detach the ldf every time in few days..how can i programitically minimize the space generating in reportservertempdb.ldf.. Give me some tips that i sud take care of for this issue.. WHat about: http://support.microsoft.com/kb/873235 Placing the commands in a job or using a maintaince plan will help you here. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Visual Studio 2008 (Pre-release) Vertical Text Alignment in Textblock
Is there a way to align text vertically (i.e. centered) inside a textblock It seems that it defaults to aligning to the top, and I can't seem to find a way to change it. Thanks in advance! I need to place individual letters dynamically in a 2-d grid, which will be clicked on. My current thought is that I could do a work-around by using buttons instead...hopefully this would be an easy replacement. ...Show All
Visual Studio Team System Problems with QueryLabels
Hy, here is a sample of my code. TeamFoundationServer tfs = TeamFoundationServerFactory.GetServer("tfs2005"); VersionControlServer versionControl = (VersionControlServer)tfs.GetService(typeof(VersionControlServer)); VersionControlLabel[] labels = versionControl.QueryLabels(null, null, null, false, "filePathInTFS", LatestVersionSpec.Latest,false); The Query is not filtering the labels only applied to the latest version of the "filePathInTFS". I'm getting back all the labels that were applied on the file. My file is part of two changesets : 33, 55 so I'm getting back labels that were applied on 33. What I'm a doing wrong.... Thank you James Unfortunately you'l ...Show All
