J Lim's Q&A profile
Windows Search Technologies Windows Desktop Search won't start & I cannot remove it
I recently upgraded to the most recent version of Microsoft Desktop Search. From the Admin account it seemed to be operating perfectly. When I logged off and then on to another account It gave me an error. It suggested that I remove and reinstall. I did and encountered the same problem. I was going to uninstall it, but it has disappeared from my "Add or Remove" list of programs. HELP! Paul, Thanks for getting back to me. Everything was done under the administrator account. I've tried to re-install, but I get the same problem. I cannot un-install the windows desktop search program because it is no longer on the list of programs under add/remove programs. John ...Show All
Visual Studio Team System Problem: TFS Proxy not working - defaulting access as local\ASPNET
Trying to use the TFS proxy is failing at the VS IDE with the usual: The source control proxy 'ProxyServer' is not responding, so the request will be sent to the main server. Please verify your settings. Additional information: TF15013: The requested Team Foundation Server is not registered with the proxy server. Both the proxy and master are in the same domain. Proxy.config has been updated with the correct information as per instructions. Proxy Service Account is a domain account - the same as the Master service account. This account is a member of the team Foundation Valid Users group. The strange thing is that the error message in the proxy application log is: Event Type: Warning Event Source: TFS Proxy Server Event Catego ...Show All
SQL Server An error has occurred during report processing (rsprocessing aborted) Invalid attempt to read when no data is present
Hi , The application is in ASP.Net with backend as SQL 2000 SP4. The ASP.net displays reports using SQL reporting services using stored procedure.If two users try to view the same report and navigate the same reports concurrently I gets following error for first user "An error has occurred during report processing (rsprocessing aborted) Invalid attempt to read when no data is present." Note: Two users are viewing the same reports and navigate the same reports and error is getting for first user not for 2nd . The second user can navigate reports without an error. Please help me for solving this problem. Thanks, Rakesh Could this be a security issue rather than a concurrency issu ...Show All
Windows Forms Problem with the sample code of showing the error icon when the user is editing the cell
Hi ! I am using the sample code mentioned in the windows forms faq for datagridview. The code is for showing the error icon when the user is editing the cell. The problem with the code is the tooltip does not appear at all when the "BAD" text is typed in one of the cells. Also, when you type bad data and then enter the right data and then come back again to the same cell and type bad data the error icon does not appear. The error icon is only a one time thing. I am not sure if anybody has really tested this piece of code.Or am I missing anything here . Suggestions and advices would be helpful. This should be really a standard code to capture the edits but apparently is not working correctly. The code is as follows: private ToolT ...Show All
Windows Forms Changes in database and update datagridview problem
hi, i have a WinForm datagridview (dgvUser) that is populated with data from a SQLEXPRESS db. On the same form I collect user input using textboxes and after user clicked on OK button, those information will be saved to the database. At this point, everything is perfect. At the same time, I want the dgvUser to update itself with the new info. I have read others' posts regarding this issue and tried some suggestions from posters. From what i see, the datagridview was refreshed but the data wasn't updated. Anyone with solutions or suggestion please help. Million thanks. Regards, Sha private void dgvUserUpdate() { this.tblUserBindingSource.EndEdit(); dgvUser.DataSource = dmsDataSet1.tblUs ...Show All
Visual C# chellanging question regarding ports
Dear All, When I execute command “netstat –na” I am getting following output Proto Local Address Foreign Address State TCP 0.0.0.0:135 0.0.0.0:0 LISTENING TCP 0.0.0.0:445 0.0.0.0:0 LISTENING TCP 0.0.0.0:1025 0.0.0.0:0 LISTENING TCP 192.168.1.116:1035 206.46.110.54:1863 ESTABLISHED TCP 192.168.1.116:2058 223.118.5.140:8080 ESTABLISHED TCP 192.168.1.116:2060 223.118.5.120:8080 CLOSE_WAIT How to know which Application opened which port. Thanks I wanted to read the output from "netstat -b ...Show All
Visual Studio Express Editions include<graphics.h> too old but still good for beginner
hi evrey one here do u remember this old header file graphics.h so my question is how can i use it in vc++ and thx for advance spinal wrote: do u remember this old header file graphics.h so my question is how can i use it in vc++ I'm not surprised that Ayman doesn't remember graphics.h . Chroma2 , my last application with it was written in 1991 and I just found a copy of it in an archive (*.arc !) on my about-to-be-retired Windows 98 box. (It's a 16-bit application and I have not attempted to run it since that time.) Background: First, graphics.h was provided for the Borland Graphics Interface (BGI) way back on Turbo C and Borland C++. ...Show All
.NET Development Insert now row, and get the ID number in return
If i insert a new row into a table that has a column ID as the primary key with autonumber, how can i get that ID value returned after i inserted the new row. I'm coding in vb2005 and uses abd access database one way would be to get the last record inserted (select top 1) and sort it in desc order and that would be your last record inserted. Not sure if Scope_Identity() is valid in MS Access but you could also use @@Identity to get the last record's ID back The other is to include perhaps an out parameter which will be used by your T-SQL statement to set the current record ID back to this parameter... lets give this a shot 'ok so you have just inserted your record. Still keep the connection op ...Show All
.NET Development execute stored procedure on only selected rows
using inventorytableadapter.updateQuery1("itemno") I'm able to subtract Invoicedetails "Qty" from Inventory "Instock" but I need to add a where clause to this query so that only the selected rows are updated here's my query UPDATE Inventory SET InStock = Inventory.InStock - InvoiceDetails.QTY FROM Inventory INNER JOIN InvoiceDetails ON Inventory.ItemNo = InvoiceDetails.ItemNumber; where ( Itemno=@Itemno ) SELECT ItemNo, ItemDescription, InStock, Units, Cost, ItemID FROM Inventory WHERE (Itemno = @Itemno) Any Ideas I'm adding datarows to "invoicedetails" table from "Inventory datagridview" with the ...Show All
SQL Server How to identify a dialog as encrypted?
I am trying to lookup a dialog from conversation_endpoints, however if a dialog was created with the encryption setting to ON and thereis no master Key in the database then the record put in the conversation_endpoints is the same as one without encryption. How can I distinguish between the one requested with no ecryption and requested with encryption but setup with none due to the lack of a key There is no way to find out looking only at the sys.conversation_endpoints table. But if you request encryption and there is no master key, the messages will stay pending with status set to 'The session keys for this conversation could not be created or accessed. The database master key is required for this operation.' in the sys.transmissi ...Show All
Windows Live Developer Forums Error
I cant get windows live to work. I keep geting this error code:8004882c Anyone know what this error is I will not close down my security just to get this thing to work. I will wait tell all the bugs are out of this prog. Windows messenger works with all my security progs running "so i will just stick with it tell then. Thanks Uleepera for your help. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Efficient rendering
Hi, I am on the path to learning how to achieve efficient rendering. Currently I am rendering my own sprite by rendering a texture on a quad. So this sprite uses an Effect, a vertex buffer, an index buffer, and a texture. What would be the best way to render these sprites Do we sort/batch them according to texture, effect, or something else What I am thinking of is something like this: In RenderManager's draw call: -for all render objects in list: --sort by effect, sort by texture -for each effect: --assign effect --for each texture: ---assign texture to effect ---for each object: ----assign vertex & index buffers ----set shader params (local to world matrix, other params) ----commit effect changes ----draw primitive using render obje ...Show All
.NET Development Error "ExecuteScalar requires an open and available connection..."
H all, I have an application that retrieves data from a local SQL2005 (Standard edition) database frequently (e.g. more than 10 times/second normally). It usually works fine. However, if the program was paused for a while (e.g. for a few hours) by a pop-up error message box or an Sleep() statement, it generates the following error message when its data processing resumes: " ExecuteScalar requires an open and available connection. The connection's current state is closed ." The application is coded with C# using ADO.Net. The connection is OleDbConnection. It seems there is some timeout process that I do not know. Could anyone offer any hint Thanks, hz Yes, I believe that once you enable the shared mem ...Show All
Visual Studio Express Editions Can't clean all with vcbuild command line
I can type at the command prompt: vcbuild tool.sln /clean $ALL ... and it works as I expect; the tool solution is cleaned. However, when I use the same line in an nmake makefile, it doesn't work: I'm told that "LL" is an invalid configuration. It doesn't help if I use quotes around "$ALL" either, as in: vcbuild tool.sln /clean "$ALL" ... at least it complains that "ALL" is not a valid configuration, instead of "LL". help Thanks, Jeanne Thank you, this did the trick. I put in $$ALL, in quotes or not, and it works either way. I did RTFM, but my FM does't appear to cover this. Jeanne ...Show All
Visual C++ Running an .exe file compiled in VC++ 2005 on a different computer
Hello, I've got a question regarding how to run a program compiled using VC++ 2005 on a different computer. Although I have seen the thread by suda5181 and the answer by RonaldLaeremans (http://forums.microsoft.com/msdn/ShowPost.aspx PostID=23371), I can't find the redistribution pack for the current Visual C++. I have found a page with the Redistribution pack for Visual C++ 6.0 (http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvc60/html/redistribvc6.asp) but I don't know if it'll work. With Thanks, Gal Beniamini. Hi, If you install to the default location (with any non Express version), the redist is ...Show All
