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

  • Users: dorub
  • Order by date
  1. dorub

    Need solution for cuting path from the filename's in array?

    .. or maybe this will help you // Splits the filePath into an array of substrings at the positions defined by the '\' character string[] arrFilename = Regex.Split(yourPath,@"\\",System.Text.RegularExpressions.RegexOptions.None); // Reverse the array so that the fileName become the first...
  2. dorub

    Is it possible to use bookmarks with footers (MSWord/C#) ?

    I found this code related to my problem : object obBM1 = "Bookmark1"; Word.Range rngRange1 = Word_App.ActiveDocument.Bookmarks.Item(ref obBM1).Range; but I get a compiler error that Word.Bookmarks does not contain a definition for 'Item'. How Am I suppose to address to a specific bookmark...
  3. dorub

    Is it possible to use bookmarks with footers (MSWord/C#) ?

    I am creating a MS Word (VS 2003/MSWord 2003) document based on another document as a template. I succeeded replacing the text I wanted using bookmarks but I found myself in trouble trying to do the same thing with the Footer section of the document. My Footer contains a text line,a 2/2 table...
  4. dorub

    Suppress the space too not only the contents of a section

    The report I'm printing is a contract and it must have a "section" for signatures of both parts on the bottom of every page except the first one.That's why I used the page footer. Basically is a master/detail report where "the terms of agreement" are stipulated on the first page and came from...
  5. dorub

    Suppress the space too not only the contents of a section

    did that too, no success It seems like when page footers are conditionally suppressed CR reserves the space no matter what.
  6. dorub

    Suppress the space too not only the contents of a section

    Unfortunately, formatting the report header too "New Page After" didn't solved the problem
  7. dorub

    Suppress the space too not only the contents of a section

    yes , I've done that and the content of the Footer is suppressed but the space occupied by the Footer Section still appears on the bottom of my fist page as blanks (and because of that my text is forced to split to the second page). If I totally suppress the section, the fist page is displayed...
  8. dorub

    Suppress the space too not only the contents of a section

    It'a a simple report with Page Header, Details and Page Footer only that befor the actual report I must display some "notifications" on the fist page (in Report Header Section). The problem is that the space of the page footers still appears as blank at the bottom of my fist page forcing the...
  9. dorub

    text appearance

    thanks kskid, this should work for me too.
  10. dorub

    text appearance

    Hi, I have a text in my report based on diffrent database fileds representing personal information (name,street, city .. etc). But because the data retrived differ in size , the text is not fluent but full with a lot of spaces.Is there any possibility to anchor the fields together in the report...
  11. dorub

    Suppress the space too not only the contents of a section

    Hi, I have this report with the Page Footer formatted to conditionally suppress. The problem is that the Crystal Reports only suppresses the contents of the page footer and the space the page footers occupy still appears as blank at the bottom of the report.Is there any solution to suppress that...
  12. dorub

    Database Trigger status check

    I am developing a form using Forms 4.5 that would only work properly in conjunction whith two database triggers (on insert and update).How can I be sure,by the time of the initialization of the form , that the triggers are valid and enabled ?

Part and Inventory Search

Back
Top