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. Waiman

    SPS Questions...

    Hi, I'm new to SPS and I've been told to look into some customisation. Can people help point me out where to look to see if these requests are possible, i.e. objects, methods, events, etc. My background is VB Desktop and ASP programming. - Can we customise workflow? SPS has serial or...
  2. Waiman

    How do you you get "n" results at at time?

    LOL! I feel such a fool! (I am rather new to SQL) Many thanks to tlbroadbent and SuicideCommando for the help. I've just learnt what "SET NOCOUNT ON" does. By setting this NOCOUNT to ON, it stops any results being sent back to ASP, therefore no more closed record sets. Now I can use...
  3. Waiman

    How do you you get "n" results at at time?

    I'm trying to write a Stored Procedure to return "n" number of results, from a undetermined number of rows. I intend to use it for discussionboard like view, in that you have links for "n"th page of "y" records. e.g. [1], 2, 3, 4, Last Page The problem I'm...
  4. Waiman

    HELP: ActiveX Control to upload files to Lotus Notes DB.

    Hey, does anyone know how I would upload files to a notes db? I need to write a control to download a file to a certain location on a client's machine from a Notes DB. When they are done, the file needs to be uploaded back to the Notes DB. I've managed to write the download, but it's the...
  5. Waiman

    HELP: ActiveX Control to upload files to Lotus Notes DB.

    Hey, does anyone know how I would upload files to a notes db? I need to write a control to download a file to a certain location on a client's machine from a Notes DB. When they are done, the file needs to be uploaded back to the Notes DB. I've managed to write the download, but it's the...
  6. Waiman

    Outlook : Accessing another mail box in VBA

    I need to be able to have access to the inbox of another mailbox in outlook using VBA. I can use "Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox)" to get the inbox of the current logged in user of Outlook. However, on the folders list there is another...
  7. Waiman

    Embedding a graphic in a mail message in code

    Can anyone tell me how to embed a graphic inside a new message from an outlook macro? Detail: I'm trying to put a signature image in an ordinary email message in a VB macro. I know I can attach files to a message, but I can't seem to be able to embed a graphic into the message body, like when...
  8. Waiman

    Auto reply email in Outlook

    I'm trying to get an email to automatically send itself back to the sender in a range of outlook clients, from outlook 95 to 2000. I'm new to VB/VBA and would like advice as to how to approach this. More Detail: This email will be a request for purchasing approval. The odd thing is, for legal...
  9. Waiman

    Locking certain parts in Word Doc

    Is it possible to lock parts of a word doc so that users can view them but not edit them? I'm trying to create a workflow document. It should only allow those at each point in the work flow to edit parts from people who preceeding them in the work flow. Any idea appretiated.
  10. Waiman

    Locking certain parts in Word Doc

    Is it possible to lock parts of a word doc so that users can view them but not edit them? I'm ting to create a workflow document. It should only allow those at each point in the work flow to edit parts from people who preceeding them in the work flow. Any idea appretiated.
  11. Waiman

    NT user names in VBA

    Is it possible to find out what NT user name is currently editing a word doc? I need this for version control and approval cycle reasons. So far I think it can't be done unless you use a custom com object. Can anyone shed some light on this? Any help appreciated.
  12. Waiman

    striping carraige return & Line feed from text box.

    Thanks JohnYingLing, You were right, kind of. I had to replace the vbLF NOT the vbCR, as you had stated, but I'm sure you just got them mixed up. :-) For others it should be, Replace(strText,vbCrLf,vbCr) Thanks.
  13. Waiman

    striping carraige return & Line feed from text box.

    Thanks guys. I've tried JohnYingLing's suggestion, but it still shows the Square character. Tried replacing chr(10), chr(13), vbCRLF, vbLF - no avail. Would the font be an issue? I'm using verdana.
  14. Waiman

    striping carraige return & Line feed from text box.

    I have a multi-line text box which is used in a form in Word, using VBA. The contents of the text box is put into a Docvaraible. The problem I have is that all carriage returns are not displaying properly, the square character is used. I can strip out the carraige return and line feed but I...
  15. Waiman

    updating fields values in a footer

    I'm trying to create a simple word macro that will allow people to create a standard propsal doc that uses around 23 variables. It's a standard document that will be used when creating a proposal, the only things that change are Client names, dates, etc. I've managed to use input boxes...

Part and Inventory Search

Back
Top