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

Software Development Network >> Peter Manesis's Q&A profile

Peter Manesis

Member List

Mulhall
sam-pan
C7MAX
Bek11
Ravi Kiran Guturu
Paul Martin
James Christian
Sheela E.N
Monia Anand
aosman
Omega147
Oraclewanab
cmazur
Urubu715
Rodrigo Silva
Jason Prickett-MSFT
Sorin Solescu
SoGa
MariaJeff
Caleb Vear
Only Title

Peter Manesis's Q&A profile

  • Visual Studio Express Editions Changing listview image at runtime

    Hi all, i have just started the transgression from vb6 to 2005. I am having a bit of a problem with changing a listview image at runtime. In vb6 this simply invovled chaging the image index of the listview item, but in 2005 there does not appear to be any image index for the listview item. There is an imagekey option but unlike vb6 there does not appear to be a 'key' field in the imagelist control. I have done a lot of searching for an answer to this but cannot find any answers, i've no doubt the solution is simple but at this moment i just cannot get my head around it. Any help would be galdley appreciated. cheers Unclejack ...Show All

  • Visual Studio Express Editions Help installing DirectX8 runtime library 4 VB2005

    Hello, By the name, you should easily be able to tell that I am new to this, and I am very interested in laerning VB, but I am having trouble installing a runtime library for the new edition of VB.  Any help is appreciated.  Thanks. Well it seems that I have found the answer to my question, but if anyone else is having this problem than please read: When referencing DirectX in VB2005 go to windows application properties, under the Project and at the bottom of the page select DXVBLibA und imported namespaces, and from now on Intellisense should recognize DirectX. ...Show All

  • Windows Forms Hide certain standard control's properties from designer

    Hi, I created a custom control which inherited from Forms.Button. There's no problems to create & expose custom properties but... I cant find anyway to hide the standard Button's properties... Note that I'm using J# Thanks override the property, apply the Browsable(false) attribute. . . call the base property to access it. this is c#, but the approach should be the same: public partial class MyTextBox : System.Windows.Forms. TextBox { [System.ComponentModel. Browsable ( false )] public override string Text { get { return base .Text; } se ...Show All

  • Visual Studio Team System Can Feature Area path break down be stored somewhere?

    Hi there,      Everytime I create new project, to add the all our Freature Area and component I have to go through Clasification and add them all one by one manually. I was wondering if this information can be actually added by copying and pasting some file ( like in case of customizing Bug form , i can just paste my customized bug.xml file) or if I can automate this process, so that it can save some of my time also can reduce the chance of mismatch in area structure everytime I create new project. Thanks, Anu There's no way to just do a bulk upload of the Areas and Iterations.  However, they ...Show All

  • SQL Server XML Data Sources Extension

    Hello, My query string, <Query> <SoapAction>...</SoapAction> </Query> calls a webservice method that returns a dataset with the following xml representation: <ArtworkDataSet> <ArtworkDataTable> <Season></Season> <Name></Name> <ImageName></ImageName> </ArtworkDataTable> </ArtworkDataSet> The problem is, if any of the elements do not return with a value, then that element does not display. For instance, if the result set is the following, where ImageName is empty, ...Show All

  • Windows Forms Relative paths

    Is there a winforms equivalent of ASP.NET's Server.Mappath  I have an access database (MDB/MDE) file being deployed with my application and I need to make sure the application points to the right location in case the user deploys to a folder other than the one I specify in my deployment project. Thanks, Justin Try looking at Application.ExecutablePath or ...Show All

  • Visual Studio Team System TF10216: Team Foundation services are currently unavailable

    I finished the TFS install, with a lot of problems. I can connect to the server, however, if I go to "Team Foundation Server Settings | Security" I receive the following errors: Failed to query the source control global permissions for [SERVER]\Service Accounts Team Foundation Server foundation does not exist or is not accessible at this time. Technical information (for administrator) HTTP code 503: TF30059: Fatal error while initializing web service I also get error TF30177: Team Project Creation Failed when attempting to create a new project. ------------ Event Type: Error Event Source: TFS Version Control Event C ...Show All

  • Windows Forms load data only if needed...

    hi to everybody! i would like to have a custom datagrid, that only loads the first 10 records of a table. when the user scrolls down on the bottom of all avaliable records a function should then load the next 10 records. i need this 'cause i have a table with about 50.000 records in it, so it would be nice to only load the records the user&nb ...Show All

  • Windows Live Developer Forums Some important questions about after contest

    Hi all... I looked this forum and read many of the topics and i looked partner sites and read nearly all forum topics and send a question to Incesoft forum because i use Incesoft SDK and send e-mail to Incesoft about my first question below. BUT I could not find answer and i could not got any reply yet from Incesoft. I want to know the situation about the robots after contest. If I want to host my robot after contest what can i do Or robots are only for contest 1-All partner sites says about contest. If i want to host my application after the contest or i do not want to be a competitor in contest only want to make a robot a ...Show All

  • Visual Studio compiler doesn't Recognizes the Reference of custom VSPackage Project

    Hi, I have created my own VSPackage which is based on a third party language. It creates a template with  a .kproj project type and .kcs file extension. I have also implemented the language service and ProjectNode class for that. my package is having its own compiler which compiles the code and generates a COM Dll. further using TlbImp.exe I am converting the COM Dll to .NET Dll(wrapper dll). Now I have one solution say Solution1 (which contains two projects one .kproj and other .csproj (C# project)) 1)First.kproj 2)Second.csproj where Second.csproj is having a project reference to First.kproj T ...Show All

  • Visual C++ HELP: error C2664 in atlcom.h coming back

    Moving from vs2003 to vs2005, I have the following compilation error: atlcom.h (5005) : errror C2664: 'ATL::_CopyInterface<T>::copy' : cannot convert parameter 2 from 'IMyObject  * const *' to 'IMyObject **' with [ T = IMyObject ] Conversion loses qualifiers atlcom.h (4992) : while compiling class templates member function 'HRESULT ATL::IEnumOnSTLImpl<Base, piid, T, Copy, CollType>::Next(ULONG, T *, ULONG *)' with [ Base = IEnumMyObject piid = & IID_IEnumMyObject, T = IMyObject *, Copy = ATL::_CopyInterface<IMyObject>, CollType = std::vector<IMyObject *> ...Show All

  • Windows Forms OLE, Drag and drop

    Hello board - I am trying to hook drag and drop for a seperate process than my own. Specifically, I have a proprietary application that 'hooks' the taskbar notification area "system tray", so that when text is dragged there the application can process it. I am dying to know how this can be done. If you call RegisterDragDrop and specify a window handle out of process, OLE yells at you... If anyone can help, you are a true Guru and it would be vastly appreciated... If you do find away, feel free to post in c++,vb, or c#. THANKS! .NET uses DragEnter, and please read the post again. The taskbar not ...Show All

  • Visual C# Newbie: Need to combine several .dll into a new one.

    Hi all, Here is my problem: I have 2 .dll files, say a.dll and b.dll, which I want to combine into a new .dll file, c.dll. Is it possible to do this, if so, how do I do it I would like a.dll and b.dll to be completely gone if possible. This is so that I can create a new program which calls a & b's functions through referencing c.dll. Any help would be greatly appreciated. there is a tool available called ILMerger which will merge the assemblies into one.You can download it from following url http://research.microsoft.com/~mbarnett/ILMerge.aspx ...Show All

  • Visual Studio Team System Configuring Email address for the alert service

    Hi, During the setup of the foundation server i, had left the field, " Enter the Email address from which the alerts seem to originate ",blank. However i would now like to configure the server to send alerts .  Is there some way i can configure this email address , from which the alerts should originate Kind regards The specific tag in web.config for setting this field is - <add key="emailNotificationFromAddress" value=" tfs_admin@TFSservername.com " /> This means the originator ("From") of every email alert in the system will be whatever address you assign in value=.  -Keren.    ...Show All

  • Visual Studio 2008 (Pre-release) Display vertical rows in a ListView

    Hi If this question has already been posted, please could somebody post the link. How to display vertical rows in a ListView My requirement is 1. Column headers and individual rows are oriented vertically 2. When the user adds a new item to the underlying collection, a new column is created instead in the listview to display the newly added item Could anyone please help me Thank you Thank you very much. This is exactly what I wanted.. One minor issue though, was the header and the items were not matching in this case.. But this can rectified by not setting the RotateTransform for the Lis ...Show All

©2008 Software Development Network