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

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

HMCSharon

Member List

raphts
libarra
Godwin Larry
Stefan Knoche
CYH24937
pure159112
Manju Sandhu
bholemaharaj
furtivefelon
sr1
ImpMacker
Gabe Covert
Hemant
Tiago Nobrega
MizzouTiger
tangy
Quinch
uygar
Fafa
Obliterator
Only Title

HMCSharon's Q&A profile

  • Visual Studio Team System Building VS.NET 2003 Solutions

    Is there anyway I can modify the Team Build project to be able to correctly build a Visual Studio .NET 2003 Solution Thank you, Sammy You can use the command "devenv /upgrade xyz.sln" and write a script that will convert all your VS 2003 solutions one time and then checkin those converted solutions/projects. Thanks, Chaitanya ...Show All

  • Visual Basic Getting pdf files

    Hi, this is a very simple question, I know I've done this before but I juste can't find how I did it :-( I have have a global table named gtblFileList and the path of a folder ex : C:\Folder this folder has some subdirectories What I want is to fill gtblfileList with the names of all the PDF File I can find in Folder AND his subdirectories AND their subdirectories etc... thanks for your help Public Function GetFiles ( ByVal TheParentDir As String , ByVal SearchPattern As String ) As FileInfo () Dim di As New DirectoryInfo ( TheParentDir ) Dim fi () As FileInfo = di . GetFiles ( ...Show All

  • Visual C# How can I make a TreeView control to be like a FolderBrowserDialog?

    Hi refer to my subject. a small code will be appreciated. Use something like this: protected void AppendDirectoriesToTreeNode( TreeNode node, string root ) { DirectoryInfo rootDir = new DirectoryInfo( root ); foreach ( DirectoryInfo subDir in rootDir.GetDirectories() ) { TreeNode subdirNode = new TreeNode( subDir.Name ); AppendDirectoriesToTreeNode( subdirNode, subDir.FullName ); node.Nodes.Add( subdirNode ); } } Usages: TreeNode node = new TreeNode( "c:\" ); AppendDirectoriesToTreeNode( node, "c:\" ); myTreeView.Nodes.Add( node ); ...Show All

  • SQL Server Performance

    I've come accross this post http://blogs.msdn.com/benjguin/archive/2005/05/10/416110.aspx  where it compares the performance of a T-SQL cursor approach with a VB.NET CLR Stored procedure, and finds the latter faster. Using the same example, I wrote a client application that performs the same operation using a DataReader, and compared it with invoking the SQLCLR stored procedure.  Using the client-side cursor that scans 1 million rows is around 5 times _faster_ than the stored procedure, even when running the client in a different box. What am I missing The code is below. Sub Main()       Usi ...Show All

  • SQL Server .NET Framework 2.0 question

    This question also posted to microsoft.public.sqlserver.notificationsvcs. Notification Services on SQL 2005 utilizes .NET Framework version 2.0. (correct ) If so, will there be a version of microsoft.sqlserver.notificati­onservices.dll for SQL 2005 NS that will allow me to create subscription management applications using VS 2003 and .NET Framework 1.1  Or must I use VS 2005 and .NET Framework 2.0 Thanks, Peter This topic had not been updated for SQL Server 2005. The topic was rewritten shortly after the April CTP. Sorry about the old content. ...Show All

  • SQL Server Long line of text error

    Hey, After working on a package for a while, I started to get the following error when re-opening the package: "Document contains one or more extremely long lines of text. These lines will cause the editor to respond slowly when you open the file. Do you still want to open the file " What is the problem and if there is fix or workaround Thanks. it's on this tread http://forums.microsoft.com/msdn/showpost.aspx postid=68546&siteid=1 actually I had the same problem. with precompilation I get no error. ps. thanks for answering on "long line text..." stuff.  ...Show All

  • Windows Forms Share BindingSource between two forms

    Hi, i have two forms and im having problems sharing the binding source between the two. I am using custom business objects, and in the designer set form one's binding source's data source to my business object type in the data sources window. The designer then places the code in the form: m_BindingSource.DataSource = typeof(MyObject); I then can setup my DataGridView.DataSource = m_BindingSource; In my constructor i would then set the m_BindingSource.Datasource = new BindingList<MyObject>(); Everything all works well. Then i would make a second form, and create a second binding source as before so i can select which fiel ...Show All

  • Visual Studio Team System Class Name column in the Test Results?

    Is there anyway to get the Class Name column added to the list of available columns for the Test Results pane   It is available in the Test Manager, and it seems to be the best column to use to fully qualify the name of a test; If you are running a lot of unit tests that have the same name, but are in different classes, there is no real way to tell them apart in the results pane.  For example if I have 5 classes, all of which have a Create() method, and one of them fails, there are five tests all named CreateTest (assuming you used the default naming and auto-genned the unit test class).  By having the associated Class Na ...Show All

  • Visual C++ C++ & UNICODE

    Dear MSDN C++ experts, I have Visual Studio 2005 Professional installed, I need a help issue about something annoying a bit. My professor in college asked us to make a report how to write in name in Arabic using UNICODE, in fact I was unable to make such a program as it's so hard for me as I'm still a beginner. Here is a code sample I asked someone to make for me, It's UNIX based, the print out is an empty screen in windows: ================================== //This is a C++ console app to print out name in Arabic using UNICODE #include<cstdio> #include<iostream> using namespace std; int main(int argc,char* argv[] ...Show All

  • SQL Server Dynamic Page Break

    I have a tabular data with dummy group. I have a ceiling of 10 records per page. But at some point of time, I would like to break it in middle at the end of an INTEGER which I specify, which would over rule the ceiling. Say in page 2, I want the pagebreak to happen after 5th Row. Thus it should force a page break on 5th Row rather than the 10th Row. Any Idea how to acheive this ...Show All

  • Visual Studio Is there Noone capable of answering this question on this forum?

    I have posted this question on several forums and in several newsgroups including this one. I recieve no answers other than is it a legal copy or is on cd or other such ***. Is there anyone capable of answering the question here, can I install this on my machine or not The same post I have posted everywhere else: I purchased visualstudio .net from the microsoft alliance at my school and can't get it to install on my machine, a celeron 1200.. I was able to get it to install on my wifes machine a celeron 2400. I need to install, if at all possible, onto my machine. I get a Strong Name validation failed for assembly 'C:\W ...Show All

  • SQL Server SQL Server 2005 System Table (View?) Map

    Is there an estimate on the availability of the System Map for SQL2005 If it is already out there, would someone be so kind as to tell me how to get it Thanks, DO I am also after a Printed hardCopy of the SQL Server 2005 system catalog map. I can see the softcopy, but to relate the things together, its often not so comfortable to scroll the window up & down to see the complete view. ...Show All

  • Visual Studio Using VS code editor for unsupported languages

    Hi, I couldn't really find an answer to this question, so hopefully someone can help me here. I'm a computer engineering student working with multiple languages and I would like a general-purpose editor for all the languages I might be using (VHDL, MIPS assembly, C++, VB, and Scheme at present). I use VS since most of my coding is done in C++ and VB but I like the interface, so I'm wondering if there's a way to write definitions for the other languages so that the code editor can color-code the syntax. Thanks for the help! --Chris The Visual Studio editor is extensible allowing you to create your own ...Show All

  • .NET Development .NET 2.0 Remoting TCP channel, is it bi-directional?

    douglasp (or anyone for that matter!), please could you answer if the TCP channel in .NET 2.0 has been updated to support bi-directional communications by default We have an application that is using a custom channel supporting bi-directional TCP and SSPI. However, the improvements in .NET 2.0 (native support of SSPI based security and the new IPC channel in .NET 2.0) are not easy to ignore given we could benefit from the use of the standard channels. Trouble is, we make use of the bi-directional channel to allow communications through network devices such as NAT routers, firewalls, etc. easier and losing this advantage would be s ...Show All

  • Smart Device Development Cannot install SDK certificates to WM5 phone

    Hi I have a WM5 Qtek 8310 and VS 2005 and installed the SDK tools for it. However I cannot install the SdkCerts.cab into the phone. It says that the installation failed due to not enough system permissions. Also I cannot deploy a small HELLO app from VS2005. The app is signed with the SDK unprivelidged certificate. Error msg from VS2005: The device security configuration disallowed the connection. Ensure that you have the appropriate certificates on your device for development. Review your SDK documentation for proper security settings for connecting to this device. Device Connectivity Component  I have also tri ...Show All

©2008 Software Development Network