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

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

AIMDBA

Member List

Habibullah
sally_de
Johnathan Seal
brad0999
kryptonneke
borice
JFoushee
mjven
PhrankBooth
Kestutis
DanMeyers
jwraith
PatOvens
rgrneva
ysrini
Peter Feigl
zybernau
chxfryer
redcodes
Sandra Mace
Only Title

AIMDBA's Q&A profile

  • Visual Studio Express Editions Install VB Express application to All Users under Windows XP

    Is there a way to cause an application developed under Visual Basic Express to install for all users on an XP system I am logging onto an XP system, which many people use, as Administrator. I install my application, but when other users logon under their own ID they don't have it available. I also moved the Start Menu folder from my Documents and Settings folder to "All Users," which causes the program group to appear under all user's Start menu; however, the program itself isn't there if they try to use it (program group is empty). The Installer does not appear to have an option to install the program only for you or install for everyone. Any way to force the application to install for all users Thanks ...Show All

  • Visual Studio Team System Loading a query in a WorkItemResultGrid

    Hi all, I am trying to load a saved query in a WorkItemResultGrid. I want to mimic the workitem / query view in Visual Studio but extend it with conditional formatting (e.g. priority 1 bugs in red). I retrieve a WorkItemCollection from a WorkItemStore (WorkItemStore.Query) and set it as the datasource for the WorkItemResultGrid. The result grid displays all WorkItem-Fields (not only the ones selected). I can set the ResultOptions before setting the datasource-property, but they are ignored. Setting the ResultOptions after the datasource property results in a runtime exception. I've also tried using the method WorkItemResultGrid.LoadFromWiql as it was advised in Narens post in: http://forums.microsoft.com/MSDN/ShowPost.asp ...Show All

  • Visual Studio How to get the instance of custom editor

    In my Add-in, by the below code, I can get window of opened editor: ProjectItem item = getProjectItem(); Window win = item.Open(EnvDte.Constants.vsViewKindDesigner); This editor is associated with a specific editor, which is implemented by myself (COM). With the property ObjectKind (GUID), I can get the registration information in registry and find the VSPackage which contributing this custom editor. My question is at this point how can I get the instance of this editor when I have add the dll which is the implementation of editor to my Add-in project references. Thanks very much! Thank you, Carlos. You did help me with my pain. I managed to get the actual type of window.Object object by your proposal. Det ...Show All

  • Smart Device Development Scanning SDK in Compact Framework Issue

    Hi all, I have found an issue with the Imaging/Scanning SDK that the Compact Framework uses and would like to report this issue with Microsoft. How exactly do I go about do this Thanks Tryst Hi Alex, I have had some more info back from Symbol, who say that they are using the following files for the Scanning API... The Compact framework files that are in this project are: MSCORELIB SYSTEM SYSTEM.DATA SYSTEM.DRAWING SYSTEM.WINDOWS.FORMS SYSTEM.XML Not sure if this helps. (Have you any news on this ) Tryst ...Show All

  • SQL Server problem with sql query.

    Hi ya, I have two tables. One is the temporary table called tbl_temp and the other is called tbl_empDetails. I want to run a query that would bring me the records of tbl_temp where there is no corresponding ID present in tbl_empDetails, meaning it shud bring only records where a corresponding records is not available in tbl_empDetails. I tried it but this query doesn't work, it is bringing me the records which are there in tbl_empdetails. How can i do it SELECT DISTINCT tbl_temp . SID , tbl_temp . fname , tbl_temp . lname , tbl_temp . mail , tbl_temp . tel , tbl_temp . mobile , tbl_temp . office FROM tbl_temp , tbl_empDetails where tbl_empDetails . adSID != tbl_temp . SID ORDER BY tbl_temp . lname Try th ...Show All

  • Microsoft ISV Community Center Forums SheetFollowHyperlink event

    Hi, I have code for the SheetFollowHyperlink event in the ThisWorkbook object. Code: Private Sub Workbook_SheetFollowHyperlink(ByVal Sh As Object, ByVal Target As Hyperlink) ActiveWindow.ScrollRow = ActiveCell.Row With ActiveWindow .DisplayHeadings = False .DisplayGridlines = False .DisplayWorkbookTabs = False End With End Sub For some reason this works on some computers but not others. I.e., on some computers, whenever I click on a link, it correctly moves the target cell to the top of the screen (the first visible row). On other computers it displays teh target cell at the bottom of the screen (the last visible row). Could anyone explain/help Thank you, Kriti ...Show All

  • Visual C++ Constructors for global variables are not called???

    I have a VC++ project B that is linked into a static library "B.lib". This library is linked into project A which creates A.exe. The constructors for the global varaiables in B do not get called. 1. If I have golbal variables in A then there is no problem - the constructors for those get called. 2. I f the solution (Project A and B) get linked on my coleagues computer then there is no problem. 3. The whole soltion is shared between us via rational clearcase so we have the same sources and the same project files. - so it must be one of the flags of visual studio - but which Thanks, D. dannyg View Public Profile Find all posts by dannyg Add dannyg to Your Buddy List ...Show All

  • SQL Server Full text search query

    Hi, I'm a beginner with SQL server 2005 and I need a bit of a help with full text search. I'm using a simple search query like this: CONTAINSTABLE(TBL_NAME, (col1, col2), 'search_term_here'); Everything works cool with this. Now what I want is to use ranking based on those columns I'm searching. I want col1 to have greater rank than col2. For example, if search term is found in col1 it would have higher priority than in col2 and would appear in the top of results. I should mention that performance is extremely important here, so using complex queries in not an option. If there's a simple way of doing it, I would be glad to hear it. I hope you understand my problem, I'm not a native English speaker. ...Show All

  • Internet Explorer Development Documentation for BHOs and Toolbars

    I have a BHO and custom toolbar that works with IE6. Where can I find developer documentation for converting these to work with IE7 Has the IE7 developer documentation been released Is there a BHO upgrade (IE6 to IE7) guide Thanks, Frank In IE7, the IWebBrowser2::HWND property returns a handle to the top-most application window, not the WebBrowser control in the individual tab. If you're looking for documentation, you'll have to wait a few more weeks. It's on the way, I assure you. In the meantime, I will try to give you what I know from memory (I'm at home, and don't have my notes handy): #include <shlguid.h> IServiceProvider* psp; hr = pwb2->QueryInterface(IID_IServiceProvi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How I get the skin weights?

    Hey, I am trying to understand how animations works in XNA. I have modified the content processor to get the vertex buffer of a mesh from a model in a raw data, and I believe that it is in the vertex buffer where the skin weights indices of each vertex for each bone is stored. Does anyone has some clue how to get the skin weights or how they are stored in the vertex buffer Or even better, does anyone know the proper way to retrieve the vertex buffer, index buffer and skin weigths from a model Yes! I find that much more interested. Now, my problem is I dont have any idea how to do that. The only example I have found is to modify the processor in order to ret ...Show All

  • SQL Server how to sort this mess out (owners and permissions)

    Hi, I've been asked to sort out a mess as follows: two dbs on one server... first db has a user called 'bob'.. that's the login on the server and also the login name on the db in question. this db has several SP's owned by 'bob' which need to copied to the second db. Here's where the problem starts. Somehow, this second db has the standard users it needs, however the db User has a LoginName of 'bob'.. So basically if I try and create a user of 'bob' on the second server which will then allow me to copy these SP's across it says it already exists.. but if I just go ahead and try and copy the SP's it says the User does not exist. Just to clarify what I mean.. I go into the 2nd db using EM. go to users: th ...Show All

  • SQL Server SSIS: Error opening solution

    I am trying to open the solution and it is giving me error "The application for the project \\..\..\test.dtproj is not installed Make sure application for the project type(.dtproj) is installed." I tried to open any SSIS solution and it is giving me same error. Anybody has any ideas how to resolve this problem Hi Jamie, How can I install the SSIS Workstation Tools. I have already installed SQL Server 2005 Advance Express Edition with the SQL Express Toolkit. Is there any other thing which I missed to install to run this above mentioned package. Appreciate your help. ...Show All

  • .NET Development DllGetVersion declaration ?

    Hi, I am working in .Net 2.0 using vs2005. I would like to know how the following functions will be declared in the .net environment which are in vb. 1. Private Declare Function DllGetVersion Lib "Shlwapi.dll" _ (pdvi As DLLVERSIONINFO) As Long 2. Private Declare Function FindWindowEx Lib "user32" Alias _ "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, _ ByVal lpsz1 As String, ByVal lpsz2 As String) As Long 3.Private Declare Function SHAutoComplete Lib "Shlwapi.dll" _ (ByVal hWndEdit As Long, ByVal dwFlags As Long) As Long Here my doubts are 1. What is the difference between shlWapi.dll and shell32.dll. Do i need to use shlWapi.dll or shell32.dll in my ...Show All

  • Windows Forms Deployment/Installation

    Hi There, I have create a windows application. This is my first windows application using C#. I am almost done with it. Now I want to install this application on user's machine. Can anyone tell me how many ways I can deploy/install this application on user's machine. For now I just copied 'Release' folder (after building project in Release mode) into user's machine with .New framework. User is using application by clicking .exe file. Let me know how can I make package (or some file) to install the application. Thanks NBaig If you're using Express version of Microsoft Visual Studio 2005, look at ClickOnce deployment feature. In other versions of Visual Studio you are not limited to ClickOn ...Show All

  • Visual Studio Team System Team system for smal Team

    Hi, Ola I am initiating a project in. Net, this project is not nothing very monstrous therefore is counting on a small team, formed for six people. Is advantageous to use the Team system will be it Well, I work in a team of two, and we use Team System for everything we do. The integration between all the tools is great. While you could easily use a variety of other single-purpose tools to get everything that's in Team System, you wouldn't have the level of integration. In my experience, the productivity gained from having good integration is worth it. That said, your results will vary. Getting Team Foundation Server set up is not for the faint of heart, and you really need to have a dedicated machine to run the services, not to m ...Show All

©2008 Software Development Network