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: YanaD
  • Order by date
  1. YanaD

    Prevent pasting image into textbox

    I got this part. The other problem raised. When I copy from word doc the doc that contains not only text or only image, that contains both things at ones text and image at the same time, then the problem occures. When I debug my program it skips both statements: If...
  2. YanaD

    Prevent pasting image into textbox

    How to prevent pasting an image into textbox. I understand that i have to check a clipboard and if data is an image then give a msg box that user can not paste image to textbox. I need a full code.
  3. YanaD

    separate string into the groups

    I have a string like: Smith, M. John (Last name, MI. first name) I need to break this and place them into separate text boxes: Last Name into txtLastName, MI into txtMI and first name into txtfirstName. How can i do it?
  4. YanaD

    Copy data from one table to another within the same or different db

    I need to copy data from one table to another table within the same or different databases and within the same or different servers. My application written in vb6. My application connects to training db. User entering info, modifing info. After all done user has to click on export data button...
  5. YanaD

    Open Excel spredsheet in vb form, but not opening Excel Application

    you are the best, thanx a million
  6. YanaD

    Open Excel spredsheet in vb form, but not opening Excel Application

    Sorry, I need to display not only text from excel file, but it should look like excel sheet, meaning that I can't use list box, I need to diplay excel file without showing the excel application. If you will apply OLE and connect with any Excel file, this view I need to use looking like Excel...
  7. YanaD

    Open Excel spredsheet in vb form, but not opening Excel Application

    Yes, you are exactly right, I need to display text from excel file in the list box or something that has scroll bar, in order to scroll and view all data. thanx a lot in advance.
  8. YanaD

    Open Excel spredsheet in vb form, but not opening Excel Application

    no i don't need with webbrowser, I need something simple.
  9. YanaD

    Open Excel spredsheet in vb form, but not opening Excel Application

    I need to use something like OLE (but with scrolling bar) to view Excel file inside of VB application. I need exact syntax how to open Excel Sheet ( I have file already) and display it on a form without even opening an Excel application(i need only display the info in the file).
  10. YanaD

    perhibit user to see tables and db window

    I hide all tables already, and db window, but when i push a shift button on the keyboard i can still see tables and db. I have to set something up that no one can't access to the tables and db window. How should I do it?
  11. YanaD

    ShellExecute

    Can you please be more specific, if it's not hard for u, can you please provide entire code for this task. Thanx in advance
  12. YanaD

    ShellExecute

    I have one Main application where I have 3 different command buttons. Each command button has to open different executable applications, but the Main applic shouldn't be closed, it should remain on a screen. Also when user clicks on one of the command buttons it should open the appropriate...
  13. YanaD

    Figure out what the active form is

    I need to get a name of active form. Ex: I have 3 forms frmA, frmB, frmC. On both forms frmA and frmB I have a control txtText with some data. Let say first I have frmA open and when i click on command buttom, I need frmC to open and on load event i need to check what was the active form...
  14. YanaD

    FMSMemo control in VB application

    I have an application that has FMSMemo control for editing text, that is saves data in db as .rtf format. It is works great, but when I did a package, my user can see FMSMemo control as an Icon, I don't wont this I want then to see as simple text box and when user double click on fms text box...
  15. YanaD

    Convert simple text into .rtf format text

    Can you please tell me how to convert simple text that is saved in the table to .rtf format text. I have a form and a text box on it, when I call my recordset (ReferenceText as a field) should be displayed like rtf not like simple text. I know that I need to place not text box, but RTF text...
  16. YanaD

    Search a group of string in another group of string

    Yes, I found it myself, then it worked. Anyways thanx a million.
  17. YanaD

    Search a group of string in another group of string

    Dear, Chris! Thank you a million. I paste it into my programm, but the thing is that if its find the Searched string it goes to Else and write it down to the existing string, I can't solve it. But it splits the string, that what i was looking for. So if you will see why it goes to ELSE, please...
  18. YanaD

    Search a group of string in another group of string

    I need to search for a group of string in the other group of string, and if it's find it, don't write that search string into the other string. ex: MySearch = "05,02,07", SearchIn "02,04,05,08,07". So I need to search and see if 05 exists in 'SearchIn,if exists then don't...
  19. YanaD

    data combo

    It is perfectly working with simple combo box, but I am using DATACOMBO, which is not working with your codes. I tried to replace some codes from combobox to datacombo, but it is not working because plain combo box has different methods and properties than datacombo, that's why it is not...
  20. YanaD

    data combo

    I have a questiong about the data combo, how to set the ListWidth. I have data in the datacombo, but the data is long and when I click on drop down i can see the data, but some of the data is long and I can't see the whole think, so how to set the listwidth of the data combo.

Part and Inventory Search

Back
Top