annerajb's Q&A profile
.NET Development web services that provides shipping rates
Can anybody help me to get online Shipping rates directly from shippers like Fedex, UPS by using webservices, Or any third party tools which provides online shipping rates by taking ZoneIDs and weights. ...Show All
Visual Studio 2008 (Pre-release) InnerXml parsing
< TextBlock DataContext = " {Binding Source={StaticResource xmlTrees}} " Text = " {Binding Path=InnerXml} " > </ TextBlock > The above XAML produces the string: <species Name="Red" Scientific="Acer rubrum"/> <!-- red maple --> Now, it took me some time to produce that but what I really want to produce is the text of the 'Scientific' attribute. Can I do that entirely with XAML or do I have to parse the InnerXml in the code-behind or something else All clues appreciated. Is there any reason you cannot use XPath instead of Path i.e. <TextBlock DataContext="{Binding Source={StaticResource ...Show All
Audio and Video Development Blu-ray
Does it bring bad luck to ask this on this forum :) Anyone knows of documentation or sites about BD-J mode, HDMV is a bit limited. Peter Torr - MSFT wrote: Speed and The League of Extraordinary Gentlemen from Fox have BD-J support, but apparently they don't work very well on the Samsung player. I believe they work OK on the PLAYSTATION 3 and I'm not sure about the other players. [Added] Descent from Lionsgate also has BD-J, but fails to play in most players. I've checked out Descent from Lionsgate and it seems to work perfectly fine on PS3, I must say it's one of the most sophisticated menus developed in Java... I believe that still the hardware players fail to implement the fully functio ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How modify vertices of a vertexbuffer? (C++)
It’s my first post here so i’ll try be as much clear as i can. I’m using directx SDK 9 with C++ (native) on the Visual C++ to try build a app that loads a mesh created on 3d studio max and manipulate (refresh to be more specific) some points of vertices of the mesh (try imagine my mesh be a cone, and the top of the cone have a point that ’ve coordinates 1,1,0), all the vertices ’re filled on the vertexbuffer, and i want to refresh that coordinates to 2,2,0. The question it’s how i modify the points (vertices) of my mesh (the cone), i tryied just acess the buffer using the lock and unlock, but the points of the buffer dont refresh. Another question, if i load a mesh, and wants use a lot of them i use a array of ver ...Show All
Visual Basic Sending emails with Lotus Notes
Hello, Does anyone have experience in using (e.g. sending emails with) Lotus Notes (6.x) A solution direct from IBM's site http://www-1.ibm.com/support/docview.wss uid=swg21178583 Shows how to send Lotus Notes mail messages with Microsoft Visual Basic ...Show All
Visual Studio Team System TFS KB919156 install error
I think I did a bad bad thing. When I have installed my server I used a local account for TFS service account and change it to a AD account later by using TFSAdminUtil. So I remember it yesterday when trying to resolve the issue concerning the KB installation. So this is what I did: Change TFS service account using TFSAdminUtil to use the original local account Install KB919156 (no error message when the TFS Service account was the original one) Install SP1 for TFS Install SP1 for Team Build Change TFS service account to use the AD production account But now, nobody could connect to TFS. Even the service and setup account have no access, all connections are forbidden. It seems that my server is not able to authentic ...Show All
Windows Forms Newbie - Using Panels
Thanks in advance I have built an application that has a treeview menu down the left and a variety of panels on the right. When a menu item is selected the panel is shown and can be used. However once I have completed a panel (combination of combobox and textboxes) and submitted the results (ie. generated an INSERT and updated Database), the form freezes. I don't seem to be able to change the values in the comboboxes. Do I need to reset the control to enter the next record and if so how PS - I get the impression from other posts that I need to change focus back to the TreeView Panel. Clear the panel and then re-add. Can someone give me an example of code to move the focus to another panel and then clear the current panel ...Show All
Visual Studio Team System Create a new web site?
Hi, I read the article ( http://blogs.vertigosoftware.com/teamsystem/archive/2006/04/04/2512.aspx ). And I apply all of process successfully. I create a new Team Project. But, I couldn't use web site and source control. What should I do Thanks, Mustafa did u see the toolbars is disabled in SCE if so ...do the following.. 1. Open VS IDE and connect to TFS and in the Tools menu --> Options 2. Source control --> plugin should be Team Foundation Server on the right side of the dialog box.. 3. You could able to see the source control from the team project and also check whether you are having the admin rights..in TFS and Sharepoint Site and Reporting services.. Thanks. Kathir ...Show All
SQL Server MSDN Subscription SQL Server 2000
If we purchase a new MSDN Professional subscription, does it come with SQL Server 2000 developer license Hi, SQL Server is only not included in the MSDN Operation System and library subscriptions. For the rest a SQL Server Developer version is included, since now I am able to see 2005, 2000 and 6.5 in the download area. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Windows Forms more than one curve?
this is really urgent, I need help about it.. I'm drawing a curve, and taking the coordinates of the points of the curve by clicking the mouse on the picturebox. I'm using a dynamic arraylist to get the best result about it and it works really good. but the problem is, whenever I click the mouse, it give an additional point to that curve. What I want is, to finish adding points to a curve (i.e. by right clicking the mouse) and when I start to left click again, it should start drawing a new curve, and it must continue this way for every other curve. I thought that it might be useful to make an object(which has its arraylist in it) array and to let the counter rise by1 when I right-click, so that it can start drawing a new curve ...Show All
Windows Forms How do I set a DataGrid View
I am building a Windows Form, using C# The Dialog box I am working on is a Mini Search Function. The user types into a txtbox, then the script will look in the MSQL db, to find where all products are like the txtbox The code I have so far is SqlConnection conn = new SqlConnection(@"MyConnectionHere"); SqlCommand cmd = new SqlCommand("Select * FROM tbl1 WHERE Nombre LIKE '%"+txtSearch.Text+"%'", conn); conn.Open(); SqlDataReader rdr = cmd.ExecuteReader(); if(rdr.Read() == true){ MessageBox.Show("Here I will add the results into the DataGrid", "Next Step", MessageBoxButtons.OK); }else{ MessageBox.Show("I am afraid there are no products where where the product name is like\n ...Show All
SQL Server T-SQL Badly needed
To one of our sql server database Table A , we need to migrate data from another sql server database Table B . Assume there are two columns in a table namely OrderID and Comments . Here OrderID is a foreign key. And therefore, I can have any number of comments for a Particular OrderID. Thru a TSQL query, I wish to have all the Comments data beside the OrderID seperated by comma like Ord1 Comm1, Comm2, Comm3 Ord2 Comm5, Comm6. Comm7, Comm8, etc., This is just the thing we used to do for numeric columns using GROUP BY statement as SELECT ORDERID, SUM(ORDER_TOTAL) AS AMT FROM B GROUP BY ORDERID Want to know how to achieve similar effect with Varchar type of data. I'm currently using Cursor to concat, but it is taking long l ...Show All
Visual Basic VB.Net String Pattern Matching
Hi, I created a post here yesterday about copying/searching, now there's another part. I need to know when I perform a search how to invoke string pattern matching, if i was to type any specific data, i.e. A12345 or B54673 and so on. Can anyone help so you wish to do a search when the user presses the button The above code does just that. As you learn to develop more and more you will realize that having functions or sub methods of your own will be handy so you can call them from anywhere within your class instead of just a button click for example. All you need to do is place the pattern matching code in the function and that's it The function returns a boolean meaning true or false. So it d ...Show All
Visual C# Go to Definition and local variables
In VS2003, when I right-click on a local variable and select "Go to Definition" from the displayed context menu, I get an error message saying, "Cannot navigate to xxx" (where xxx is my local variable). Why does it do this It navigates fine in a VB.NET app... thx in advance, todd Todd, I've been using VS 2003 for years and this never was a problem for me. For some reason it started happenning a couple of weeks back. I don't have any add-ins running, I haven't installed anything new recently so this is very bizarre for me. Sometimes it starts working if I close it down and open it up again, but only for a while. Can you explain what are the causes for this or point us in the right ...Show All
.NET Development packaging XML with images-- newbie
I have around 105 images that has to be arranged in hirearcheal order. Every time I make a selection it will give another set of selections(which are basically it child nodes) and depending upon the selection a final output is generated. I want to compress all these 105 images as a package and need to specify the path in the xml file. later with my program I need to extract the specific files and load in to the application. I don't want to use sql mobile database though I can do it by adding it as an embedd resource which I don't want to do. I need these file in the compressed format. I can also include during the deployment later (deployment cab file) while setting up I can extract the files in to separte folder too. but I need it to have ...Show All
