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

    Move a minimized mdi child form

    Solved. Just set to the mdiparent Form DockPadding.Left=Width of the Treeview. With that way it is not neccesary to move the minimized form it is minimized automatically in the point that you want
  2. vtops

    Public forms all over the project

    Dear All, I have an mdi parent form with two chilldren. In the MDI parent form i have declare the chilldren like that: public static Form2 frm2=new Form2(); public static Form1 frm1=new Form1(); and this is the Mdi Parent Form: public static Parent frmparent =new Parent(); Now I am calling...
  3. vtops

    Move a minimized mdi child form

    Dear ALL, I have an application with a mdi parent and two mdi chilldrens. In the left side of the mdi parent i have also a treeview which it has the same height as the mdi parent. Now When i call an mdi child from the mdi parent and i want to minimize it then it is minimized behind the...
  4. vtops

    Auto Delete Public Static Declaration

    Yes I have declared some textboxes and some checkboxes as public static in order to control them from another form. But if i do any modification on the form which contains the public static objects (it doesn't matter if the modifications are on the specific objects or to other objects then...
  5. vtops

    Auto Delete Public Static Declaration

    Dear All, I am facing the following problem and i don't know if it's a bug or it's just an adjustment. I am using Visual Studio .Net 2003. If on a form i have declare some objects as public static and do some modification on the objects of this form (move objects,delete objects,insert new...
  6. vtops

    HANDLING OLE Objects

    Hi chrissie1, I want to simulate an interface like that of OLE object in VB 6.0. But i don't know if it is possible in .Net. Thanks for your interesting and for your help.
  7. vtops

    HANDLING OLE Objects

    Dear all, Does anyone have any sample code on how can i handle OLE objects in VB.Net. In VB 6.0 there is the OLE object under the VB Library that you can handle any type of OLE object. I have import the file stdole.tlb which exists under Windows\System32 but i don't know how will i handle...
  8. vtops

    OLE Automation

    I think that i found something, i must import the file VB6.OLB into the references of my project and with that way, i will have access on VB.OLE class. in c#.net the importation is not possible while i am trying to do it ,i have the following error message: A reference c:\program files\visual...
  9. vtops

    OLE Automation

    Dear chiph, I have imported from to the .net com interop the OLE Automation Component but i don't know how will i use it under C#. in VB 6.0 there is an object when you drop it on the form automatically opens an interface on how you will you handle your OLE object. How can i diplay that...
  10. vtops

    OLE Automation

    Dear all, Have anyone sample code on how can i handle OLE objects in C#? I have imported the stdole.dll from Visual Studio 6.0 in the references of my project but i can't understand how can i use it. Thanks a lot everybody
  11. vtops

    Can Ot Compile RTF Format Of Pictures

    Dear all, I am facing a problem on crystal reports .net 2003 and i don't know how can i fix it. I have some fields on sql database Text type. in there they are included RTF Format. The problem is the following: I am putting that fields to my report and i am chossing RTF intepreting from the...
  12. vtops

    Receving Email With CDO

    Dear all, Is it possible to receive email from an application with CDO Library? I have wrote a code to send and it is working perfect but i can't find how will i receive email. Also i try to do the receiving with MAPI SESSIONS but under windows xp or 2000 always it is appearing an...
  13. vtops

    Retrieve the reply codes of undelivered emails using VB6/Exchange

    Hi, I'm using Visual Basic 6 and I'm trying to read undelivered messages from a Microsoft Exchange 2000 server. I have used MAPI, however when I read an undelivered email, I don't know where I can find the reply code, e.g. 515, 504 etc., in order to identify why the specific mail...
  14. vtops

    Make A textBox Accept specific Characters from Keyboard

    Thank you everybody! It is exactly that i was needing Best Regards
  15. vtops

    Make A textBox Accept specific Characters from Keyboard

    Dear All, How can i make a textbox accept specific characters from keyboard. While the user press a key i want to check the key. If the key is not that the system was expected do not appear it on the textbox. For example i would like a textbox accept only numbers. But if i press any other...
  16. vtops

    Compressing String

    Dear All, Is there any way to compress\decompress data? I want to save RTF of richtextboxes into sql database. the Rtf which i have are over than 300000 characters and the sql Server can't support this size. It is very important also to decompress the data have been saved in order to show it...
  17. vtops

    Store Big Rtf

    Dear All, I have an application which it exports many kinds of rtf formats (images,excel sheets,word documents etc). My Problem is that i don't know how can i save it on a table of sql database. I tried with Image and varbinary type, but i have always the error message: Operand type clash...
  18. vtops

    Load a form over all application

    Dear All, I have an application which is one mdi form and it has 200 mdi children forms. I want to add a new form which shouldn't not be mdi child and when it is loading i want to be over all windows even and from other application. For Example If i am working on Excel Word etc. I try with...
  19. vtops

    Newable On Trigger

    Thank you vongrunt It is exactly that i was needing Best Regards
  20. vtops

    Newable On Trigger

    Dear All, I have made this trigger create trigger test on mixanaki after update as if update (flag1) update mixanaki set flag2=flag1 where mixanaki.[id]=(select [id] from inserted) My Problem Are the following: 1. If i try to update more than one rows on table mixanaki the trigger doesn't...

Part and Inventory Search

Back
Top