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

  1. moongirl129

    Problem programmatically opening docx file

    I developed a C# app last year which has been used on 4 or 5 pcs regularly during that time with no problems. Part of the app copies a Word document (docx 2007) then dynamically appends a few pages then saves it in a set place on the PC. The app has been installed on XP, Vista, with PCs that...
  2. moongirl129

    Databinding to second form

    I am building an app which consists of two forms - one for data entry (datagridview databound to a custom object) and one for display on a separate display screen (hence the separate form). Is it possible to use databindings across forms when using a custom user control? The problem I have is...
  3. moongirl129

    Remote Display Question

    I am looking into building a C# app that will let the user enter information which will then be formatted and displayed on a separate screen. I guess I could either show the formatted data in a new windows form or in a web browser. The system will be set up on a lap top so the user will be...
  4. moongirl129

    datetimepicker control returning 1/1/0001?

    I'm using a datetimepicker control and it's text and value properties are databound to a datetime property of a custom object. The date value defaults to todays date. If I open the application and enter other data, but don't change the date value in the picker (because I want todays date and...
  5. moongirl129

    Custom Collections

    I've been using a bindinglist to databind a list of objects to a datagridview in the project I am working on. The bindinglist type is 'Issue' where 'Issue' is a custom object. However, there has been a small change in the spec and I think I am now going to have to use a custom collection as the...
  6. moongirl129

    Datagridview checkbox column question

    I have a datagridview which is databound to an object. There are 4 properties in this object all boolean which are shown as checkboxes in the datagridview. I want them to act like radiobuttons so when one is checked the others are all unchecked. So I added a method to my class so that whenever...
  7. moongirl129

    C# code rewrite / redesign question

    I have a bit of code here which looks really awful to me - what would be the best way to redesign/rewrite this? public ImpactType ImpType { get { if (costD) { if (r1) {...
  8. moongirl129

    Programmatically set anchorstyles on user control

    I am programmatically adding a tabpage to a tabcontrol, and then adding a user control to this tab page. The application starts maximized and I need to make sure that this user control stretches to fill the tab page by setting it's anchorstyles. However my code just doesn't seem to be having any...
  9. moongirl129

    C# Reference Parent Object Property from child

    I have a class called company as follows: public class Company { public BindingList<Issue> Issues1 { get { return issues1; } set { issues1 = value; } } public BindingList<Issue> Issues2 { get { return issues2; } set { issues2 = value; } } ...other properties }...
  10. moongirl129

    C# Application Security

    I'm a C~ developer who has only ever has to write applications that will be released to one or two people in a controlled environment. I may be about to start work on an app that needs to be as secure as possible so that people can't steal / copy it. I am looking for information on all...
  11. moongirl129

    Browser Compatibility CSS Problem IE6

    I am building a website for a friend and have the basic layout working fine in IE7. However in IE6 the white background does not extend across to the right hand column and I haven't figured out how to fix this. Can anyone help me on this one? The website is on a test URL at...
  12. moongirl129

    Browser Compatibility Issues IE6 and IE7

    I am building a website for a friend and have the basic layout working fine in IE7. However in IE6 the white background does not extend across to the right hand column and I haven't figured out how to fix this. Can anyone help me on this one? The website is on a test URL at...
  13. moongirl129

    Regular Expressions - help needed!

    Hi there I am involved in running a membership based website which allows users to enter a certain amount of 'free' text. However to make the system work they should not be able to enter an email address. We have a Function already which uses regular expressions to look for email addresses using...

Part and Inventory Search

Back
Top