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 Mike Lewis 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. Bastel

    Public enum list

    Hi there, Here is my problem: i have in class a public type public type enum my_tags val1 = &&H10F& val2 = &H14F& val3 = &H21F& etc.... end type does someone know howto go trough the elements and get both values and description e.g. should be somehow convertet to an array for i = 0 to...
  2. Bastel

    Using ADODB to Connect to a ODBC Datasource.

    Hi Bill, first you must have VB Profesional then a reference in your projekt to MS activex Data objects e.g. 2.5 library Code: Public conn As ADODB.Connection Public adors As ADODB.Recordset conn.ConnectionString = "Driver=your ODBC driver;Server=YourDBserver;" & _...
  3. Bastel

    Date grouping issue

    Hi Jim, thanks a lot, i tried that before but the issue is that i need for every day one page. I solved it that way that i use VB an calculate the days befor i even start my report an ask the user for the day. Not the best but usable. Thanks to all for the great help. :) :) Bastel
  4. Bastel

    Date grouping issue

    Hi Jim, i have to tables with following data tbl_schulung id date_beginn date_end title etc. 1 03.05.2002 03.07.2002 Office97 2 03.05.2002 03.05.2002 Access97 3 03.12.2002 03.13.2002 Outlook97 tbl_anmeld id schul_id user_name 1 2 Jon_Doe 2 1 Jon_Doe1 3 2 Jon_Doe2 4 1 Jon_Doe3 5 3 Jon_Doe4 now i...
  5. Bastel

    Date grouping issue

    Dear Rosemary, Thanks a lot the answer is unlukely NO; So it seems there is no way to build a calculated field and then make o group on it ? Thanks anyway for your help Bastel :) :)
  6. Bastel

    Date grouping issue

    Hi Rosemary, let me try to explain wat's going on: the data structure is like that: table 1: colums: ID Date_beginn Date_end DATA1 DATA2 etc. data eg: 15 12/03/2002 15/03/2002 whatever1 whatever2 table 2: colums: ID refrence_id DATAX1 DATAX2 etc. data eg: 1 15 whateverx1 whateverx21 data eg: 2...
  7. Bastel

    Operating System Test

    Hello try http://www.mvps.org/vbnet/code/system/getversionex.htm which seams to be the one you're looking for. Bastel
  8. Bastel

    Date grouping issue

    Hi Rosemary, thanks a lot for your answer, but where i got the problem is: first: my crystal version is 8 and German so i am not quite sure where the Menu Report/ Select Expert is. second: is to make it a lot easyer i only need of every recordset a group of every day in the range of begin to...
  9. Bastel

    Date grouping issue

    Hi, looks like i don't get what you mean. where do i use my starting and where do use my end date ? Because this gives me the total amount of days where i wan't to have my gruping on. Bastel
  10. Bastel

    Date grouping issue

    Thank you for your reply, but i only have the starting and ending date, so i have to calculate the days during runtime, for e.g. datediff("x",end, beginn) then calculate the field by adding one day to the beginning until we are at the end date. Is there a way to make a group on...
  11. Bastel

    Date grouping issue

    Hello everybody, I've got a start_date and end_date now i would like to make a report with a group for every day between these dates. I tried this example, but when i try to make that as group field the OK button is greyd out and the result of that field shows up as true. What's wrong ...

Part and Inventory Search

Back
Top