Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. schwarem

    Microsoft Project 2003 Resource Pool Issue

    I have several projects that I need to link together with a resource pool. All resources combine as they should except for one resource has two entries. Apparently Project thinks these are separate resources and I cannot figure out why. The names are the same because it is in fact the same...
  2. schwarem

    Microsoft Project 2003 Resource Pool

    I have several projects that I need to link together with a resource pool. All resources combine as they should except for one resource has two entries. Apparently Project thinks these are separate resources and I cannot figure out why. The names are the same because it is in fact the same...
  3. schwarem

    Document Management Software

    We are looking at developing a new application that would have a significant portion of document management. Does anyone have any recommendations for a document management system to integrate as the backend for the application? Is SharePoint the best answer, or is there something else smaller...
  4. schwarem

    UserControl Dropdown Property

    I am making a UserControl to be used in other Windows Forms applications. How do I make the property in the designer be a dropdown list? I've done basic properties using text and boolean values like the one below, but I want one where I define the items in the list the user can choose from...
  5. schwarem

    Windwos Forms UserControl Properties

    I am making a UserControl to be used in other Windows Forms applications. How do I make the property in the designer be a dropdown list? I've done basic properties using text and boolean values like the one below, but I want one where I define the items in the list the user can choose from...
  6. schwarem

    Open Folder in Windows

    I tried the code below, but I am getting a compile error. ShellExecute (NULL, "explore" ,outputDirectory, NULL, NULL, SW_SHOWNORMAL); I get the error below: error C2664: 'ShellExecuteW' : cannot convert parameter 2 from 'const char [8]' to 'LPCWSTR'
  7. schwarem

    Open Folder in Windows

    I have a Windows Form application using C++ .Net. How do I open up a folder in Windows from my C++ code? I have a variable outputDirectory that contains a string of the path.
  8. schwarem

    C++.Net Open Window Form

    I have been forced to use C++ to create a GUI for an application. I normally use VB.Net or C#. I cannot open a form from the main form. Here is the code I am using. frmNewScenario * NewScenario = new frmNewScenario(); NewScenario->ShowDialog(); It says frmNewScenario is an undeclared...
  9. schwarem

    Phone Book type header

    I am creating a directory and would like to show the last name of the first record and last record on that page in the page header. Can anyone tell me how to do this?
  10. schwarem

    City State Zip comma

    I am using putting City, State, and Zip together into one field. I want to not include the Comma if City state and zip are not specified. Right now, if they are not specified, the comma still appears.
  11. schwarem

    DateTimePicker Date and Time

    That is What I did. Thank you. rjoubert
  12. schwarem

    DateTimePicker Date and Time

    How do I select the date and the time with the DateTimePicker. It seems that I can do either the date or the time, but not both.
  13. schwarem

    Windows From Databinding

    I have a windows form that contains many fields that are bound to a datset in the designer. I am storing the results of the dataset in an XML file. Creating a new record and storing it out to the XML file file works fine. I then try to reload the record from the XML file when I want to edit...
  14. schwarem

    DataSetDesigner Error - "Reference to a non-shared member..."

    I solved this problem. Apparently, you can't have a column named "System" Once I changed the name, everything worked fine.
  15. schwarem

    DataSetDesigner Error - "Reference to a non-shared member..."

    I am adding a dataset to my project using the dataset designer. It is not tied to any direct datasource. I am just making the dataset manually. I get 30 errors every time I do this. Most of which are "Reference to a non-shared member requires an object reference." There is also "'Convert'...
  16. schwarem

    Backup Error

    That was the entire error. The ... after ID was just the ID number. I have resolved this problem on my own. I ended up restoring an older version of the database and using Data Compare within Visual Studio to bring it up-to-date.
  17. schwarem

    Backup Error

    I am getting an error when I try to run backup on my database. "An error occurred when processing 'BackupMetaData' metadata for database ID ...
  18. schwarem

    Multithreading with Unknown Number of Processes

    I am trying to write an application that is multithreaded. It loads a list of files and kicks off a new thread for each one. The files are displayed in a datagrid with a % complete to indicate how much has been processed. The number of files being processed is dynamic. How do I multithread a...
  19. schwarem

    Detecting Network Speed

    I tried this, but I always get zero for my speed.

Part and Inventory Search

Back
Top