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: fadloun
  • Order by date
  1. fadloun

    VB6 DataReport

    hi just add RptFunction to your report footer set RptFunction to data field set Function Type=4 hope I did help
  2. fadloun

    where can i get 'Colored Tabbed'

    hello Farpoint product TabPro3.0 is Great tab control ,a lot of options. BUT it is NOT free ,cost 129$ you can download trial version from: http://www.fpoint.com/products/tab/tab.html goodluck
  3. fadloun

    Package and Deployment Question

    No need to include empty folder in your installation. you can create this folder when your application start for the first time and ignore this creation later if this directory does exist. private sub Create_Empty_Folder() If Dir(App.Path & &quot;\FolderName&quot;, 16) <>...
  4. fadloun

    Microsoft Access in VB5/6

    first you should tell me how do u create your crystal report ,are u using CR software or crystal report activex designer.
  5. fadloun

    Microsoft Access in VB5/6

    Reformatting Access Report from within vb ....Hmmmmmm I didn't try it before ,but as first look I don't think that is possible.but for crystal report anything is possible. goodluck
  6. fadloun

    Look At This!!

    yes you can expand this code and locating paint.exe wherever it had been installed. get program files dir from windows registry using any registry access tools(the key for program files dir is: &quot;HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion&quot; and the value is...
  7. fadloun

    Microsoft Access in VB5/6

    yes you can Try this code: '------------------------------- Private sub PrintAccessReport() Const dbPathName = &quot;C:\DB1.MDB&quot; Dim Acc As Object, db As Object Set Acc = CreateObject(&quot;Access.Application&quot;) Set db = Acc.Application.DBEngine.Workspaces(0).OpenDatabase(dbPathName...
  8. fadloun

    Windows XP Look with VB6

    dvannoy yes I noted that.and I think there is no solution for that. anyhow I don't recommend using vbskinner on MDI CHILD becuase you can't add this control to MDI FORM. try activeskin control.
  9. fadloun

    Windows XP Look with VB6

    yes it is possible but you have to use a SKINNER CONTROL for that .as vbskinner control,activeskin control. my suggestion to use vbskinner it is realy great and so easy to use(just place it on your form) it is available on www.visual-basic.com.ar there are two versions of this control one of...
  10. fadloun

    CRYSTAL REPORTS

    When you install CR on your system it adds some OCX & DLL files to your system which can be used in your application , SO tell me what are you lokking for to tell you the Which OCX or DLL file you need in your application
  11. fadloun

    Deploying Program Using VB Install. MDAC &amp; Jet (Problems!!!!)

    First you can use InNoSetup to make your package ,it is free,better interface,more options. regarding MDAC and JetBase :include the files which are listed below and you don't need to install mdac and jetbase Registered components 1. c:\windows\system\comct332.ocx 2. c:\program files\common...
  12. fadloun

    Database Not Found

    HELLO ALL I am using (insert into) SQL statement to copy one table from database to another on floppy disk ,I don't have any problem with this my Q is how can I add progress bar to my form to show the progress for this operation (I have 1000 records in this table ) so it takes sometime to...
  13. fadloun

    Hoe can I set Printer Orientation for Crystal report from VB?

    the other ideas -recreat your report using crystal report activex designer. -or in cr6 create 2 reports one in landscape and one in Portrait then switch between those two reports as it is required. but this should not stop you keep searching for set Orientation from vb code. regards
  14. fadloun

    Using a Progress bar

    this depend on the kind of commands you include in batch file,maybe if you give us an idea about this commands we can help you better
  15. fadloun

    Hoe can I set Printer Orientation for Crystal report from VB?

    so easy mycrystalreport.PaperOrientation=crDefaultPaperOrientation =crLandscape =crPortrait but be carefull to add referance to your project &quot;crystal report activex designer design and runtime librery&quot;
  16. fadloun

    Problem copying mdb database using vb6

    as hujur said be sure that all connections with this database are closed
  17. fadloun

    unregistering a dll

    try to create new folder and move those files from app & sys directory it after unregister them
  18. fadloun

    unregistering a dll

    start --> run type regsvr32 /u &quot;the file path&quot; you should get message that unregistering has done successfully hope this will help you
  19. fadloun

    Controling flash movie in VB

    you can control your flash movie as it is working in flash environment,a lot of answers about vb & flash you can find in the site below www.flashkit.com hope this will help you if you have a specific Q post it here and you will get reply TechUser always busy,answering Programers Q
  20. fadloun

    STill new at this

    hmmmmmm if your crystal reports are created in crystal software SO you have to use CrystalReport activeX contorl (CRYSTL32.DLL) This Ocx will do that just follow this steps 1- add crystl32.dll to your form 2-if you want to preview the report before printing it set the destination...

Part and Inventory Search

Back
Top