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

  • Users: Frank336
  • Content: Threads
  • Order by date
  1. Frank336

    Object Model Hierarchy

    Hi, im trying to understand the relation between the objects in the object model. What is the hierarchy ? SPSITE - SPWEB - SPLIST - SPWEB - SPWEB - SPLIST - SPLIST - SPLISTITEM - SPLISTITEM SPWEB can be "MySite" ? SPLIST can be a "General Discussion" ...
  2. Frank336

    Get all Discussions

    Hi, how can i get all discussions from a Sharepoint Portal ? Like that : Discussions from http://TheSharepointPortal.com/ Discussion1 path : /dws1/discussion1 Discussion2 path : /dws1/asdf/discussion2 Discussion3 path : /dws3/discussion3 Should i loop through all sites from the...
  3. Frank336

    A "Most Popular Thread" Web Part

    Hi, I would like to create a web part (displayed at the Sharepoint portal level) containing the most popular (active) threads contain in different Document workspaces. Can i do that ? If yes, where can i find information about that ? What should i look for ? I start using Sharepoint a...
  4. Frank336

    Office XP Resource Kit Tools and Add-in.

    Im a bit lost... I have created a COM Add-in (.dll) that add a menu in Outlook. I want to include that Add-in in a .MST file. In the Custom Installation Wizard, where should I put my add-in ? In the "Add installations and run programs" section (deploying my add-in package) ? In the...
  5. Frank336

    Windows Installer Preparing to install...

    Hi, i've got a problem with my application. Im using VB6 with an access database. In developping on Windows 2000. When I am log as "administrator" I can run my program without any trouble but if I'm log as a normal user : 1) A message box "Windows Installer-preparing to...
  6. Frank336

    Group Header alone at bottom of page

    Hi, (CR8.5 (RDC), VB6, Access 2000) What can i do if I don't want Group headers to be alone at the bottom of a page with the data on the page after... Ex. : I have that structure : Group Header Detail Page Header When the report print, the result is sometimes : On page 1 : Group a data...
  7. Frank336

    SelectPrinter problem

    Hi, im using CR8.5 (RDC), VB6, Access 2000, Windows 2000. Im trying to use the SelectPrinter method but it crash my system. I'm using the following code : Report.SelectPrinter Thedriver, Thedevice, Theport CRViewer1.ReportSource = Report CRViewer1.ViewReport...
  8. Frank336

    DiscardSavedData problem

    Help me please! Hi, im using CR8.5 (RDC), VB6, Access 2000, Windows 2000. (I try to set a recordset as source of a report at runtime.) I have a form where the user can select criteria for a report. I then construct a dynamic report with the recordset constructed with the criteria. So the...
  9. Frank336

    Group on value

    Hi, im using VB6, rdc(cr8.5), access 2000 How can i get that structure (Im grouping on Code) ? Code = A ID 1 ID 2 Code = B ID 3 ID 4 Code = OTHERS (all the other codes (C, D, E, ETC.) ) ID 5 ID 6 ID 7 (The list of code is not static) Thanks, Frank
  10. Frank336

    Send mail window

    Hi, (Im using CR8.5(RDC), VB6, Access 2000) is there a way to call the send mail window from VB6 ? Thats the window where you type the subject, message, etc... I want to mail a report from VB but I dont want the Export window to appear (where you chosse the Format (pdf) and Destination...
  11. Frank336

    Strcmp Problem

    Hi, (VB6, RDC(CR8.5), Access 2000) Ive got a report with 2 columns. The columns contain numbers. When a row dont have the same number I want to set the second column to bold. So on the field of the second column ive set the x/2 to this formula : WhilePrintingRecords; if strCmp ({@Before}...
  12. Frank336

    No Export Button on reports

    Hi, (Im using VB6, CR8.5(RDC), Access 2000) I used to have the export button on my reports but now he's not there... I have the "X" button, then the "Print" button, then the "Group Tree" button and finally the "Zoom" combobox. What's wrong ? Anyone...
  13. Frank336

    Formating numbers

    Hi, (VB6, CR8.5(RDC), Access 2000) I want to format numbers so i dont have decimal after the period. Something like this : 3/4 instead of 3.0/4.0 The formula I use is : Count ({ado.ID}, {ado.Group1}) & "/" & {ado.Nb_Members} How can I do that ? Thanks, Frank
  14. Frank336

    Assign value to text object ?

    Hi, im using vb6, RDC(cr8.5), access 2000. Ive got a dynamic report and I need to display a text greater than 255 characters. The text is the criteria choose by the user for the report. I pass the text by parameter. Since you cant pass a string greater than 255, I cut it into smaller parts...
  15. Frank336

    Addgroup alternative ?

    Hi, Im using Vb6 with RDC and an access 2000 database. I would like to dynamically add groups to a report from VB(3 level of grouping possible). the result could be : Level1 Level2 Level3 ID Name ID Name ... I was using Addgroup which is royalty-free but for...
  16. Frank336

    Order on record count

    Hi, Im using VB 6, RDC, Access 2000. I have that structure. ID Data 1 A 2 B 1 D 3 A 2 V 2 Z ... I have a groupheader on ID. I would like to order my ID based on the number of "Data" in a report that would look like this : --- ID 2 Data B V Z...
  17. Frank336

    I have a table with this format :

    I have a table with this format : Types ID ----- -- Type1 A Type1 C Type2 C Type3 B I would like to do a report with this format : ID\Types | Type1 Type2 Type3 --------- A X B X C X X The X are Picture of Cheked CheckBox. So if for the ID C theres 2 records...
  18. Frank336

    Method 'DiscardSavedData' of object failed error

    VB6, CR 8.5(RDC), Access 2000 Hi, Im trying to print a report from VB without preview. The 1st time i print (via a bouton) everthing is ok but the 2nd time a get an error : Method 'DiscardSavedData' of object failed My code look like this : Report.DiscardSavedData...
  19. Frank336

    (cr8.5(RDC), VB6, Access 2000)

    (cr8.5(RDC), VB6, Access 2000) Hi, How can I change the datasource of a subreport between 2 recordset at runtime ? Im using this : request1 = "Select ... " Recordset1.Open requete, db, adOpenStatic, adLockOptimistic request2 = "Select ... " Recordset2.Open requete, db...
  20. Frank336

    Formating Date

    (VB6, CR8.5(RDC), Access 2000) Hi, ive got a problem with date formating. First of all, I must say that Im using french regional parameters and crystal syntax. When i use the following formula in a UnboundString : cstr(DatePart("YYYY", currentDate),0) the year is print : 2 002...

Part and Inventory Search

Back
Top