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

Software Development Network >> JC Carmo's Q&A profile

JC Carmo

Member List

Giber
x_collins
Meso X
stonejc
Ronan_esm
Joshua0001
Liam404
Meera V
ssmorgan
IIM
Boulderdude
PublicError
Jack210
JerryMcR
JavaBoy
leo1
Hemant Hindlekar
DrunkPanda
Diego Vega - MSFT
ftw761229
Only Title

JC Carmo's Q&A profile

  • Visual Studio Tools for Office Microsoft.Office.Tools.Word.XMLNode.ContextLeave: Problems with selections?

    Hi all I have a small problem. I'll try to explain it the best I can. The situation is this: I have an XMLNode in a table cell in Word. On the ContextLeave event for this node, I investigate the text in the node, and perhaps changes the text. In my case, to help user write e.g. N/A, by just typing 'na'. But... When the user tabs out of this cell, the selection get's out of sync. Let me try to explain. Normal behaviour when tabbin' from cell to cell in a Word table is that the text in the cell you enter is selected. When I change the text in the previous cell on ContextLeave the selection is off by the number of characters the new text is different than the original. It's a bit hard to explain. My guess is that Word when i pr ...Show All

  • Visual Studio Express Editions Starter Kits wont install

    i downloaded the Web Club Starter kit for Vb 2005 but it wont install!! i keep getting this message.. "Installation stopped because the directory for the ProjectType value did not exist. The project type is invalid for your installation of Visual Studio." can anyone help me also i unistalled C# but when i go to install the starter kit it still asks if i want to install it for C# as well! (just thought id mension that) Stuart Your trying to install the Web Club Starter kit on a VB Express Install. VB Express doesnt support Web Development. You can try installing after installing Visual Web Developer Express or purchase a copy of Visual Basic which does support Web devel ...Show All

  • SQL Server start and end date of previous month

    I need start and end date of previous month, such as StartDate=07/01/2006 and EndDate=07/31/2006 for currentdate 08/156/2006 How can I do this Here's one method to find first-last dates in prevoius/current/next month set nocount on declare @date datetime set @date = getdate() -- the point in time from which to measure print '''Today''s date'' is: ' + convert(char(10), @date, 121) print ' ' -- date of the 1st of the current month select convert(char(6), @date, 112) + '01' as '1st this month' -- date of the last day of current month select dateadd(day, -1, dateadd(month, 1, convert(char(6), @date, 112) + '01')) as 'last this month' -- date of the 1st of the previous month select dateadd(month, -1, convert(char(6), @ ...Show All

  • Visual Studio Team System work items added via website instead of team explorer?

    Is there a way to use a website for working with work items so I didn’t need to do it in Team Explorer We don't have that feature (we're considering it for a future version, but no announced plans), but there are partners that provide it. http://www.devbiz.com/teamplain/ ...Show All

  • Smart Device Development UserControl Databinding

    Hello, I would like to create a usercontrol with labels and checkboxes. It should seem like datagrid but with one column of labels and one column of checkboxes. Datasource of the my usercontrol would be a dataset. I dont have any idea how to do it... If you “don’t have any idea how to do it” then it’s impossible for you to do. You can, however, extend existing DataGrid, see this . ...Show All

  • Visual Studio Express Editions application error 0x7c901010. referenced memory at 0x0000001c. the memory could not be read. click ok to close program

    Hello, Please help me, I get this error when I try to open things on the web. The Instruction at at 0x7c901010 referenced memory at 0x0000001c. The memory could not be read Thank You Please help lina979 wrote: when I closed the site of enternet appear this message the instruction at ox62303924 referenced memory at oxo1fa2fc4.the memory could not be read click ok to terminate the program ...Show All

  • Visual Studio Team System Migrate from beta to RTM

    I have some doubt, I want to change my SQL data base from another server, and migrate from beta version to RTM version, so on this moment I have a simple installation so we have to do a new intallation but now we want to install in a dual form, my DB in one server and my Team System in a diferent server, my cuestion is, What kind of risk we have to have with migrate from Beta simple to RTM dual intallation , We can have risk to lose some historical information from us project Any idea What we have to do You are really talking about 2 different operations. First is an upgrade to move from the Beta to the RTM bits. The second is to move from a single server to a dual server configuration. We urge you to treat these as 2 se ...Show All

  • Visual C++ CFtpConnection info??

    Hi! I work with MFC, i need connect to FTP or HTTP server and do something. How i can in (CFtpConnection,CInternetSession classes) get all information about session when i connect to FTP or HTTP server, upload or dowmnload file etc. For example "Connecting" ,"Connect", "Uploading" and else Hi, You can use a "GetFile" method of "CFtpConnection" class to get a file from an FTP server and store it on the local machine, and "PutFile" method of "CFtpConnection" class to store a file on an FTP server. Thanks. ...Show All

  • Visual C# error message: An object reference is required for the nonstatic field ....

    I am getting the error 'An object reference is required for the nonstatic field, method, or property ' when I attempt to run my client application. I am not sure what is wrong and the documentation on this error (#CS0120) in the VS.NET IDE is confusing to me. Does anyone know what I am doing wrong MY code is below. People is a collection class and myPeople is obviously an instance of it. Because the error appears to involve the client code and not the class library with the implementation of People, I did not include that code. I could if it would be helpful. Thanks for any help. using System; using PeopleLib; namespace Ch11N01 { /// <summary> /// Summary description for Class1. /// </summa ...Show All

  • Windows Forms Sorry...let me re-phrase

    Hi again~ Okay, I need to start over with a question because half of the trouble I was having was an improperly connected database, which is fixed now. I am very new to this, so bear with me. I am using Access 2000 and VB.net 2005. I have a form that I will be using to manipulate data from input and from a database. I created a second form that just shows a grid view of a simple table with two columns. I will use this 2 nd form to add or delete rows from the database. From the first form, I want to be able to click a button and put the entire contents from one column of the database into an array or even a ListBox. My database connection looks something like below: File_Manager_Dynam ...Show All

  • SQL Server Child Package Fails when called from parent

    So I have a parent package that calls another package using the Execute Package Task. When I run the child it runs fine but when I run it from the parent i get this msg...Any ideas Error: 0xC00220E4 at Execute VR Account Load: Error 0xC0012050 while preparing to load the package. Package failed validation from the ExecutePackage task. The package cannot run. Wenyang, Thanks for the reply but the solution did not work. I might have found a bug here because the child package uses package configurations and even though I have disabled the package config on the child when I execute it from the parent the output window says that it is trying to load the package configurations. Not sure if this has any ...Show All

  • SQL Server 'Copy Website' function in VS 2005 updates or overwrites Database?

    I have a sql 2005 express database uploaded to my website with important information in it. Now, I had to make some table change and need to update the online database. I am not sure if the 'Copy Website' function in Visual Studio 2005 will update the database structure and data or will simply overwrite it. Does anybody know the answer If it overwrites it, would you please point me to information on how can I update the database structure and data without ruining it Thanks. The system will over right as the moderfications will have been done in the local copy of the database... ie in the APP_Data.. (I am thinking that this is your case). If you only wanted to change the database schema and such one way would have been to create ...Show All

  • Visual Studio Team System Team Project Creation fails

    I've just installed team foundation and I'm trying to create a team project, but it fails part way through with: Error TFS30170: the plugin Microsoft.ProjectCreationWizard.WorkItemTracking failed during task WITs from group WorkItemTracking. Explanation Plugin error text "Response is not well-formed XML" Any ideas of what could cause this Thanks, Dave Hi can you please tell me which methodology r u using for creating team project ... MSF for agile or MSF for CMMI.. Thanks, Kathir ...Show All

  • Visual Basic AD User Account Password

    I imagine the answer is no, but is it possible for me to retrieve my own user password (plain text) from active directory You are correct that you cannot read a password from Active Directory. If you need to know the password changing it programmatically and then remembering that value would be one option, but this too isn’t the most secure method. ...Show All

  • Gadgets Suggestions for Windows Sidebar

    I thought that seeing how we had a Suggestions for Live Gallery post, we might as well list what we actually want to see with Gadgets, too. Post your suggestions here. With the recent problems I've been having, I'd like to start it off with: An easier way to install ActiveX controls that accompany gadgets. A great way to implement this would by to have a System.Gadget.addControl(string filelocation, boolean required). When the gadget is run, a notification pops up saying "This gadget requires the following activex, would you like to install Blah blah risk blah, etc etc". Allow a "lock flyout open" option. Flyouts are useful for displaying information, but if you want to copy something into notepad, for instance, when y ...Show All

©2008 Software Development Network