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 gkittelson 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. Jaroslaw

    Prevent rptTextBox from shrinking

    Thanks for your reply CCLINT but the height is where I have a problem. The DataReport keeps adjusting the textbox borders (top and bottom) depending on how big the font is. I am trying to create a report which will look like a spreadsheet when printed out (the users here LOVE their excel...
  2. Jaroslaw

    Prevent rptTextBox from shrinking

    Hi all, I noticed that the text boxes I have put on my DataReport shrink depending on how much data is in them. I have set the BorderStyle property to rptBSSolid and I would like them to stay fixed size. How can I accomplish this? Thanks, Jaroslaw
  3. Jaroslaw

    Disconnected hierarchical rs and DataReport

    Thanks for your reply Jim. As it turns out this part was fine (binding the report fields) but I was going completely wrong about creating the hierarchical recordset. Here is the proper code if anyone is interested: [code] Private Function BuildShapedRecordset() As ADODB.Recordset Dim oConn...
  4. Jaroslaw

    Disconnected hierarchical rs and DataReport

    Anybody? Although, I would like to avoid using DataEnvironment, is it possible to create a "disconnected" DataEnvironment (without SQL) and populate it manually like you can do with an ADO recordset? Thanks for any suggestions, Jaroslaw
  5. Jaroslaw

    Disconnected hierarchical rs and DataReport

    Hi all, In my project I have to use a disconnected ADO recordset to fill a DataReport. The amount of data processing required for the report prevents me from using any SQL. I have to create and populate the recordset in memory and then use it as DataSource for the report. Everything works fine...
  6. Jaroslaw

    ListBox AfterUpdate event and Selected property problem

    Hi all, Here is the story (I am using Access 97): 1. I have a form with 2 listboxes (List0 and List1) and 1 text box. 2. List0 is set to Value list with following values: "item 1;item 2;item 3" 3. List1 is populated and selected in the List0_AfterUpdate event like this: Code...
  7. Jaroslaw

    ListBox AfterUpdate event and Selected property problem

    Hi all, Here is the story (I am using Access 97): 1. I have a form with 2 listboxes (List0 and List1) and 1 text box. 2. List0 is set to Value list with following values: "item 1;item 2;item 3" 3. List1 is populated and selected in the List0_AfterUpdate event like this: Code...
  8. Jaroslaw

    Form doesnt respond to QueryUnload

    Hi all, I'm working on a small application that runs as a Windows 2000 service (I am using ntsvc.ocx). I am creating an icon in the system tray when the service is started. When the user clicks it, a form shows. To hide the form I have put the following code in the QueryUnload event: If...
  9. Jaroslaw

    Error building a dll.

    Thanks JOLESEN, Your workaround works great. My project compiles fine now, but I still get some errors. I get the following linker error when building: Compiling... NIC Control.cpp Linking... NIC Control.obj : error LNK2001: unresolved external symbol __imp__SetupDiCallClassInstaller@12 NIC...
  10. Jaroslaw

    Error building a dll.

    Hi all, I'm trying to create my first C++ dll for use with my VB program. It is probably an easy one for you guys. I cannot build my project because of the following: I'm getting this build error: 'SetupDiGetClassDevsA': cannot convert parameter 1 from 'const struct_GUID *' to 'struct_GUID...

Part and Inventory Search

Back
Top