Search results

  1. 2

    Reports

    I asked my question in 'general' - but maby its more conect here ... I want to built an option that the customer can built his report by self, Sure there are the regular reports that I am built, but I want to give the option to build the report by self. For example if the customer want just...
  2. 2

    Reports

    I want to built an option that the customer can built his report by self, Sure there are the regular reports that I am built, but I want to give the option to build the report by self. For example if the customer want just the family name and the phone, or all other option than can be in my...
  3. 2

    get value from anothe function

    Thanks |king| :)
  4. 2

    get value from anothe function

    Thanks :) ITS WORK...:-P there is just a small problem. when I call the function I have to write: ab = GKS(Me.MySum3, sq, ss): why did I need to write it and not just: GKS(Me.MySum3, sq, ss):
  5. 2

    get value from anothe function

    I have a function that export 2 strings and I want to use this strings in another sub. here is my function: Private Function GKS(ByVal o) Dim sq, ss Select Case o Case 1 sq = ">" ss = "big then" Case 2 sq = "<" ss = small then" Case 3 sq = "=" ss = "is" Case Else sq...
  6. 2

    Imagelist :(

    Hello, I add an image list to my form, but when I use the image they got background black, and the image look not good! I attach the picture, to see the images - how they seems, and all the imagelist properties. how can I fix it???
  7. 2

    Please Help me finding the waiting fucntion in VB

    another example you can find here: http://www.access-programmers.co.uk/forums/showthread.php?t=75069&highlight=flashing&PHPSESSID=60a1bad35670812e91d4616174c360c0
  8. 2

    First Record

    OK I got it HERE: Private Sub Command25_Click() Dim gmsgText As String On Error GoTo ReportError DoCmd.GoToRecord , , acPrevious ExitProcedure: On Error Resume Next DoCmd.Hourglass False DoCmd.SetWarnings True Exit Sub ReportError: Select Case Err.Number Case Is =...
  9. 2

    First Record

    the Mdb man THANKS, but how can I check it with code? [in the form current]
  10. 2

    First Record

    HELLO, How am I know if I in the first record? I have a form with subform I change the navigation Buttons to>>> no and I built 2 buttonse NEXT and BACK. But when I am in the first record and click back I got an ERROR “You can’t go to the specified record.” I want to check if I in the first...
  11. 2

    open an exe file

    DEAR ghudson There is a sentence in my language that says If something work well don’t touch.(= But otherwise I try to do your example and I got the ERROR, :( Thanks a lot for your answer and your advices all the times. :) Sharon
  12. 2

    open an exe file

    I DON’T BELIVE…. I GOT IT…. davidoc, ghudson, spacepro Thanks all davidoc you right! ChDir ("C:\Program Files\BCCLTD\") Call Shell("C:\Program Files\BCCLTD\MSV.exe C:\Program Files\BCCLTD\FBAKARA.MSV", vbNormalFocus) Open the file good! Good day!
  13. 2

    open an exe file

    same ERROR :( There is no function like Call Shell("C:\Program Files\BCCLTD\MSV.exe C:\Program Files\BCCLTD\FBAKARA.MSV", "C:\Program Files\BCCLTD") :confused: THANKS AGAIN
  14. 2

    open an exe file

    OK I’ll try to explain again I have a folder BCCLTD in Program Files. There I have a file Msv.exe – this file I want to open. This file looks for another file “FBAKARA.MSV” that also in this folder My access program is in another folder “C:/KEVA/keva.mdb” If I tried to open the “msv.exe”...
  15. 2

    open an exe file

    Your second idea opens the folder, and then if I click the EXE file it open without the error, but I want to open the file automatically. thanks again on your times...
  16. 2

    open an exe file

    no It's try to open the file with the explorer and it try to download it :) if you click to open it i got the same ERROR "MISSING FBAKARA.MSV" :( There is another way? :rolleyes: spacepro, THANKS...
  17. 2

    open an exe file

    Good evening Hello friends I have a problem I did a project in access, in my project I have to open an EXE file, I tried with many ways to open this file: 1. stAppName = "C:\Program Files\BCCLTD\Msv.exe" Call Shell(stAppName, 1) 2. Function TLink(ByVal URL As String) As Long TLink =...
  18. 2

    Hebrew Import

    I saw hebrew i come in first of all u can send me the file, and I have hebrew and I can check it for you. secend there here a dialog (in hebrew) on question marks but in MSSQL maybe it can help u: http://www.tapuz.co.il/tapuzforum/main/Viewmsg.asp?forum=193&msgid=42076680 good luck!
  19. 2

    Hi

    Pat Format((ccur(Num) - int(Num)) * 100, "00") do the work.... thanks alot for your time :)
  20. 2

    Hi

    sorry I didn't get yet the answer! here the example I'll happy with any Idea I want to recive 2 len after the decimal point 10.9 >>> 90 10>>>00 10.07>>>07 0.1>>>10
Back
Top Bottom