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 TouchToneTommy 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. Bloobird

    Supressing Vertical Scrollbars on listbox

    Because it part of college coursework, and the person who set the coursework wants it done that way !
  2. Bloobird

    Supressing Vertical Scrollbars on listbox

    Hi - I have two listboxes next to each other and a combobox on a form. The combo box adds items to the list boxes, the value in the combobox being spilt between the 2 list boxes (i.e. The value 'John Smith - 34567' would be in the combo box, and would be spilt so that 'John Smith' goes into 1st...
  3. Bloobird

    Closing Form with CauseValidation = true

    Nouman, Thanks for that. It certainly works (The form now unloads), however the error message from the validation is still appearing - any idea how to prevent this ? Thanks Bloobird
  4. Bloobird

    Closing Form with CauseValidation = true

    Hi - I've just started using vb.net from vb6 - I have a form with a text box which I am not letting the user exit from unless a valid value is entered (By using the Validating event and having the CausesValidation property on all all other controls = true). However, I want the user to be able to...
  5. Bloobird

    Problem Using vbSendMail.dll

    Hi - I've got an App written in VB6 which automatically emails people when a user changes a record relating to them. A grid with the days of the week is held in a form, then clicking on one of these days bring up another form. If the details for the user change, an email is automatically sent...
  6. Bloobird

    Locking Records

    Hi - I have a form with a MSHFlexGrid, which holds a sequence of dates and other details - double clicking on a date brings up a new form, with details which can be amended for that date. The grid is not actually linked to a data source, just filled in initially from a ADODB.recordset. I want...
  7. Bloobird

    Very new to this VB stuff

    The code below is for a form with a drop down list (cmbPrinter) of all available printers, and a portrait/landscape radio set (OptOrientation) - Plus OK and Cancel buttons...see if you can get anything useful out of it... Private Sub cmdCancel_Click() Unload Me End Sub Private Sub...
  8. Bloobird

    Capture size of data in Datagrid

    Thanks guys, that seems to have done the trick ...!
  9. Bloobird

    Capture size of data in Datagrid

    Hi - I've tried the following code previously Private Sub DataGrid1_BeforeColUpdate(ByVal ColIndex As Integer, OldValue As Variant, Cancel As Integer) With DataGrid1 If Len(.Columns(.Col).Value) > 50 Then .Columns(.Col).Value = Left(.Columns(.Col).Value, 50) End...
  10. Bloobird

    Capture size of data in Datagrid

    Hi - I have a quick maintenance form using an Adodc and Datagrid. Basically, if I update the text in a grid, if it exceeds the size of the field in ther database, I get 'Multiple -step operation generated errors. Check each status value'. Is there a way I can either limit the datagrid to allow...
  11. Bloobird

    Changing button labels using Msgbox

    Hi - I want to pop-up a msgbox, but want to use something other than standard 'Yes/No/Cancel' or 'Abort/Retry/Cancel' buttons, for example, 'Yes/Yes to All/No to All' - can this be done by changing msgbox buttons, or will I have to create a new form ? Thanks
  12. Bloobird

    Writing to Log File from Reports in 11i Applications

    Hi - I want to output text from a Report, run through the concurrent manager in 11i Applications. I can get a message to appear using srw.message, hwoever, this is prefixed by a message number (e.g. MSG-00001 - This is the text). I want only the text to appear - does anyone know how this can be...
  13. Bloobird

    Writing to Log File From Oracle Report Concurrent Request in 11i

    Hi - Does anybody know how I can output to the log file generated from a concurrent request to run an Oracle Report, from within the Report. Basically, I run the report as a request, and when certain criteria happens within the report, I want to output to the Log file. I have read that...
  14. Bloobird

    Visual Basic for Mac

    Hi - I have an application written in VB 6 and using a SQL Server database. Someone has asked me if the application can be used on an Apple Mac - doesn't anybody know if this is feasible, or impossible ? Thanks
  15. Bloobird

    11i Oracle HRMS API's

    Hi - I'm trying to load some Application Utilities Lookup data (Such as lists of Nationalities and Absence Codes) - is this possible via an API or is there another method I should be using ? Thanks Bloobird
  16. Bloobird

    Deleting files over 15 days old

    Thanks Guys - Just what I was looking for !
  17. Bloobird

    Deleting files over 15 days old

    Hi - Is there any easy way of deleting files that are over 15 days old from the system ? If necessary, I can use the day the files were created as the extension - e.g. <filename>.20020520 Thanks
  18. Bloobird

    Dynamic Datacombo default to first item in list

    Hi, I have a datacombo created dynamically at run time from an ADO. I wish for the DataCombo to default to the first row in the list on entering a form - is there an easy way of doing this ? Thanks Bloo
  19. Bloobird

    Oracle Apps DBA

    Hi - I have to prepare some questions to test an Oracle Apps DBA by next week - Could anyone recommend a site that contains some example questions ? Or if anyone has some prepared and could email them to me, that would be great ... Thanks
  20. Bloobird

    Default Mail Client in Excel

    Hi - I use Lotus Notes for emailing - however, when in Excel I try to send an email, it defaults to Outlook Express - is it possible to override this, and tell it to use Notes instead ? Thanks

Part and Inventory Search

Back
Top