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

    How to add commas to numbers!

    autumnEND, You could use a float and then use a mask to output it like: float myAmount = 1000000; myAmount.ToString("#,##0.00;#,##0.00;0"); Wux.
  2. wuxapian

    Updating Controls In Other Forms

    JurkMonkey, Thanks for the reply but that is not really what I meant. I wanted to know if there was basically a way of pumping out messages to controls throughout the application. I have decided to stick with my original idea and write it myself. Ta.
  3. wuxapian

    Updating Controls In Other Forms

    Hi, I am wondering if there is a standard way to update controls in other forms. I am running an aplication to open a form to allow the user to input data, this data then needs to be updated/inserted in a list view in another form that is open at the same time. In the past I have done this by...
  4. wuxapian

    SQL TimeStamp step

    Hi, Does anyone know if there is a way of selecting data in steps from sql? What I need is an sql statement that will select (or average) set of records that have timestamps at 15 minute intervals. TIA
  5. wuxapian

    Copy Table in Word

    Thanks for your reply, I have tried copying and pasting the table but once the table has been pasted you cannot refer to it in the tables array so I assume that it does not copy the actual table object. I need to be able to refer to the table i.e. ThisDocument.Tables(2) Wux.
  6. wuxapian

    Copy Table in Word

    Hi, I am building a document in word to print labels. I have a table on the first page and I want to be able to copy that table onto a new page (endlessly depending on the number of labels to be printed.) Does anyone know how to programatically duplicate a table? TIA Wux.
  7. wuxapian

    terminating an event

    Hi all, Does anyone know if it is possible to terminate an event from within the event handler. My problem is this, I have a class that handles the onClick event of a tab control within a form but I also have the same event within the form itself to handle specific items relating to the tab...
  8. wuxapian

    Word Document in window

    Hi, I am need to be able top open a Microsoft Word document in a window within my application does anyone know how to either dock the Word editor into an application? I have noticed that you can open a word document from an IE browser, does anyone know how this was done? TIA Wux.
  9. wuxapian

    Lotus Notes

    Hi all, Does anyone have any examples of using the Domin / Notes COM objects to send mail. TIA Wux.
  10. wuxapian

    Passing values between notes forms

    Hi all, Can anyone tell me what the best way is to pass values between forms in lotus notes (not web forms). I have a form which needs to open and populate a new form when submitted but I can't seem to find a clear way of doing this. TIA Wux.
  11. wuxapian

    Custom sort order

    Thanks Rudy, that was exactly what I needed. Wux.
  12. wuxapian

    Custom sort order

    Hi all, I need to be able to force a query to order records by a certain field in an order I specify. For example I have records where the descriptions Could be "Cow", "Helicoptor", "Fish" but when I query the database I want to order them by "Fish&quot...
  13. wuxapian

    browser session

    Thanks for the reply but that's now what I meant. I am talking about having a client machine that can parse the html code and then allow access to the tags in some kind of object or array. Wux.
  14. wuxapian

    Carriage return in tables

    Hi all, I am writing a word macro that builds an address and inserts it into a docvariable field within a table cell but it doesn't put in the VBCrLf (carriage returns). Does anyone know how to sort this? TIA Wux.
  15. wuxapian

    browser session

    Hi, Does anyone know if there is a way of accessing a web page from an application and getting the page back as an object so that form values can be read and set and even submitted. I realise that this is a generalized question but can anyone point me in the right direction? TIA Wux.
  16. wuxapian

    VBScript / Lotus Notes

    Hi, Probably more of a Notes question than VBScript but here goes. Does anyone know how to get the current users email address from lotus notes, using the "Notes.NotesSession" or related objects? TIA Wux.
  17. wuxapian

    DLL problem

    Hi, To use the DLL on another system you will need to register it using 'regsvr32.exe' e.g. Go to the command prompt and CD to the directory containing the required DLL. Then use the regsvr command as follows: regsvr32 yourDllName.dll to unregister use: regsvr32 yourDllName.dll /u You...
  18. wuxapian

    Reload

    Hi all, Does anyone know if there is a quick and easy way to force the browser to load a fresh copy of a html page rather than a cached copy (as in the setting: Every visit to the page). TIA Wux.
  19. wuxapian

    Automatically Detect Settings

    Thanks for the help.
  20. wuxapian

    Automatically Detect Settings

    I have found the key now, it is in: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections\DefaultConnectionSettings. It's a lump of binary data but I haven't figured out yet how to change specific switches within it. Wux.

Part and Inventory Search

Back
Top