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: *

  • Users: YL99
  • Order by date
  1. YL99

    Cyrstal Report Font Help required urgent !!!

    Hello, I am using VB6 and Crystal to view and print my report. I've designed the report in a particular font. When I'm printing it from Crystal viewer it's not defaulting to my chosen font. If I printer a word document with that font it prints ok on the desired printer. Your help would be...
  2. YL99

    Tab delimiter text file using Split() function Help !!! URGENT

    Thanks for all your help. Found another way of doing it and it works.
  3. YL99

    Tab delimiter text file using Split() function Help !!! URGENT

    Hello, I've a tab delimiter text file which I'm using split() function, but the split function isn't recognising the tab delimiter. I'm using the systemfileobject TextStream to read line by line. However, if I try a string with tab delimiter the split() function recongises the tab. I'm using...
  4. YL99

    declaring constants

    One good solution would be 2 change the caption of your button this way the user is clear of what's next action would be. Private Sub Button1_Click() With button1 If (.Caption = "&Save") Then If (AddedNewRecordSuccess) Then .Caption = "&Add Record"...
  5. YL99

    recordsets AND arrays

    It would be better if you use a disconnected recordset. U can use apply further filter on the disconnected recordset and pass it to whatever methods as parameter. Also u can clone the recordset. I find it more flexible.
  6. YL99

    VB6 Designer problem

    U can open the vbp in notepad and check the Crystal version number. If I'm not mistaken the version you will see in yours will be either 5.2 or above. Subtract 0.1 from the decimal (ie 5.2 will be 5.1). This will fix your problem
  7. YL99

    AutoFill comboBox issue. Please Help!

    Well try this by using the window API Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Integer, ByVal lParam As Any) As Long Const LB_FINDSTRING = &H18F List1.ListIndex = SendMessage(List1.hwnd, LB_FINDSTRING, -1...
  8. YL99

    Adding a commad button in FlexGrid

    Hello, Can someone help me with flexgrid please. I want to display a button in each row of a selected colum. Does anybody know how do this. Your help would be much appreciated.
  9. YL99

    Printer

    Hi, PRINT CHECK I want to perform a check before printing to ensure that the printer is (online/connected).Does anybody know how do to this ?? Second : Once I've sent a page for printing is there anyway of knowning whether it has been printed. This would allow to update the number of pages...
  10. YL99

    XML - Populating values from Class

    Hello, I have an xml file that holds client Details. <Client> <Surname>ClsClient.Surname</Surname> <FirstName>ClsClient.FirstName</FirstName> .... .... .... </Client> Can someone tell me how I can load those values once I have loaded my Client Class. Your help would be much...
  11. YL99

    IsDate function !!!

    Thank you. Is there a function I can use to check if it's a valid date ?
  12. YL99

    IsDate function !!!

    Hi, I've three textboxes and their values are appended to a string variable and then a check is performed by IsDate function DDText1 = 10 , MMtext2 = 12 ,YYtext3 = 1900 strMydate = DDText1 & &quot;/&quot; & MMtext2 & &quot;/&quot; & YYtext3 IsDate(strMydate) When the value of MMtext2 is...
  13. YL99

    MS Word Application !

    Hi, I've embedded MS Word in my form, but when it activates, the menu bar of MS Word appears on the top of the form. Is there a way to prevent this and have all the full functionalities of word ?? Your help would be appreciated. Thanks
  14. YL99

    Delete Tab From SSTAB VB6

    DONE
  15. YL99

    Delete Tab From SSTAB VB6

    Hi, Does anybody know how to delete a tab from SSTAB I the form has SSTAB ( which has displays 3 tab in first row) I want to delete one of the tab Your help would be much appreciated
  16. YL99

    How to Disable PopUpMenu and Ctrl + V in a textbox

    Hello, I want to disable popupmenu and ctrl + V(paste )in a textbox. I would be grateful for you help. Many thanks in advance.
  17. YL99

    Escape Key

    Hi, Is there an event that u can use to check if the EscapeKey is pressed. I've tried the form_Keypress but doesn't execute this event, instead it perform the cancel button procedure
  18. YL99

    Escape Key

    Hi, When pressing the EscapeKey I want it to execute the Cancel button Click Event. I have set the KeyPreview for the form to true and catch the Escape Key in the Form_KeyPress Event. But doesn't seem to call the Cancel button procedure Your help will be much appreciated.
  19. YL99

    Create PopUp Menu dynamically

    Hi, Does anybody know how to create PopUp menu dynamically, rather than creating it at design time. Your help would be much appreciated. Thanks
  20. YL99

    Treeview display !!!

    Hi, I would like to design in VB6 a display (Summary Dialog) similar to one that microsoft displays when you choose properties of a word document from windows explorer. I have designed the treeview, but it doesn't allow to add value like the one in the Summary Dialog. Has anyone come across a...

Part and Inventory Search

Back
Top