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. slhayden

    AS Drill Down to Lowest Level Automatically

    1. In PowerPlay for Excel there is an option in the Explore menu that allows the user to Drill Down to the Lowest Level automatically. Is there a similar feature in Cognos 8 Analysis Studio? 2. According to our CFO, there is a feature in Series 7 PowerPlay that allows the user to drill up...
  2. slhayden

    Database Diagram Designer Not Working After XP SP2

    I'm using SQL Server 2000 SP3 on Windows XP SP2. After installing the SP2 for XP I'm no longer able to use existing database diagrams. The diagram window will open, but it doesn't contain any objects. Additionally, none to the toolbar controls are working. If I open these diagrams from another...
  3. slhayden

    VB.NET and Windows 98

    Check out http://msdn.microsoft.com/vstudio/productinfo/sysreqs/default.aspx You can deploy to Windows 98. MCAD
  4. slhayden

    any ebook or web site for cystal report tutorial??

    Have you tried the Crystal site? There are several good sample apps that will help you get started. http://www.crystaldecisions.com/products/dev_zone
  5. slhayden

    Getting pubs database

    Try this: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_pubs_2v8l.asp
  6. slhayden

    Dataset size ?

    I'm not sure what you mean by size. If you're trying to find out the number of tables and the number of rows in each table then you could do something like this: Dim i As Integer Dim j As Integer i = dsMyDataSet.Tables.Count For j = 0 To i - 1 Dim a As Integer a =...
  7. slhayden

    Where do I start with .NET?

    I recommend Fast Track VB.Net and Fast Track ADO.Net from Wrox publishing www.wrox.com
  8. slhayden

    combobox valuemember & datamember

    Thanks for sharing what you found out. I wasn't aware of that.
  9. slhayden

    combobox valuemember & datamember

    Your problem has to do with the fact that you're using the Items collection and not the DataSource property. Without setting the DataSource property DisplayMember and ValueMember are invalid the way you're using them. As I'm still fairly new to .Net I haven't used the Items collection of a...
  10. slhayden

    combobox valuemember & datamember

    Homer, Sorry about the typo. I was in a hurry. When populating the combobox I set a form level boolean variable in order to bypass the SelectedValueChanged event. Private Sub LoadCrops() 'Ignore combo SelectedValueChanged event mbolIgnore = True 'Load data in combo With cboCropID...
  11. slhayden

    combobox valuemember & datamember

    I use: Private Sub cboCropID_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cboCropID.SelectedValueChanged Try If IsNothing(cboCropID.SelectedValue) Then cboCropID.SelectedIndex = 0 End If Messagebox.Show(cbo1.Selected.Value.ToString) Catch...
  12. slhayden

    Pass parametr from vb to crystal

    I too have used the Crystal OCX with VB6. Not sure about all the differences with the RDC. Here's how it works with the OCX Add a Crystal Report (CrystalReport1) control to your form. With CrystalReport1 .Connect = "DSN=REPORT;UID=Jack;PWD=1Fju5j9;DSQ=YOURDB" .SelectionFormula =...
  13. slhayden

    ProductVersion not incrementing

    I'm new to VB.Net and am still on the bottom of the learning curve. Hopefully this will help. The assembly attributes are located in the AssemblyInfo.vb file. You can manually set the Major and Minor version numbers. ' Version information for an assembly consists of the following four values...

Part and Inventory Search

Back
Top