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 bkrike 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: *

  • Users: schwarem
  • Content: Threads
  • Order by date
  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 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.
  7. 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...
  8. 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?
  9. 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.
  10. 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.
  11. 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...
  12. 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'...
  13. 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 ...
  14. 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...
  15. schwarem

    Detecting Network Speed

    I am looking for code to detect the speed of uploads and downloads for my network connection in VB.net. I want to monitor the speed and use more processes if the speed is high enough.
  16. schwarem

    Change Query from the TOP clause

    I am creating a Smart Client application using the SQL Server Compact Edition. The compact edition does not support the top clause. I need to recreated the functionality of the query listed below without using the top clause, because it is not supported in CE. The query below returns the...
  17. schwarem

    Invalid Object Name dbo.sysmergepublications

    I am trying to set up replication on a SQL Server 2005 database. The database was originally created in SQL Server 2000. I converted it to 2005 by detaching it and attaching it to the 2005 database. I get the error above when setting up the replication. I think the error is a result of SQL...
  18. schwarem

    Gridview to Excel Carriage Return

    I am exporting a gridview to Excel using the code below. One of the columns contains line breaks. How do I export those line breaks to Excel? When I run the code each line break creates a new row. If gvResults.Rows.Count > 0 Then gvResults.AllowPaging = False...
  19. schwarem

    Gridvew Export to Excel Formatting

    I am exporting a gridview to excel. I have a column of ID numbers that are 1.1, 1.2, 1.3, 2.1, 2.2, etc. When it gets up to 1.10 or 2.20, it drops off the zero in excel, because it thinks it is a number not a string. How do I prevent this from happening?
  20. schwarem

    Forms Authentication Error

    I have an application using forms authentication. When the Session times out, it just clears all the session variables and does not force the user to log back in. Now the user is essentially logged in without any credentials. What is causing the forms authentication to not force the user to...

Part and Inventory Search

Back
Top