Predator14567's Q&A profile
Windows Search Technologies WDS never finishes indexing
If I watch the status, it will get down to 1 file left and then build back up to 40,000+ files left to index (I do not change very many files on this system and certainly not 40000 in a day). If I search using WDS, it says it is building the initial index. I have even left Index Now checkmarked for the last week. Any idea on how to fix Same problem here. The index agent has been running for 2 weeks now and the status is still "building initial index". This must be a bug. BTW, I have Google index agent on the same machine and it works just fine only that I don't like the UI so I'd like to switch to the MS indexer however given this issue I'm planning to uninstall the MS indexer unless I see that ...Show All
Visual C# Method call graph [in visual studio 2005]
Could in any way I can find Method call graph [in visual studio 2005]. I am working on a C# application This question should probably be posted in the Vsual C# General forum, http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=31&SiteID=1 . ...Show All
SQL Server How to store images in sql server 2005? Urgent Please....
Hi Every 1 Please tel me How to store images in Sql Server2005 please send me a solution. Thanks in advance.. I don't know anything about this but since you seemed in a hurry and no one has responded...have you checked the following pages It may have the information you need...if no - sorry for wasting your time. http://www.eggheadcafe.com/articles/20030624.asp http://www.codeproject.com/aspnet/PicManager.asp -hth- Smitha ...Show All
.NET Development xsl rearrange flat document
hi, i have document like this <doc> <subitem id="1" itemid="1"><v>sub item one</v></subitem> <subitem id="2" itemid="1"><v>sub item two</v></subitem> <subitem id="3" itemid="1"><v>sub item three</v></subitem> <subitem id="4" itemid="2"><v>sub item four</v></subitem> <item id="1"><txt>item 1</txt></item> <item id="2"><txt>item 2</txt></item> </doc> and i want to the output to be like that item 1 sub item one sub item two sub item three ...Show All
SQL Server Row Number Assigned Via RunningValue But Without Grouping
I have a report where certain columns have values that get repeated, but the client has a rigid requirement for not wanting these columns as groups in the reports (other programs and exports doing specific tasks with those values). In these reports, the "hide duplicates" value is checked, so as to give an aesthetic sense of grouping. The data for the report, in raw form is: Value 1 A Value 1 B Value 1 C Value 2 D Value 2 E Value 2 F Value 3 G Value 3 H etc... In its aesthetic form, it is: Value 1 A B C Value 2 D E F Value 3 G ...Show All
Visual Studio 2008 (Pre-release) LINQ for compiling cool... but what about dynamic queries at runtime?
just curious how this'll be handled. having queries directly embedded in the code is awesome from a type safety standpoint, but what about at runtime i assume some kind of "on-demand" Compiling for a program like "SQL Query Analyzer" (more aptly named LINQ Query Analyzer) that is dynamically compiling these LINQ queries and seeing results, kinda like snippet compiler. I bring this up becomes sometimes you gotta give query ability to the users (report generation etc) Hi Friends i need a help for How to return a query public List < Int32 > GetNewLinkCounter() { Int32 lngCurrLinkCtr = 0; CSAPPayableDataContext appaymentDataContext = new CSAPPayableDataContext (); ...Show All
Visual Studio Express Editions PC - MAC
A friend of mine tried to download my games from my website but it wont work. I think it is because he has a MAC and I use a PC. It wouldn't even work when I took the files over to his house on a flash drive! I think this is a big problem and I would like to know if there is a way to publish your programs for use on a MAC instead of a PC. Thanks! CrazyEngineerKid I take it that you mean that your published games are VB based games that were published with ClickOnce If that is the case... your friend is kind of SOL so long as he’s running the Mac Operating System as any app you build in VB.NET Express will require the 2.0 .NET Framework... something that is only available on Windows PC’s today. ...Show All
Software Development for Windows Vista Vista Certification Test Cases V1.2 Test Case 18
Hi, question concerning ProductVersion-Property of installer package: is it necessary that this number must correspond with ProductVersion-Property of the executables or is it allowed that there are differences (My problem is, that we had used same Version-number for File- and Product-Version property of the executables whereas major number is the year of release (e.g. 2007). While validating msi package ICE24 error occurs). Concretly: can I set ProductVersion of msi to 7.1.0.0 and File/ProductVersion of MyApp.exe to 2007.1.0.0 Hello tfelber, Test case 18 does NOT state that your MSI package and File Version of your application assembly have to be the same. However there are only 3 fields (Major.Minor.Build) for the MSI Version f ...Show All
Visual Studio VS2005 SP1
hi to all, I've installed on my desk VS2005 Pro and the SP1 Beta. now that SP1 was finally release, i tried to install but it tell me that my VS2005 version isn't right to apply SP1. I think it's depend from SP1 beta installed, so tried to remove but SP1 beta uninstall required VS2005 DVD and I have not the DVD because I installed it from the ISO downloaded from MSDN. is there any way to uninstall SP1 beta wthout the DVD or is there any way to install SP1 over the SP1 beta thanks You can uninstall the VS2005 SP1 Beta in the Add/Remove programs utility in XP. Just make sure you've checked the "Show Updates" box. By uninstalling that and the Web Applications Project, the installation worked fine. ...Show All
SQL Server Can't enable queue
Hi Folks, I was testing my error handling and purposefully failed some messages. Automatic posion message detection kicked in and disabled my queue. I tried the following, one at a time to enable it again but it doesn't work: ALTER QUEUE MigrationQueue WITH STATUS = ON; ALTER QUEUE MigrationQueue WITH STATUS = ON, ACTIVATION (STATUS = ON); I would have thought the first line would've worked but I get the following when trying to receive... The service queue "MigrationQueue" is currently disabled. Help. yep. i looked in sys.service_queues and is_receive_enabled was 0. i found out that i needed to end the conversations, so i used the conversation id and bled the queue. wi ...Show All
Visual Studio 2008 (Pre-release) debugging an XBAP app doesn't throw expected exception
got an XBAP app that is supposed to run in partial trust. when debugging in VS.NET, it opens it up in a browser from a local file path. running in this manner, it throws some SecurityExceptions, but not for local file access ... which i expect to exception. if i actually deploy it from a web server, then it does throw the expected FileIO exceptions. is there some debug setting i can change to make it throw all the security exceptions that deployment over the web will throw Thanks, casey Hi Casey, I contend that what you are currently doing is running the app with the Internet Permission set. The problem here, and I honestly do not know a simple solution for it, is that when the app is launched fr ...Show All
SQL Server Stored Procedure returnValue always 0
I have the following Stored Procedure: <code snippet> UPDATE TRW_USERS SET user_password = @password WHERE (user_password = @old_password) AND ( user_id = @user_id); RETURN @@ROWCOUNT Which when run, returns the correct values 0 if no rows updated 1 if row updated In my C# I am doing the following: TRW_USERSTableAdapter userAdapter = new UsersTableAdapters. TRW_USERSTableAdapter (); returnValue = Convert .ToInt32(userAdapter.sp_NewUpdatePassword(sNewHashedPassword, sOldHashedPassword, user_id)); It always returns 0 to returnValue, why Many thanks Brades hi Brades, If you were to write this as a stored procedure, you could create a variable for o ...Show All
Game Technologies: DirectX, XNA, XACT, etc. MouseCursor Component
Here's a component that draws a cursor on the screen where the mouse is currently positioned. It has some events you can handle for button clicks. Still work in progress, but it's functional. Set the texture path property to define what texture the cursor is. Components are great. Just drop this in to your game and boom, you have a mouse cursor (well after you set the texture property). Oh and I assume you have a SpriteBatch already going that you use for drawing other things. If you don't, it's quick to add one yourself. Otherwise, set the Batch property to whatever yours is. using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Components; u ...Show All
Windows Forms how to centered aligned MDI child window when maximized
when child window is in normal mood, it could be centered screen, but when it is maximized then it is not centered, is there any trick i could centered it even inmaximization moode. Thanks When it is maximized, it fills the screen. Possibly leaving the toolbar visible, depending on its "mood". How do you want it centered and fill the screen too ...Show All
SQL Server execute sql task resultset
hi all, in my execute sql task, i have a try catch statement to catch error code if there's an error... begin try insert into person.contact (contactid) values ('1') end try begin catch select @@error as ErrorCode end catch this ErrorCode will be mapped to a user variable. my problem is the value for ResultSet. in order to assign ErrorCode to the variable, i have to set the ResultSet value to Single row, but if this task does not fail, i need to set ResultSet value to None in order for it to run successfully. How do i go about solving this problem Please help. thanks! oh.. but if i omit the try catch statement, the @@error value can't seem to be assigned to the package variable. ...Show All
