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

  1. 369852

    Bar Chart keeps reveting back to Colour by group

    I have a bar chart that is displaying grand total values. When i set up the graph first it is fine but when i save it, close and then open it again and the chart bar are all the same colour - it has reverted to colour by group what am i doing wrong??? cheers!!
  2. 369852

    Enable Scanning

    The ScanControl can be used as a textbox but it's purpose is to accept input from the scanner of your PDA! So when you require a barcode to be scanned, set focus on it , scan the barcode and the barcode text shoudl appear in the box. I am not sure why you are getting the above error! The...
  3. 369852

    Enable Scanning

    there is no need for the declaration or Set Scanner = New ACTIVESCANLib.ScanControl. Just activate the scanner - Scanner.OpenScanner Scanner.EnableScanning(True) when u need it and disable when you are finished. Scanner.closeScanner Scanner.EnableScanning(false) make sure the control is on...
  4. 369852

    TAPI - How to use

    Hi, Can anyone guide me on how TAPI works? I want to basically detect when an incoming call is being received and run another program then. Can anyone help me???
  5. 369852

    Help - Remote access to XDA from a desktop

    Hi all, I have an XDA that is held offsite. It may become necesaary to access this, to copy files from it and to it etc! Can anyone tell me if they know of anyway to do this? Any guidance would be great! Thanks Jackie
  6. 369852

    Window Size

    Hi I am calling a new page from a form. Is there anyway to set the size of this page that displays? I generally just want this to be a small page to appear in front of the screen that called it. I don't want to have to use a javascript showmodaldialog, as i want to continue using a form with...
  7. 369852

    Subtracting Times

    so is there anyway i can combat this?
  8. 369852

    Subtracting Times

    Actually i think i have been looking at it wrong it seems to be displaying a strange string! Here is the code i have: For example if Time1 = 09:12 Time2 = 20:10 numMins = datediff("n",Time1,Time2) - (60 * numHours) Nummins returns the answer 0-2 which is very strange! Any ideas
  9. 369852

    Subtracting Times

    Hey Just a little thing with the code mwolf00 , if the first time is 09:12 and the second time is 12:15 i get a minus in the number of minutes?? How can i get around this? Thanks again
  10. 369852

    Subtracting Times

    Thanks a million to everyone, used mwolf00 code, but thanks to everyone
  11. 369852

    Subtracting Times

    I have it stored in the database as datetime, so i can just use the datediff to get the seconds? Then subtract and then convert back and display?!?
  12. 369852

    Subtracting Times

    Thanks for the replies! How will i convert it to seconds?
  13. 369852

    Subtracting Times

    Hi all, I have a slight problem when i am subtracting times in ASP. At the moment i am using DateDiff but this only gives me the Hours e.g if i subtract 17:00 - 09:00 i get 8 which is grand but if the times happen to be 17:30 - 09:00 i still get 8 whereas i want to get 8:30. Basically i can...
  14. 369852

    Retieve the date of the start of the week from a week number

    Hi I chnged your code slightly :( because Today() was giving me trouble. 'if we are counting from beginning of week before jan 1 theDate = DateAdd("d",-1 * (WeekDay(cDate("1/1/2003") - 1)),theDate) The date i get back is 27/12/1899 which is'nt correct :-( Anymore ideas...
  15. 369852

    Retieve the date of the start of the week from a week number

    Thanks for the reply!! just wondering are you missing a bracket here somewhere? I'm not sure where it should go..... 'if we are counting from beginning of week before jan 1 theDate = DateAdd("d",-1 * (WeekDay(cDate("1/1/" & Year(Today())) - 1),theDate)
  16. 369852

    Retieve the date of the start of the week from a week number

    Hi all, Would anyone have an easy way of determining the date of the of the start of the week when the user gives the week number? Thanks in advance :-)
  17. 369852

    Adding A image to a CE Image or Picture control

    Hi Rann, As i understand it you can only display .bmp files saved at 256 true colour on the CE device. This was the only format that would work for me Hope this helps Jackie
  18. 369852

    ActiveX component error

    Hi all, I have a problem with creating a connection for the PDA to the database. The line of code is: Set conn = CreateObject("ADOCE.Connection.3.0") and i get the following error - ActiveX component can't create object I have downloaded all the components and have the ADO added as a...
  19. 369852

    Problem in registering a component

    Hi ketankshah, I'm not sure if this will be any good to you but let me know. I had a similar problem myself and found this to work. If you go to the directory C:\Windows CE Tools\wce300\MS Pocket PC\target there should be three folders in there with the file "regsrvce.exe" in each of...
  20. 369852

    Chart Name

    Thanks for all the help Sheets("Sheetname").chartobjects(1).name and Sheets("Sheetname").chartobjects("Chartname").delete worked great for me Thanks again and until the next time.... :D Jackie

Part and Inventory Search

Back
Top