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 strongm 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. nells1

    Embedded Crystal Reports Slow To Preview

    Hi All I have been developing my VB.Net application for some time now and it has finally gone into live testing (hurrah!!). However.. When the users go to preview one of my crystal reports (created using the inbuilt crystal reports designer, and viewed using the CrystalReportViewer on a form)...
  2. nells1

    ComboBox DataBinding not altering dataset

    Hey JohnD Having a few problems thinking of a way to get the control to you. Shall I just post the VB code here?? I should warn you, this is my first ever control, so its proably nowhere near perfect, but it seems to do the trick for me [thumbsup2] Nells
  3. nells1

    ComboBox DataBinding not altering dataset

    Hey JohnD Yeah thats what I ended up with too.. I eventually wrote my own control that does it (as well as the auto complete fuctionality) so I didn't have to repeat the code for each combo box. Seems to work ok.. if you want a copy let me know. Thanks for getting back to me [thumbsup] Nells
  4. nells1

    ComboBox DataBinding not altering dataset

    Hey JohnD Finally!! I've found a post that mentions the problem I'm having. I guess its because people bind to the SelectedValue property more than the Text property. Did you find a solution to this by any chance? Its driving me slowly insane [bugeyed] Cheers Nells
  5. nells1

    Can not create new Projects

    Hi Tim Did a wee search on the web for you and found this article: http://weblogs.asp.net/duncanma/archive/2004/05/13/130976.aspx That suggests one solution, there are probably a few more.. Unfortunatly I'm also quite new to VB.Net so I can't actually give you an answer, but I've found that...
  6. nells1

    Join Tables and Grids

    Yes you're right, that may be my only option. Is that how you get your many to many joins to work? I would have thought there would be a better way to handle it since these types of joins are very common. Creating a view will work for me and will do for my current project. I'll keep...
  7. nells1

    Join Tables and Grids

    Hi RiverGuy Thanks for your reply. I have my two DataRelations set up as follows... MyDataset.Relations.Add("Job_JobContact", _ MyDataset.Tables("Jobs").Columns("JobID"), _ MyDataset.Tables("JobContacts").Columns("JobID")) MyDataset.Relations.Add("Contact_JobContact", _...
  8. nells1

    Join Tables and Grids

    Hello I have a system as follows (please excuse the poor diagram): Sites 1-----------m Contacts 1 1 | | | | m m Jobs 1------------m JobContacts Where JobContacts is a Join Table. Now my problem is that on my...
  9. nells1

    Getting SQL Server default values into Dataset (Especially DateTime)

    Hi My VB.NET application fills it's dataset out of a SQL Server database. I know that the Default Values from the database do not copy across to the dataset so I have started looking for other ways to do this. I have found that the default values are stored in the SQL Server System Tables...
  10. nells1

    On install my application's layout is incorrect

    Problem solved!! The size changes were the result of the AutoScaleBaseSize setting and the fact that my test machine had a setting of 120dpi and my development machine was set at 96dpi.. You learn something new every day.
  11. nells1

    On install my application's layout is incorrect

    Hi All First time VB.NET developer here - and it shows <blush> I've taken a lot of care to set my anchor and dock properties so that the controls on my forms are Centered and Sized correctly. My Login form fits 800X600 and any resolution after that. It is just a box with the username and...
  12. nells1

    Filtering Dataset Records - Need to replicate SQL Inner Join query

    Thanks for your time on this Christiaan.. I'm pleased to see you weren't horrified by the set up of the project :o) And thank you for the Luck as well I'm sure I'm going to need every bit of it :o) I think I'll just run the query back on the server and if it starts to jam up I'll look for...
  13. nells1

    Filtering Dataset Records - Need to replicate SQL Inner Join query

    Hi RiverGuy and Christiaan Thanks for the insight, its seems there is no easy answer. Yes I am trying to do something that Sql Server should be doing. This is because I'm making this application for a small company that can't afford the full blown Sql Server, so is using MSDE instead.. I...
  14. nells1

    Filtering Dataset Records - Need to replicate SQL Inner Join query

    Hi All I am creating a search builder for my VB.Net database application. The search builder currently produces a SQL statement using Inner Joins like: SELECT Customers.* FROM Customers INNER JOIN Jobs ON Customers.CustomerID = Jobs.CustomerID WHERE Customers.CustomerName Like...
  15. nells1

    Linking issue - Multiple links cause Query Engine Error

    Problem solved! Its a little bit of a mystery to me what was going on here.. but I created a new report where the datasource read directly off the database, played with the links I'd set up so it showed me the correct information, played with the links back in my original report.. and it works...
  16. nells1

    Linking issue - Multiple links cause Query Engine Error

    Hi again Paulmarr The Report is based on a Dataset, though. The dataset has the valid relationships and everything is showing up correctly on the forms. Have I got things completely wrong and need to do something different? I wouldn't be suprised :o)
  17. nells1

    Very Simple Question - Showing Parent Name rather than ID

    Yes it would seem so :o) Point definitely noted! I'm still having a wee problem but have put it under a new thread as it is no longer valid under this post. Would you mind taking a look at thread766-864557 just incase you have any ideas :o) Thank you very much nells
  18. nells1

    Linking issue - Multiple links cause Query Engine Error

    Hi My report is based on a few related tables in a dataset schema. The report shows the details of a "Job". However it also needs to link to two other tables "Customers" (to get the customer name) and "Status" (to get the status name). So I have set up these links in the Visual Linking...
  19. nells1

    Very Simple Question - Showing Parent Name rather than ID

    Problem solved!! I was having a wee play around and it seems that the auto link was putting the link in the wrong direction?!?!?! When I re-linked it the other way BINGO. Thank you for your time, I've been trying to figure this out for ages <blush> nells
  20. nells1

    Very Simple Question - Showing Parent Name rather than ID

    Sorry Paulmarr I forgot to mention that the error appears at runtime before the report is displayed in the viewer on my Windows form. The report is never displayed after the error. :)

Part and Inventory Search

Back
Top