Software Development Network Logo
  • Visual Studio
  • Microsoft ISV
  • .NET Development
  • Visual J#
  • Visual C#
  • Game Technologies
  • Smart Device
  • VS Team System
  • SQL Server
  • Visual Basic
  • Windows Live
  • Visual C++
  • Windows Forms
  • Architecture
  • Windows Vista

Software Development Network >> mark duran's Q&A profile

mark duran

Member List

The Ken
Manmeet
celticJedi
dennist
Gus Cortes
Feldhege
shodan
AidanKP
selvabharathi
YiuYip
Gautam Goenka
mecano14_bis
Ben Kitzelman
Michael G
sunrunner
Matteo Chiesi
ilr
Hieu Le Trung
leekitswee
Analog
Only Title

mark duran's Q&A profile

  • .NET Development Problem with XPathNodeIterator

    Hello, i have a problem to read an xml document. I use this code to iterate the entire xml document : Dim doc As New XmlDocument doc.Load(Application.ExecutablePath + ".config") Dim nav As XPathNavigator = doc.CreateNavigator() ' Move to the first book node. Dim ni As XPathNodeIterator ni = nav.SelectDescendants("Impostazioni", "",False) ni.MoveNext() Dim nav2 As XPathNavigator = ni.Current ' Display the content of each element node ...Show All

  • Visual C++ A few compiling questions.

    Hello, I am using visual c++ 2005 (8.0), I am wondering is it possible to open a .c or .cpp file with the IDE and build/compile it without having to create solutions/project workspaces yourself I remember in v6.0 you could just choose to build, and it would create the workspaces for you. Also I would just like to make sure I am creating unmanaged applications correctly, is it File -> New -> Project -> Win32 (from the Visual C++ ...Show All

  • Visual FoxPro Scan and replace

    i'm trying to replace all records from one table with records from another table. It stops after the first record is replaced. This is my code. USE invent06.dbf shared again IN 0 USE ptd.dbf shared again IN 0 SCAN ALL FOR invent06.code=ptd.code IF invent06.store=ptd.store replace invent06.cost WITH ptd.cost invent06.cost replace invent06.Ptdpurchq WITH ptd.Ptdpurchq replace invent06.Ptdpurchv WITH ptd.Ptdpurchv ENDIF endscan CLOSE al ...Show All

  • Visual Basic Newbie question regarding declaring "variable" variables...

    Ok, so what I'm trying to do may be impossible, but hopefully not. Right now, this is what's in my head: I have a listbox that starts off empty. The user inputs an item and a quantity, such as Apples and 12. The 12 gets fed into a variable, such as qty_apples. Then, it updates the listbox and adds "Apples = " & qty_apples (which gives Apples = 12) Now the tricky part. The user might then enter another number for apples, so now they might p ...Show All

  • Visual Studio Team System What test framework/technique should one use for testing web pages?

    Situation: I have a number of pages that require passing information back and forth via Query Strings or POSTs. I would like to apply unit tests to each of the components on the page. As an example: http://homesite.com/landingpage.aspx a=UNIQUEIDHERE I want to write a unit test to a: make sure if the correct uniqueID is passed in, it is parsed correctly b: if they key is no longer valid, the page is redirected correctly Options: It would ...Show All

  • SQL Server Running SSIS Packages in Management Studio

    We are using SQL Server 2005 Standard edition. We have the development studio installed on a developer’s workstation. The SSIS package is accessing network folders using UNC and the tasks in packages are accessing SQL Server with a SQL Server id. The SSIS package runs fine on the workstation. We deploy the SSIS package as a SSIS store on SQL Server. I receive Error 18456 Severity 14 State 8 error when I run the SSIS package as a SQL ...Show All

  • Visual C++ App Freezes For About A Minute When I Edit Header Files

    Greetings! We have a 300,000 line C application that I've been building for 11 years through multiple versions of Visual C / Visual Studio. We keep most of our constants in one file called "constants.h". When I go to the edit this file, the newest VS ("VS 2005") will often freeze. I believe it is busy recalculating "browse" information on the fly. That is, if I change the value of a '#define', it seems to be recalculating all these values ...Show All

  • Visual Basic MDI Children not staying Maximized in Parent

    I have hit the wall and could use some help please.. When I start my Windows Application, using an MDI Parent and Children with the Children being maximized in the parent window using the me.windowstate=maximized bit, and that works fine. When I go from one child to another and back, or the second time a form is displayed, it goes to normal mode. This only happens the second time a form is displayed; third, fourth, fifth, it's fine. Not on ...Show All

  • Visual C++ ada conversion help

    I'm currently working on a program developed in Ada, that is being rewritten in C++. I've run into a few stumbling blocks so far and hope someone here can help out. 1. Our Ada code uses multiple subtypes with explicit ranges specified. So far it doesn't appear that C++ supports any type of range limits. At least the typedef statement doesn't. Is there anyway to do this without using a templated class 2. Multithreading. Ada does it very si ...Show All

  • .NET Development Storing/Retrieving Various File Formats in DB Application

    Hi, I hope someone can point me to the right direction. The application I am working on is a database program where I use SQL Server 2005 and multiple Windows Forms based clients that connect to it to store/retrieve data. The data includes attachments (same as email, any kind of file(s)). From other posts, I can see that, overall, saving the files on a disk and the links to the files on SQL Server is a better approach. My trouble is wit ...Show All

  • Visual Studio Tools for Office 1 Add-In uses .net 1.1, a second uses .net 2.0

    Hello; I just created a simple Add-In using VS 2003. I also have VS 2005 & .net 2.0 (release) installed on my computer. The .net 1.1 Add-In would only run if I created a winword.exe.config file setting the runtime to .net 1.1. Without that Word would exit during it's startup (no message, no crash - just exit). With the config it runs fine. So, what if someone wants to run two Add-Ins with Word, one built under .net 1.1 and one built under .n ...Show All

  • Visual C++ CString char/wchar_t conflict

    I'm encountering a strange issue that I have not seen before. I recently built a new MFC app with VS .Net 2003. I am using the MBCS character set - e.g. UNICODE is not defined. The problem is that when I step into CString code down into the CSimpleStringT level, in atlsimpstr.h, it thinks it has wchar_t traits. However in the CStringT code (in cstringt.h), it thinks it has char traits. So, for example, I step into CStringT::Left() and see char t ...Show All

  • Windows Forms The use of the .NET Framework Printing classes is not supported from a service

    The use of Printing classes is not supported from a service in Framework 1.0, is this fixed on Framework 2.0, where can I fin information about it thanks I have a Windows Service that uses printing classes (System.Drawing.Printing), it works fine but I found this article http://support.microsoft.com/default.aspx scid=kb;en-us;324565 where it says that printing from a windows service is not supported using ...Show All

  • Visual Studio msbuild task

    I have a custom Package and I need to do some pre-processing to each of my input files when I do a build.  Right now I am using the Exec task in my .targets file and I am overriding the ProjectNode.Build method, but this only gets called once regardless of the number of input files I have in my project.  Is the best way to do this to write my own task and handle all preprocessing there Thanks, Mike ...Show All

  • Visual Studio Express Editions RSS Screensaver Starter Kit

    This thread is the place to ask questions and provide feedback for the RSS Screensaver Starter Kit.  How about where is the " RSS Screensaver Starter Kit" for starters George J. ...Show All

©2008 Software Development Network

powered by phorum