JavaBoy's Q&A profile
Internet Explorer Development where to get exact IE version "6.0.2900.2180.xpsp.051.011_1528"
My client is facing problem in using our IE based system having considerably large size. The system works well on various machines and different IE versions and offcourse have gone through enough testing and validation. The machine used by client is branded HP machine having win XP sp2 OS provided by hp. The version of the IE that is running on that machine is "6.0.2900.2180.xpsp.051.011_1528". Now our development machines are branded Dell machines having the same OS but different IE versions. Now in the first step I want to test my system on the same IE version. So is there any way that I get the same IE version on my machine please help me out. Ali..... ...Show All
Visual Studio Team System Validate weblist items (similar to list itmes in comboBox)
Any idea on how to validate the list items present in a weblist (similar to combox) http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/WTAuthDebug.asp ...Show All
Visual C# What is the maximum literal address for a local file?
I thort it was 255 but when tried I found it only == 248 CHAR full LITERAL filename & path string length!!! How do I determine what the user can enter before submitting it to the OS as the intended filename You could define a constant MAX_PATH and set it to 260 then you subtract the current length of the filename to get the number of characters left. It is possible that the MAX_PATH is set 256 in Windows 95, 98 and Windows Me (not sure though) but as mentioned here before you cannot create files using the Base Class Library that exceed 260 characters and a maximum of 248 characters for a folder name. ...Show All
Windows Live Developer Forums PushPins above PolyLine
Hi I'm wondered if someone could give me a quick pointer on how to solve this problem… I have a VEMap upon which I add a few PushPins and draw a PolyLine. Unfortunately the PushPins appear under the PolyLine which both looks a bit crappy and the PushPins are hard to select. Eg. http://www.businessgeek.com/ve/ (Click Draw GPS Trace) Do you know how I can get the PushPins to appear above the PolyLine As you will see I’ve even tried a GeoRss layer but that suffers the same problem. I’d really appreciate help with this. Many thanks Jonathan What order are you actually adding them to the map map.AddPushpin(.... map.AddPolyline(... Are the ...Show All
Visual Studio Team System Deleting a team project
Hi, I tried using tfsdeleteproject command to delete a project. While deleting sharepoint site i got the following message: Couldnot connect to "http://<server_name>:17012/_vti_adm/admin.asmx" I ran the command again, but it says The project 'project_name' was not found on TFs Server. I tried creating a folder at http://<server_name>/reports/Pages/Folder.aspx with same name as that of the project i was trying to delete and reran the command but its still says that the project doesnt exist. Any solution Manasi I dont get any error message when I access " http://<server_name>:17012/_vti_adm/admin.asmx " through web browser. I get a pag ...Show All
Windows Forms Multiple video cards in 1 PC
What is required to have multiple video cards in 1 computer My primary video card is AGP and has both VGA and DVI outputs. The secondary video card is a PCI and also has both VGA and DVI outputs. I am wanting to connect 2 digital monitors to my computer, but so far all I can see is my primary video card display. Is this even possible These forums are for questions regarding .NET developement. For a quicker and better response please post your question at the newsgroups or technical chats over at MS Communities: http://msdn.microsoft.com/Community/ ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Vista Compatibility
Looking for any hints on when a Vista version will be released. (Note that I'm in the middle of installing the same version as everyone else is right now, but the web site says it won't be out for a bit). I really don't want to put a third OS on my system just so I can run xna express. (I've already got Vista Ultimate 32 and 64 bit on here - starting to get crowded) Dan Well, major thanks to the people on this forum. I've now got game studio running under Vista Ultimate 64 bit. Time to get to work on my game, although I'll really be spending the next week or two doing design, and just futzing with xna to test some ideas out for now. Cheers, and thanks again. Dan Lingman NoGotoGam ...Show All
Visual Basic How to set the install path for application
I noticed that my app doesn't install to the Program Files directory as VB6 does it. Instead, the wizard creates a jumbled multi level directory and sticks your app in there. How can we change that Thanks. Open up the File System view in your setup project Right Click on "Application Folder" and select properties Look at the "DefaultLocation" Property Set the value to to the desired location on the user's computer. ...Show All
Visual C# temp+=temp.Replace(chr(13),"<br>");
temp+=temp.Replace(chr(13),"<br>"); Compilator complains that there is no "chr" in my class, why Here's couple examples how to replace: temp = temp.Replace("" + (char)13, "<br />"); temp = temp.Replace("" + (char)0x0D, "<br />"); temp = temp.Replace(((char)0x0D).ToString(), "<br />"); //I'd use this: temp = temp.Replace("\r", "<br />"); The latte ...Show All
Windows Forms DataGridView Survey
Hello WinForms users, My team, which owns Windows Forms, would like to gather some information about the new DataGridView control that shipped in the .NET Framework 2.0. At the high level, we would like to figure out: - which features of the grid you are using - which features you wish were available - what works well, what does not - what’s the typical size of your grid Any feedback you may have would be welcome. If time permits, you can also mark the features you use in the table below (this is not an exhaustive list, just a small subset): DataGridView feature Used unbound mode databound mode ...Show All
Silverlight (formerly WPF/E) Any one have samples of 3D text (the code), like the ones in Joe Stegman video?
Any one have samples of 3D text (the code), like the ones in Joe Stegman video I would like to do something like this, but have no clue where to begin. thanks Yes, the Flying text was really cool, i was looking to duplicate that. I hope the folks at Microsoft would put that in there Sample package. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Assemblies Not Referenced
After installing XNA Game Studio Express 1.0, I get the following error in my Beta 2 project: Error 1 The type 'Microsoft.Xna.Framework.Graphics.SpriteBlendMode' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.Xna.Framework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f48fa5f25d27e8ff'. But it is referenced, and I'm pretty sure it's the right version too. I even tried to copy the code and content files into a new project, but it still gave the error. If anyone can help me I would appreciate it. Thanks. Have you tried removing the references to the beta assemblies and then reference the new assemblies I had the same problem for a couple of projects and the above solut ...Show All
Windows Forms Why is MyForm derived from Form?
Hi, First of all sorry if this is OT, I didn't know whether to put the question in this or windows forms group. My question is related to the code generated by the designer. When designing the form, the corresponding class is generated. The class is derived from the System.Windows.Forms.Form class. My question: why is the class derived from the System.Windows.Forms.Form The generated code seems to use only public members of the form class and doesn't override any virtual method of the Form class. Is there any way to get explanation from the WinForms development team Thanks in advance, Sasa Hi, Thank you for your response. The reason I ask, is simply because at one point I asked my self the question from the subject. The fact is tha ...Show All
Visual Studio Team System Saving attachments
To save an attachment you have to open it and then save it from within the application that has opened the attachment. In my experiences, IExplorer is always opening the attachments and sometimes failes to do so. For example: opening xml files for which the specified schema can not be found. Also for other file types like .jpg I rather want to save the files than open them in IE. I tried to change the file type associations as explained in http://support.microsoft.com/kb/905703/en-us , but no luck. (What's more, for file types for which I changed the default open-application, the Advanced button is missing in the 'Details for .. extension' dialog. Only after pressing the 'Restore' button I can select 'Advanced' and then check/uncheck 'Conf ...Show All
Visual Studio Team System Logon to TFS
Our Team Foundation Server is set up to join an Active Directory domain so that users need only log on to the domain once. Recently, one of our developers changed her domain password as required. But since then, she is prompted to log on to TFS everytime she starts up Visual Studio 2005. Is this expected Is there a way around it I've been having this problem for 4 days now. Does it mean that i will have to wait for a week :) Anyways, i will let you know if i find the solution to this. ...Show All
