Search results

  1. NigelShaw

    could this be done with MsAccess

    Hi Alan I used clarity for a while. My wife has a vinyl logo business and still uses it. It's quite eay to use and has good modules ie production, reports, invoicing, analysis, job cards etc and some good tools ie gerber edge, vinyl cad cut cost creation tools. It's downsides are cost and speed...
  2. NigelShaw

    could this be done with MsAccess

    Hi Alan I'll send you an email tonight. Not sure why you had a return do I'll check that out. Thanks Nidge
  3. NigelShaw

    could this be done with MsAccess

    Hi Alan Would you post the link of the schema or a sample db to date? I'd be interested in co development. I too have started to make something similar to Clarity and want to fill the gaps that it lacks. I have already deloped a grid view of job lists and production scheduling which I have now...
  4. NigelShaw

    could this be done with MsAccess

    Hi There is an application built for print production that works just as you describe called Clarity. www.touchsystems.co.uk Cheers Nidge
  5. NigelShaw

    Public Sub not recognizing IRibbonControl

    Hi Are you declaring IRibbon as a control? This should be a public variable. I don't have the link to hand as I'm on my iPad but if you search my threads, I have a very detailed tutorial for ribbon with the vba that's required. Cheers
  6. NigelShaw

    BMP issue

    Hi Dave I fixed the problem. It was because I had placed the bmp at the exact correct proportion. As soon as I put it at the correct size, the grid disappeared. Initially, it looked just like the grid on a form at design view. The image itself is a general windows image that comes with the os...
  7. NigelShaw

    BMP issue

    No need to panic and rush to my assistance any more lol it seems that unless the bmp is set up on a form at the exact same size that it should be, these lines appear. At first glance they look like they are the grid lines from a form but in reality it is the compression of the image. the...
  8. NigelShaw

    Form Math

    figured it out. Divided the windowwidth by the RECT cheers Nidge
  9. NigelShaw

    BMP issue

    Hi Guys, just a quickie. When i look at the attached image in photoshop as a bmp, its perfect. When i add it to an Access form, it has a grid on it. Is this usual or unusual for a bmp? i have added it by an image control. cheers Nidge
  10. NigelShaw

    Question Set the position of an API Color Chooser

    Hi Sam, my bad. here it is lol :)
  11. NigelShaw

    Form Math

    Hello mate. the rectangle on my form has these properties- Left - 3.199cm Top - 0.199cm Width - 13.898cm Height = 10.818cm by using this code, i can get the RECT of the popup form Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Dim FrameRect As RECT Set...
  12. NigelShaw

    File Browser snag

    Hi, have you tried Me!BulkAttachment.Value Me!BulkAttachment.Text you could also use- Dim sAttachment As String sAttachment = Nz(Me!BulkAttachment.Value, "") Cheers Nidge
  13. NigelShaw

    Form Math

    Hi Guys, just cant my head into gear today....... i am trying to set 4 points on a form. i am using RECT Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type i am setting this Dim FrameRect As RECT i can get a return from the form of 4 co-ordinates Left...
  14. NigelShaw

    Question Set the position of an API Color Chooser

    Hi Sam, not sure which type of colour dialog you are looking for but this is a pretty ok & simple one. Centres in the screen too ;)
  15. NigelShaw

    Question Set the position of an API Color Chooser

    LOL i actually meant to do a color dialog....... sorry. I'll do another one today with a colour dialog only :) Cheers nidge
  16. NigelShaw

    Top posters for the month

    Hi Jon, i found these- Top poster of the month / year http://www.vbulletin.org/forum/showthread.php?t=236822 similar http://www.vbulletin.org/forum/showthread.php?t=240535 http://www.vbulletin.org/forum/showthread.php?t=121918 cheers Nidge
  17. NigelShaw

    Question Set the position of an API Color Chooser

    Hi Sam, Did any of the suggestions / examples work? it would be good order to let people here know so they can forget about the thread... cheers Nidge
  18. NigelShaw

    Top posters for the month

    Hi, with lots of users not being here for as long as others, it would be very difficult for someone to see their name in the 'top posters' section for a very very long time. To promote users to help other users, wouldn't it be great if there was a 'Top posters of the month' at the bottom of...
  19. NigelShaw

    Reading regional settings (currency)

    Hi Frank, try this: Option Explicit Private Declare Function GetLocaleInfo Lib "kernel32" _ Alias "GetLocaleInfoA" (ByVal Locale As Long, _ ByVal LCType As Long, ByVal lpLCData As String, _ ByVal cchData As Long) As Long Private Declare Function GetUserDefaultLCID%...
  20. NigelShaw

    Question Set the position of an API Color Chooser

    Hi Sam, try this little app i put together for you. Check out the routine (CenterWindow) which is responsible for centring the dialog. Cheers
Back
Top Bottom