Software Development Network Logo
  • SharePoint Products
  • IE Development
  • Game Technologies
  • Microsoft ISV
  • Windows Forms
  • Visual C++
  • Visual C#
  • Visual Studio
  • Audio and Video
  • Visual Basic
  • .NET Development
  • Smart Devicet
  • Windows Vista
  • SQL Server
  • Visual FoxPro

Software Development Network >> Jaime Stuardo's Q&A profile

Jaime Stuardo

Member List

jackli_0112
satya999
zzztop
Bluehunter
Peppermint
Pablo_B
DRoden
DanMoseley - MSFT
CBuilder
adarsh.mathur
Oren Solomon
ZopoStyle
Jacx
Yustme
BDev13
Malleswar
IrisFresco
Danny Tuppeny
BluePain
Aron_
Only Title

Jaime Stuardo's Q&A profile

  • Commerce Server Root Category Ranking Issue

    Hello, I'm having an issue with the .GetRootCategory method call. Here's the situation. Before I call the .GetRootCategory I set a where clause and pass it along. The method doesn't return me any results. But when I don't include the where clause I get expected results. Here's what I did (The where clause is included): 1. The current catalog has ranks for all root categories. So I created a new category with no rank and boom that new category was returned. If I set a rank to that category; it is not returned anymore. I've traced the issue in the ctlg_FillCategoryDescendants sproc: Here's the code. IF @oid = -1 BEGIN if (@fVirtualCatalog <> 0) BEGIN -- Insert the Categorys first-level descendents in the #Desc_Oids ...Show All

  • Audio and Video Development Loading Resources

    After I installed the newer iHDSimulator none of my projects would load. I get a resource load error and have to Ctrl+Alt+Del and kill the app. I ran the validator and it doesn't find any of my resource files. So I thought maybe this is a good time to start loading from and ACA. I've read the spec, and looked at HD-DVD release titles and have noticed that some titles load resources from an ACA by declaring it as an ApplicationResource and others load from a TitleResource. First question: what is the difference In both examples they seem to be using it to load per Title. Second question, why is my playlist no validating properly on resource load ### Playlist ### <Playlist xmlns="http://www.dvdforum.org/2005/HDDVDVideo/Playlist" xmlns:x ...Show All

  • Software Development for Windows Vista Company logo

    How to insert compamy logo (oemlogo) to windows vista with autounnatend.xml ...Show All

  • .NET Development xml populated lists not keeping values after post backs

    Hi My page checks to make sure its not a post back before calling a function which parses an xml file as follows: Dim dSet As New DataSet dSet.ReadXml("C:\my.xml") Dim xmlDoc As New XmlDataDocument(dSet) Dim nodeList As XmlNodeList Dim lang_ary As New ArrayList I then go through the nodelists and populate the lang_ary which is the datasource to a number of combo boxes. The combo boxes have enable viewstate set to true. However, when the page reloads they lose their values. Could someone explain why this is please Do i have to store the xmlDoc in viewstate and repopulate each drop downlist again Thanks in anticipation This question is not related to XML or even to DataSet. ...Show All

  • Windows Forms AxWebBrowser Changed?

    Hello, for some reason i started using the axWebBrowser coltrol about a year ago, i got the Visual Studio 2005 and the axWebBrowser has been changed to just WebBrowser and all the control calls have been changed, for instance AxWebBrowser1.LocationURL; is no longer available, its changed to WebBrowser1.URL; Also Im having Compilation Errors with the MSHTML.dll this line mshtml.IHTMLDOCUMENT2 doc = new mshtml.IHTMLDOCUMENT2 as WebBrowser1.Document; this line tells me that it fails to convert Document to IHTMLDOCUMENT2 because it has to implicit Conversion. Can anybody explain what to do how to use this new webBrowser...or get the old one back Since the Webbrowser is just IE embedded ...Show All

  • Visual Studio Express Editions why always link odbc32.lib, how to unlink it

    when I build a project the vc++ 2005 express edition always link odbc32.lib even the project just #include <iostream> using namespace std; void main(){ cout << "test" << endl; } I don't want it always link the odbc32.lib how to unlink it how to config , I am a beginner please use the large fontsize bold font and Courier New fontstyle thanks Thanks, I HAD already Windows/product SDK but for some reason I hadnt that famous odbc32.lib. The guide above helped much. I even removed these: odbc32.lib, odbccp32.lib from that that path and now it works. I'm just wondering why such advice has n ...Show All

  • Windows Forms ListView is not showing groups

    I am using VS 2005 and trying to show some strings in ListView in Three groups. I have tried creating groups both by code and desingner. No one works. Can any one point out some reason. The ListView is using 'Details' style. But I have tried with 'List' style as well. Thanks for your help but the problem remains the same. I created the LV with the procedure you mensioned and then added groups and items. But still the items are being shown without any grouping i.e. they are shown in simple one list without any group headers showing up. Something else is wrong i feel. ...Show All

  • .NET Development errors adding a web service with sockets to a C++ project

    Hi everyone, I have a web service which communicates via TCP to a C# program. When I invoke it's methods through a browser, they work fine and can communicate perfectly with the C# program. However, when I attempt to add the web service to a C++ MFC DLL I've created, I get multiple warnings, but with only 2 unique: 1) Warning 3 warning SDL4008 : skipping unrecognized extensibility element, with c:\Documents and Settings\*******\My Documents\Visual Studio 2005\Projects\Extend\Extend\CalcSvc\CalcWS.wsdl 84 2) Warning 9 warning SDL4001 : only one SOAP port will be processed. c:\Documents and Settings\cpappas\My Documents\Visual Studio 2005\Projects\Extend\Extend\CalcSvc\CalcWS.wsdl 104 I am assuming it is because the web service opens a s ...Show All

  • Visual Studio 2008 (Pre-release) Error in the DLinq designer generated C# code?

    Hello! I've noticed that both of the arguments for the EntitySet constructor is the Attach_... method. Shouldn't the one of the two arguments have been the Detach_... method Best regards, Henrik Dahl ...Show All

  • SQL Server PERSISTED Column In View

    I have a view that calls a User Defined Function. I want to index this calculated column if possible, but trying to do so gives me an error saying that I have to mark the column PERSISTED. I see how it's possible to do this when creating tables with calculated columns, but is it possible to do this from within the view itself Thanks for the reply, Adam. Yes. I do have a clusterred index on the view already. Adding a non-clustered index on the calculated non-key column isn't working, though. It gives a message about the column: "Cannot create index or statistics '[Index Name]' on view '[View Name]' because key column '[Column Name I Want To Index]' is imprecise, computed and not persist ...Show All

  • Visual Studio 2008 (Pre-release) How to crop an Image using Stretch="UniformToFill" using center of image

      I have a ListBoxItem which is basically an <Image Source="{Binding }> of specific size and aspect ratio - I need to smartly scale and crop the source images to fit the <Image> element. The Stretch="UniformToFill" does exactly this, however, it seems that the cropping is a top or left aligned, and not a "centered" crop. uhgggg.... Is there a way to get UniformToFill do a centered crop I have assumed not, and gone down the path of doing the cropping myself as such" class ObservableCollectio<BitmapImage> foreach (FileInfo f in _directory.GetFiles("*.jpg")) {     bm = new BitmapImage(new Uri(f.FullName, UriKind.RelativeOrAbsolute));     if (bm.Height > bm.Width)  &nbs ...Show All

  • SQL Server How to increase SSIS performance

    Hello again, I'll just throw my question: how could I increase SSIS-performance I have a really heavy job with thousands of records my base selection, then I perform some lookups (I replaced most of them by sql) and derived columns (again, I replaced as much as possible by sql). Finally, after a slowly changing dimension task, I do update/insert on a given table. Is there a trick to speed up lookups and inserts (something like manipulating the buffer sizes - just asking). Fact is that I replaced a script task by pure sql-joins and gained 6 of the 12 hours this job took. Any ideas Greets, Tom Tom De Cort wrote: Hello again, I'll just throw my question: how could I increase SSIS-performance I have a really h ...Show All

  • Visual Studio Team System Project Properties|Code Analysis tab missing

    I got a new laptop last week and am in the process of migrating everything from my old laptop. I installed Visual Studio 2005 Team Edition for Software Developers - same version as I had on my old laptop. However, I find that I'm missing the "Code Analysis" tab under Project|Properties. (There were a few other minor menu variances - such as 'Batch Build' missing from the Build menu option.) All I get are Application, Build, Build Events, Debug, Resources, Settings, Reference Paths, and Signing. I can actually run the Code Analysis by right-clicking on the project and selecting 'Run Code Analysis' - I just can't access the GUI to customize the rules. :-( Only difference I can think of is the source of the installation. Last ...Show All

  • Visual Studio Team System KB Article on the fix for the "TFS Project comma issue"

    I posted a MS Project to TFS problem back in June and was told then that "A KB article on this issue will be released in the next couple of weeks. Meanwhile, you can call CSS and ask them for the fix for the TFS Project comma issue." Can anyone tell me if the KB article has been released TIA Ron L Hello Ron, I will check on the status of the KB article and get back to you in a day or 2. Meanwhile, is there some information I can provide you on this forum Thanks! ...Show All

  • Customer Care Framework security error when trying to host asp.net application, please help

    security error when trying to host asp.net application A potentially dangerous Request.QueryString value was detected from the client (_ccfData="<root><ApplicationDa..."). Description: Request Validation has detected a potentially dangerous client input value, and processing of the request has been aborted. This value may indicate an attempt to compromise the security of your application, such as a cross-site scripting attack. You can disable request validation by setting validateRequest=false in the Page directive or in the configuration section. However, it is strongly recommended that your application explicitly check all inputs in this case. Exception Details: System.Web.HttpRequestValidationException: ...Show All

©2008 Software Development Network