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

Software Development Network >> Troy Lundin's Q&A profile

Troy Lundin

Member List

Student_I
vapanda
carstensm
pompoko
lu2vik
wiertmir
Dvlnblk
Bart Goltstein
Tryin2Bgood
Meso X
Shiplu
Thomas Gasser
Nuno_Salvado
Shu Gao
Grotius
Daniel Krebs
dpoon
Paul_G
LTN
Nicolas S.
Only Title

Troy Lundin's Q&A profile

  • SharePoint Products and Technologies Lookup fields in asp:wizard control

    I'm using SharePoint Designer 2007 and am trying to create an custom "insert.aspx" page where the user will enter data and then save it to a SharePoint list. I'd need to provide some lookups (from existing SharePoint lists) for the user to make the UI more user-friendly. Since SparePoint Designer doesn't support lookup lists (joined tables) for insert forms, I decided to use the asp:wizard control. So I've tried two things unsuccessfully and am looking for help. 1. I inserted a data view outside the asp:wizard control and configured it to grab my lookup data and display it in a dropdown. However, when I view the page in design, I get the following error: Type 'Microsoft.SharePoint.ProxySupport.C___165' does not have a ...Show All

  • Visual C++ Beep(...) volume?

    Hello all, I'm using "Beep(frequency, duration)" to send out test tones, but I'd also like to be able to control the strength of the line out signal via system volume. Can this be done programmatically I'm using VC++ 2005 and MFC. Thanks in advance everyone! Damien Watkins - MSFT wrote: Hello Re question: Beep(...) volume Such questions are outside the scope of this forum - for the scope of the VC General forum please look at: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=19445&SiteID=1 For such issues please use the newsgroups at http://msdn.microsoft.com/newsgroups. OTP Thanks Damien Damien, as the pos ...Show All

  • Visual Basic FlowLayoutPanel

    Hello All, I am trying to use the FlowLayoutPanel control, but I'm having a real challenge. I am dynamically (at runtime), trying to add text boxes and NumericUpDown controls to a FlowLayoutPanel. Formatting is my problem. In one cell, I want to add a textbox followed by a space or 2 and then the NumericUpDown control. I can’t seem to come up with the right combination to format this. Any ideas Thanks very much. As an alternative, you may want to check out the datagridview. The table layout panel is a great tool, but depending on what you are trying to do, the datagridview may be a better match... Best regards, Johan Stenberg ...Show All

  • Visual Studio Team System Requirements Test History and Overview not returning any results

    I am currently trying to link a test to a requirement that I have created in a project created with the CMMI template. I have a unit test created and I have associated it throught its attributes to the work item id, iteration, project area. These tests are run as part of a team build and the build report says that the tests all pass successfully. I can see the build report through the project portal but when I go to the "Requirements Test History and Overview" report it does not present me with any data. I am not sure if I am linking the test to the requirement. Could someone please verify that I am doing this correctly, or if I am not point me in the right direction. Thanks B ...Show All

  • SQL Server Alter statement to create foreign key relationships

    Here is the alter statement that I am trying to use to create a relationship between 2 tables. This does not seem to work on mobile. What am I doing wrong ALTER TABLE [SubCategory] CONSTRAINT [FK_SubCategory_Category] FOREIGN KEY ( [CategoryID] ) REFERENCES [Category] ( [CategoryID] ) ON UPDATE CASCADE ON DELETE CASCADE The syntax is ALTER TABLE [] ADD CONSTRAINT [] The SQL Mobile Books Online cover the syntax of the ALTER TABLE statement if you have further questions. Darren ...Show All

  • Visual C++ In vc2005, if I can not see .cpp file in the solution explorer, but I do open that .cpp file for editing, how can I compile thi

    In vc2005, if I can not see .cpp file in the solution explorer, but I do open that .cpp file for editing, how can I compile this cpp file,I mean the entry button for this. I appreciate your help. In Visual C++ 2005 a *.cpp file needs to be part of a solution in order to be compiled. The only way to compile a single *.cpp file without a project/solution is to do it from a command prompt. ...Show All

  • Visual C++ Hi, I am Anil, I am working with application that send data from pc to an HID device.

    I am working with application that send data from pc to an HID device in VC ++ 6.0 . In that specific program I am getting fllowing errors when I tried to build it. --------------------Configuration: usbhidiocDlg - Win32 Debug-------------------- Compiling... usbhidiocDlg.cpp usbhidioc.cpp STDAFX.CPP Linking... usbhidiocDlg.obj : error LNK2001: unresolved external symbol __imp__SetupDiDestroyDeviceInfoList@4 usbhidiocDlg.obj : error LNK2001: unresolved external symbol _HidD_GetAttributes@8 usbhidiocDlg.obj : error LNK2001: unresolved external symbol __imp__SetupDiGetDeviceInterfaceDetailA@24 usbhidiocDlg.obj : error LNK2001: unresolved external symbol __imp__SetupDiEnumDeviceInterfaces@20 usbhidiocDlg.obj : error LNK2001: unresolved ext ...Show All

  • Visual Studio how to create a deployment for add-in in vs2005?

    Hi man, I have made a add-in in vs2005, now I want to make a deployment pls tell me how Thanks. Hi Focus, Have a look at Setup and Deployment Project type. Or also you can use more agile method and use Votive project - WIX integration for VS 2005. To know more about Setup and Deployment Projects in VS.NET use Google or just read article – “ Creating Setup and Deployment Projects in VS.NET ” More information about WIX I've posted here - IronPython Setup using WiX 3.0 Good luck! ...Show All

  • Visual Basic Getting back to my Home Page

    When I wanted to close a form and return to my HomePage that I use as a Table of Contents, I just clicked the "X" in the upper right hand corner of the form and I would be returned to my HomePage. I forgot the method that I used to perform that operation. Any help will be appreciated. R Williams could be because you are closing your main form which closes the application correctly. I understand that each picture clicked on results in a form opening correct if you close this form that has been opened, it should not exit but still have your main application form in the background (your navigation system form) - is this not what you are seeing you maybe best to do ShowDialog() instead of just Show() for the new fo ...Show All

  • .NET Development Sorry if wrong category. How do I create a custom assembly?

    Hi all, I'm not sure if this is the right category. I'm using VB.Net 2.0. I don't know how hard this is, but I'd like to create my own assembly like the System.Windows.Forms.etc. I'm creating a custom control, but I also want to create object types. For example, I'd like to do the following: MyApp.MyCtl MyApp.MyFormats.Add(MyFormat) Does NET just create namespaces within namespaces to achieve their heirarchy, or is there something more Thanks, Dennis Pretty much any Visual Basic project creates an assembly. If you're creating controls and objects, then simply choosing Windows Control Library will be sufficient. An assembly contains types which are organised in namespaces, but many assemblies can contain ...Show All

  • Visual Studio Express Editions dateselected populates all dates

    I'm using the month calender to show multiple projects that are due on certain days. i can get the projects to show but they show on all dates. any ideas Thanks MechEng85, I'm afraid that the Calendar control or event the month calendar control have no proper methods or properties on showing the certain days. Have you considered on using the custom calendar control There is an article on programaticaly implement a custom control as the following link and hope that can help you with your project: http://www.codeproject.com/vb/net/CustomDynInteractiveCal.asp ...Show All

  • Visual Studio Tools for Office Shared Add-in - Excel Add-in for Office 2000/xp/2003

    Hi, I'm developing a shared add-in for Excel that needs to work across Office 2000/XP/2003. I'm developing it using Visual Studio 2003 and I'm using the 'Shared Add-in' project as a template. What I need to know is what other issues will I face with getting this to install and run for all users - I've heard that the COM to .NET layering used to get this to work with .NET is very unreliable and that it was much more reliable under VB6. Regards Michael Hi Michael The correct place to discuss managed COM Add-ins is the office.developer.addins newsgroup http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.office.developer.com.add_ins&lang=en&cr=US This forum i ...Show All

  • Visual Studio 2008 (Pre-release) DataBinding:ComboBox doesn't refresh on Collection change - How do I notify the Target of a collection change

    I have a ComboBox which binds to a volatile collection. When the collection is changed, the ComboBox (drop-down) list isn't refreshed if it has already been dropped down by the user. If the user does not drop-down the list before the collection change, then it does a fresh read on the source and gets the correct data. I'm wondering if there is a notification event that I need to raise other than the standard PropertyChanged to force the ComboBox to refresh. Note: The collection object has no access or awareness of the control (as it shoudl be) so it can't be done manually. Thanks Nik       From previous post "I converted this property to an ObservableCollection" - wasn't hig ...Show All

  • .NET Development online database connecton

    Is there any way I can connect to a online access 2000 database in my c# windows application I need it so that 2/3 users can acess the online database using the windows application. (at the moment the database is being acessed on the local hdd) - The database will been put on a webserver accepting microsoft access - I DONT want to make a web service or any asp.net web app I moved to .NET Framework Data Access and Storage , hope you get a satisfactory answer. ...Show All

  • Software Development for Windows Vista How to inject DLL in all processes?

    In Vista, is it possible for a Service to inject a dll in all processes (including those which are running in Admin context) I want to do this without showing the consent prompt. Help! Thanks Matthew for you response, I am trying to trap keystrokes from all the applications, including those which are running in admin context. Also, I want to do this without showing the consent prompt. Please let me know if there is any way of doing this. ...Show All

©2008 Software Development Network