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

Software Development Network >> Anpiro's Q&A profile

Anpiro

Member List

genjioo
JDee
Rocio Altamirano
Joaquín Raya
KeithWilliams324
Tom Servo
Nicolas Iacovides
dbdog
Derek Comingore
pioner
Yustme
William Bartholomew
Paul Fuhrmann
rad9k
Neilgd
SQLScott
Jon Nigrine
MikeDai
murph___
netpicker9
Only Title

Anpiro's Q&A profile

  • Visual Studio Team System OutOfMemoryException when publishing test results

    I have a team build that was working up until now. All of a sudden it's giving me an OutOfMemoryException when trying to publish the test results. Here's the relevant portion of the build log: Passed Westeel.UnitTests.UnitTest_UpdatePartSiteInfo_04 Passed Westeel.UnitTests.UnitTest_GetPartsByLikeCriteria_03 Passed Westeel.UnitTests.UnitTest_GetPartsByLikeCriteriaAndSite_04 Run has the following issue(s): C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamBuild\Microsoft.TeamFoundation.Build.targets : warning : Code coverage instrumentation warning while processing file BusinessLayerInternal.dll: C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamBuild\Microsoft.TeamFoundation. ...Show All

  • .NET Development Editing and Deleting nodes in VB

    Howdy, I'm working with a program using an XML file, and I'm trying to delete and edit nodes and attributes (well, delete nodes and edit attributes). I've looked around a fair bit, including through these forums, and simply can't find any good easy-to-use tutorial or documentation on this sort of thing. Does anyone know how I can edit or delete nodes using VB.NET, or any tutorials Any languages is pretty much fine (I can sort of try to translate it, but I would really prefer something about VB.net, if anyone has something of the sort). I've looked all over, and can't really find anything that I'm looking for. Thanks so much! Anything really is greatly appreciated. Thanks again! -Robert Hi, I tried looking up the documentation on ...Show All

  • .NET Development Error: 'Must declare the scalar variable "@categoryID".'

    Hello, I'm creating a Data Access Layer in an ASP.NET 2.0 project in Visual Studio 2005 Professional. My database is SQL Server 2005 Developer Edition. After I Added a parameterized method to the Data Access Layer via a SQL SELECT statement (SELECT ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued FROM Products WHERE CategoryID = @CategoryID) I get the following error in the TableAdapter Query Configuration Wizard: The wizzard detected the following problems when configuring TableAdapter query "Products": Details: Generated SELECT statement. Deferred prepare could not be completed. Statement(s) could not be prepared. Must de ...Show All

  • SQL Server Cluster Names

    I have a basic segmentation model that uses the clustering algorithm. I've renamed the clusters in the cluster diagram, but they still show up as Cluster 1-n in the dimension browser and in the cube browser. After renaming the clusters, I did a full reprosses on the data mining dimension and on the linked cube. Can anyone tell me what else I need to do to use the new cluster names in the report Thanks Yes. I tried it again with the same results. I noticed that when I opened the project that the cluster names that I entered were gone. The model had Cluster 1-10 again. I renamed them again, saved the .dmm file, reprocessed the dimension (full, successful), and reconnected in the browser. It still show ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Games within a IE brower

    Not real sure if this is a new thread or not, but is it possible to create a game (actually more of a simulation) using the XNA game studio that would run in a browser window Does not necessarily have to actually run from a online web server, just be browser based. Thanks David Weller - MSFT wrote: It's not possible ... Why not I would imagine that the process would be similar to what these guys did for Virtual Earth (visit the link in IE and click the 3D button). I mean, you're not going to get away from having to install xna and all that jazz, but still, it's browser based :-P ...Show All

  • .NET Development TypeInitializationException

    Hi, I have develped a C# application that runs well on windows xp SP2, but when I try to run it on windows xp 64 I get the 'TypeInitializationException' exception, the exception details is: System.TypeInitializationException was unhandled Message="The type initializer for 'StartWindow.ArabicTextMiningForm' threw an exception." Source="StartWindow" TypeName="StartWindow.ArabicTextMiningForm" StackTrace: at StartWindow.ArabicTextMiningForm..ctor() at StartWindow.Program.Main() in C:\GetDataBack_car\CAR\Soft_Associations_Charm_Apriori\StartWindow\Program.cs:line 17 at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUser ...Show All

  • SQL Server Microsoft SQL Server Migration Assistant for Access: No Convert Schema Highlighted?

    Hi all, I downloaded the Microsoft SQL Server Migration Assistant for Access 4 weeks ago. Today, I tried this program for the first time.  I added one Database with 3 Access 2003 Tables to the Access Metadata Explorer.  I right clicked Databaes on the Access Metadata pane and did not see the "Convert Schema" highlighted!!!   What is wrong with the program How can I make it highlighted    Please help and advise. Thanks in advance, Scott  Chang    Hi, I migrated the Northwind database using SQL Migration Assistant for Access. it worked fine and I was able to link the access forms to Local machine SQL Server 2005 and it worked fine. Now i want ...Show All

  • Visual Basic Multiple fontstyles for a font

    Hi, Another simple question i'm sure... I'm trying to create a font with multiple FontStyles... e.g. bold and italic and underlined I've got the basics for a single fontstyle but just can't work out multiple ones. Current Code: Dim fnt as new Font("Times New Roman", 12, FontStyle.Bold) Any help would be greatly appreciated (can't believe i've been writing apps for the last 5 years and never actually come accross this problem before!!!) Thanks OK i've wprked it out, Just me being a bit slow!!! I've created a Font Generating function that returns a font (below) taking the font name, size, and boolean values for Bold, Italic, Strikeout and Underline. Private Function ...Show All

  • Visual C++ "using" in C++

    In C# it is common practice to use the using statement to define a scope outside of which an object or variable will be disposed of. This normally applies to resource intensive objects such as the OleDbConnection I am using in my code. Is there a way to implement this sort of scope-modifying keyword in C++, so that I can release the resources used by the OleDbConnection when I'm done with DB Thanks! Evan Hi, in c++ you can use the using keyword like this: using namespace MyNameSpace; Then instead of: MyNameSpace::MyClass a; you'd do: MyClass a; ...Show All

  • SQL Server oracle oledb provider not registered in local machine

    Hi, I am trying to establish a connection to an Oracle database using the following code in a script task: Dim oOleDbConnection As OleDbConnection Dim sConnString As String = _ "Provider=OraOLEDB.Oracle;" & _ "Data Source=DBxxx;" & _ "User ID=Userxxx;" & _ "Password=Passxxx" oOleDbConnection = New OleDb.OleDbConnection(sConnString) oOleDbConnection.Open() When I execute the script task, I receive the following error: The 'OraOLEDB.Oracle' provider is not registered on the local machine. Am using the correct provider I do not know how to resolve the said error. Here are some facts: Oracle 8i is installed. Tnsnames.ora is updated. I have successfully ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Model Position Problem

    I have this code that creates a model at the position of the mouse click but the model never shows up at that position. Maybe someone out there knows why the models seem to be offset. If I click in the top left corner of the screen, the model shows up in the center of the window. Here is the code: #region Using Statements using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Storage; using System.Collections; #endregion namespace Commander { /// <summary> /// This is the main type for your game /// </summary> ...Show All

  • .NET Development problem installing .net framework on my amd 64 machine

    here is the log: [09/16/06,02:34:45] ========== Logging started ========== [09/16/06,02:34:45] ===================================== [09/16/06,02:34:45] No language specified in ini file default to OS language [09/16/06,02:34:45] Set lang to 1033 [09/16/06,02:34:45] Pending Reboot Table state : Logging start [09/16/06,02:34:45] _________________________________________ [09/16/06,02:34:45] (fusion.dll, fusion.dll) C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\TBD57.tmp ( 2.0.50727.42 (RTM.050727-4200) ) ( Thu Sep 22 23:37:06 2005 ) Delete [09/16/06,02:34:45] (mscorwks.dll, mscorwks.dll) C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\TBD58.tmp ( 2.0.50727.42 (RTM.050727-4200) ) ( Thu Sep 22 23:40:46 2005 ) Delete [09/16/06,02:34: ...Show All

  • .NET Development System.Web.Mail works fine but System.Net.Mail won't send email

    Hi, I am updating an existing VB.NET 1.1 app to 2.0. The existing app uses the System.Web.Mail namespace to send emails and it works fine, but when I try to update to use the System.Net.Mail namespace it stops working. Has anybody any ideas why The following is the existing code that works: Dim msg As New System.Web.Mail.MailMessage msg.From = "me@work.com" msg.To = "me@hotmail.com" msg.Subject = "Subject" msg.Body = "Body" System.Web.Mail.SmtpMail.SmtpServer.Insert(0, " <<SMTPServerName>> " ) System.Web.Mail.SmtpMail.Send(msg) I've changed the code to the following: Dim client As New System.Net.Mail.SmtpClient( " <&l ...Show All

  • Windows Forms Suggestion/Question on BindingSource

    I frequently find that I have a dataset with, say, six tables in it and I want to use a single table in a form, to bind to. So I really want to bind my BindingSource to MyDataSet.MyTable. At runtime, it's easy enough to say bindingSource1.DataSource = MyData.GetMyTable(); However, at design time I need to drop the whole dataset on the form in order to set data bindings. I'd like to have a way to not drop the dataset on the form (I'm just thinking it's a waste of memory and time). I think something like one of the following two methods would help: Either be able to drop a table on a form and bind to that at design time, or be able to tell the binding source what schema to use at design time without physically putting a dataset on t ...Show All

  • Visual Basic Inherittence from Absrtact class - Help

    Hi, I am a newbie to Visual Basic and Visual Studio 2005. I have been struggling with an issue for a simple scenario. 1. I have an abstract class book (which has one "MustOverride" property), and a public data member Public class book MustInherit private m_name as string private m_quantity as UInteger private m_cost as Decimal public m_price as Decimal public property BookName(....) As string ///// This property has both get and set end property Likewise, I have ordinary property for m_cost and m_quatity. Also, public MustOverride property BookPrice (....) Classes B & C are derived from Class Book and defines BookPrice() property in its classes. The implementation is simple: This ...Show All

©2008 Software Development Network