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 Mike Lewis 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. RobertP

    How to do client side adding of form fields before submission

    Put an onchange event on the two boxes that calls a javascript function that adds the two values together and puts them into the third. e.g. <html> <head> <script language=&quot;javascript&quot;> function addValues() { myForm.box3.value = myForm.box1.value*1 + myForm.box2.value*1; } </script>...
  2. RobertP

    NotesSQL File Server error

    It turns out this problem was caused by not using the Lotus Notes server in the connection string (despite the fact that it isn't in the Lotus examples!). This had the effect of trying to open the file rather than accessing the data via notes and thus a file sharing style error occurred.
  3. RobertP

    NotesSQL File Server error

    I can use NotesSQL fine against a Notes DB on my machine but when I connect to a remote server I get : [Lotus][ODBC Lotus Notes]This database is currently being used by someone else. In order to share a Notes database, all users must use a Notes Server instead of a File Server. Any ideas...
  4. RobertP

    Certification

    This link is updated with all the news on .NET training and certification: http://www.microsoft.com/trainingandservices/redirect/dotnet.htm Rob.
  5. RobertP

    Stored Procedure Progress Reporting

    Is there any way to return text strings during the processing of a stored procedure? i.e. if my stored procedure has 3 parts, I want a message back after parts 1 and 2 to say that they've completed. TIA, Rob.
  6. RobertP

    VB6 Standard or Pro

    buns, check this: http://msdn.microsoft.com/vbasic/prodinfo/datasheet/feature.asp Yes, all versions will compile to EXEs Hope this helps, Rob.
  7. RobertP

    Notes and MSMQ

    Does anyone know a way of interfacing Notes with Microsoft Message Queue? I want to be able to put messages containing calendar information from Notes directly onto a queue. Thanks, Rob.
  8. RobertP

    Graphics Tablet

    Further to this, the relevant web addresses are: www.wacom.com & www.digitalworkshop.com Rob.
  9. RobertP

    Graphics Tablet

    In response to my own question, it seems that there are 3 real options. Digital Workshops, coincidentally a distributor of PSP offer a budget solution called E-Pen (serial only). Then there is Wacom who also offer a budget solution called the Graphire (USB) which is slightly more expensive but...
  10. RobertP

    Checking For Existing File

    You need to use the dir command. For example: dir(&quot;C:\Windows\system\sound.dll&quot;) would return &quot;sound.dll&quot; if it was found or &quot;&quot; if it wasn't. Hope this helps, Rob.
  11. RobertP

    ActiveX in InterDev..?

    Kent, Browse for the ocx, select it and it will appear under the ActiveX Controls tab NOT the design-time controls tab. Select it from this tab and the control should appear in the Toolbox (it does here, anyway!). Hope this helps, Rob.
  12. RobertP

    PSP filters?

    The best place to start your search (for anything PSP related) is the PSP Users Group site at http://pspusersgroup.com/ You can also just do a search on the internet. For example searching for +filters +&quot;Paint Shop Pro&quot; on Altavista returned over 8000 results, most of which were...
  13. RobertP

    Rediscovering lost colorizing settings

    Okay, I discovered this in PSP 7, so I'm not sure how much use it will be under an earlier version - you'll have to try it. It turns out that the Hue and Saturation colorize settings are specific to the target colour irrelevant of the source (in fact, they are merely an alternative to RGB)...
  14. RobertP

    Determining the type of control

    Subha, This should help. Not sure what you want to do with the info you get back, so I've displayed it in a messagebox. Dim i As Integer For i = 0 To Form1.Controls.Count - 1 MsgBox TypeName(Form1.Controls(i)) Next n.b. if you're looking for a particular type, you can use: if TypeOf...
  15. RobertP

    Load Controls in Frames at runtime

    By setting the container property. e.g. Set optTest(i).Container = fraTest(i) Hope this helps, Rob.
  16. RobertP

    How do i Open a recordset returned from DLL

    I first set the CursorLocation property: rs.CursorLocation = adUseClient and then when opening the recordset in DLL I use: rs.Open strSQL, cnn, adOpenStatic, adLockReadOnly, adCmdText i.e. with 3 extra options set to you. Remember that when you copy the DLLs recordset to a local one, it...
  17. RobertP

    Disconnecting

    It depends how your connection is set up. For example, if you are using ADO, you can simply do a Connection.Close whereas if you are using a Data control you use Data1.Connect = False Rob.
  18. RobertP

    Searching For Multiple Files using VB

    MyPath = &quot;c:\exchange\*smith*.pst&quot; MyName = Dir(MyPath) Do While MyName <> &quot;&quot; ' Start the loop. Debug.Print MyName ' Add to your list here MyName = Dir ' Get next entry. Loop Hope this helps, Rob.
  19. RobertP

    Graphics Tablet

    Can anyone recommend a graphics tablet for use with PSP? Thanks, Rob.
  20. RobertP

    How can you add color to a black and white photo?

    First you need to increase the color depth of the image: Colors Menu -> Increase Color Depth -> then choose an option. You should then be able to select colors. You can automatically add color to the picture by selecting Colors -> Colorize, or Colors -> Adjust -> Red/Green/Blue Hope this...

Part and Inventory Search

Back
Top