GBH123's Q&A profile
Visual Studio Vss Remote Access
In VSS 8.0.50 (its beta version) Remote Internet Acess, Does it provide rename, delete, get by time or by label, history, labeling, or share/branch functions I don't remember what the beta supported, but the RTM provides Rename, Delete and Share(AddFromScc) functions. History and Properties (from what MSSCCI spec permits) are not implemented. Get_by_Time, Get_By_Label, Labeling, and Branching are features that none of the MSSCCI providers can support - the MSSCCI interface does not allow implementing such features. Alin ...Show All
System Center MOM Reporting Server
Why doesn't the MOM Reporting Server show any utilization numbers Cheers Dave Currently, the MOM Reporting Server is included only for disk sizing purposes. This issue will be addressed in future releases. ...Show All
Microsoft ISV Community Center Forums Windows media files have changes to Nero
Hi just wondering how I change my music files back to windows media player, they changed to nero flies last week after burning a CD. Hate the nero player, but love windows media player. Hope someone can help me Thanks Shihad P.S check out Shihad single ALIVE Hello Brenda, NERO has done it to me also. I have followed your instructions listed but the files do not change from Nero Files. All of my files changed from media player files to this Nero File type. My I tunes and Nero player will play my music, but media player wont play the files. Another problem is that the nero files will not transfer t ...Show All
Visual Basic Making a picturebox have a transparent background
I have a picture of a panda with a pink background (panda_down.bmp) and I was wondering: how do I get that pink background to be transparent Draw the image yourself in a paint handler, and use the imageattributes class to make 255/0/255 ( magenta ) transparent. ...Show All
Smart Device Development MessageBox menuItems refresh?
Hi, I'm trying to display a messageBox to ask Yes or No, in order to continue. But after hitting Yes the menuItems hang around until all the other code after is done. Is there a way to refresh or clear it Or is the only solution to restructure it another way somefunction() { DialogResult result = MessageBox.Show(_,_,..YesNo,..); if(result == DialogResult.Yes) { // do a bunch stuff } } <-- the YesNo menuitems remain until I exit here ...Show All
Visual C# 'Couldn't find specified module.', 'FileNotFoundException' when declaring class
When I declare a class from a referenced DLL (TrueVision3D.dll), Visual C# (2005 Express) throws a FileNotFoundException, containing the description: ' Couldn't find specified module. (Exception from HRESULT: 0x8007007E) '. The strange thing is this source code and DLL worked before, but after I reinstalled Windows XP it doesn't work anymore. All required dependencies are there in the right place -already checked that. Also: it only appears when debugging. When I run the Release executable, it just runs. Little sample code: static void Main(string[] args) { TrueVision3D.TVEngine engine; << this line throws the actual error. Sy ...Show All
Visual Studio Express Editions Adding Microsoft Chart Control to VB Express
Hi, I'm trying to add Microsoft Chart Control 6.0 to VB Express edition. When I click Projects|Add Reference|COM I can't see it there. I've tried adding Microsoft Graph 11 and looking for it in the Toolbox|Choose Options|COM menu, but I can't see it there either. Does anyone know if this function is left out of the Express edition Or is there another way to get to it Thanks Andy hi, as far as i know its not in express edition but you can look at FAQ at the top of forum there are some posts about chart/graph/plots and some tutorials about it hope this helps ...Show All
SQL Server Remote Debugging in SSIS ?
Hello I've just heard that Remote Debugging should be possible in SSIS, but how Some of the projects we run require a lot of memory and it's sometimes slow to debug on the local machine Yes i know i can reduce the input rows, but in some cases i need all the data for testing. Does anyone know how to remote debug cgpl, Just to clarify, by remote debugging I assume you mean that you want to make a package execute on a remote machine whilst seeing things turn green/yellow/red on your local machine. Is that correct As far as I know, that isn't possible. But don't take my word for ...Show All
SQL Server OK button not working...
I am trying to get MSSQL Reporting Services working. I have used it before, but now I have the opportunity to get the software entrenched in my organization. I installed the app and it opens up, but when I try to create a new folder the software will not allow the OK choice. I can cancel, but I need to choose OK. I have installed the app, SP2, and a hotfix that is on the website. Help.... Thanks. The button presses, but doesn't "click". There aren't any tool tips when I mouse over or hover, and the page doesn't change. ...Show All
SQL Server SqlDeveloper/SqlExpress Conflict.
Hi, Background: I'm on a Pentium 2.4 with 1024 mb Memory and 160 Gb harddrive, running XPPro with SP2. I started a project in VS2005Beta2 with Sql2005Beta. When the RTM versions came along I ungraded to VS2005Pro, and tried to upgrade the SqlDeveloper. This ran amuck, but I could still access my database, so after three attempts I gave up temporarily. When it looked as if I was actually going to finish my project, I decided to sort out my Sql. Still had the same problems, but found the Cleanup Utility, which did a great job of cleaning up the residual stuff in the registry. I downloaded SqlDeveloper, and ended up with file reference ...Show All
SQL Server Where can I find SQLCMD?
Hi, all here, where is the SQLCMD (to run sql scripts). I mean I did not find SQLCMD on the SQL Server tho. Thanks a lot in advance for any help. Hi, for me its located in C:\Program Files\Microsoft SQL Server\90\Tools\Binn HTH, Jens Suessmeyer. ...Show All
SQL Server LIKE % question
Hello, I'm working on a project where I have a drop-down menu (collectionlist) of different words, which are part of a title which is located in my database. The bolded line is where I'm having my problems. I'm not sure how to place the LIKE statement. I will give you a quick example of what I would like to do: In the CollectionList, there is the word head. In my database, there is the title, head with earrings . I would like the filter function to find head with earrings when looking for the region, head . :S Thanks, I know this is a simple one, but I can't seem to find where I'm going wrong. Here's the code ...Show All
Visual C# Get Random Row From Table
Hello. All other questions that was before i solve. Thank you all for ideas. Taday i have other problem :) i have Table "PLAYERS" i want receive only one row from it but it must be randomly choosed AND obey special createrias (Field1 equel to 1 , Field2 more than 76 something like this) before i used dataset and it was easy DataRow [] NotPlaying = dataSet11.Tables["PLAYERS"].Select(Creteria ); if (NotPlaying.GetLength(0) != 0) { Random d = new Random(); int number = d.Next(0,NotPlaying.GetLength(0)); NotPlaying[number]; // this was randomly choosed row in a set of valid rows } BUT now i do ...Show All
.NET Development HttpFileXfer failure
I haven't exhausted all options yet to find out why it is not working but decided to post this question anyway. I am playing with HttpFileXfer which is one of the projects in DeliverySmartClient as part of the directory HTTP Communication Sample which in turn is a part of .NET Compact Framework Samples that I downloaded from MS websites. I've got two computers with Win2K on each. I am the administrator on both. They are physically separated by about three city blocks. I am trying to run a C# sample not VB. I think I followed all the instructions of the readme file. I set up the virtual web directories recommended on both computers. ...Show All
Windows Forms equivalent to session variables in windows forms
Hi I want to know how the session variables are implemented in the windows applications. I have a user login screen to get into my application and if the session is idle for more than 15 minutes I want the user to be redirected to the login screen. I know how to do this in web applications can ne1 tell me how to do this in  ...Show All
