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 Chriss Miller 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: Korach
  • Content: Threads
  • Order by date
  1. Korach

    How to get applications list

    I need to get the applications list as you see in the task manager. Processes list is not good enough since the application I want to look for run in IE shell, so its process name is "IEExec", not the real exe file name. Thanks
  2. Korach

    Bind a class to a datagrid

    Hi everyone, I have an arraylist contains some class instances. If I bind the list to a grid, the grid is showing some columns as the number of public properties in the class, and each object gets a row. I want that only some of the properties will be displayed in the grid. There are some...
  3. Korach

    Compare two databases

    Hi everyone, Do you know how to compare two databases? Do you know if there is a tool for that? I made many changes to my development database and I made these changes in the production database too. I now want to check if all tables, procedures, triggers etc. are the same in both databases...
  4. Korach

    Problem With XML Serialization

    I try to serialize a simpley array: Dim arr() As Integer = {1, 2, 3, 4} Dim tmpStream As New IO.FileStream("C:\str.xml", IO.FileMode.Create) tmpSerializer = New XmlSerializer(GetType(Integer())) tmpSerializer.Serialize(tmpStream, arr) arr =...
  5. Korach

    Problem with right to left menu in MDI form

    Hi everyone, When you create a MDI form, you can attach a main menu to the parent and to the child. When a child form is active, its menu is merged with the parent menu. The problem is: when the forms are right to left, after merging the menus the parent menu is displayed left to the child...
  6. Korach

    Photoshop hardware requirements

    Hi everyone, I need to buy a new PC and I want it to run photoshop well. What about this: MSI 915G intel chipset. Pentium 4 3.0GHz LGA775. Intel graphic media accelarator 900 on board, up to 224 MB. 512MB DDR400. 80GB HD s-ata 150. What should I improve to get better performance? 1. Faster...
  7. Korach

    S-ATA benchmark too low

    Hi Everyone, I have a Samsung 80GB S-ATA drive. I used HD Tach to benchmark it and I got a result of 66.6. In another same drive I got 120. The drive is new and the OS too. Nero also has a speed check and it says between 20000 to 30000. On the second drive I got 60000. I have an option to...
  8. Korach

    Accessing a module variable in a dll

    Hi everyone, If I have a class library project with a module in it with a public variable, I can use the variable in any class of the dll. Can I use this variable from my application that references the dll? Thanks
  9. Korach

    Can't click on "Send to" in office 2003

    Hi everyone, I have Office 2003 on Windows XP. I use mozilla for email. In the file menu in office applications you have the "Send To" sub menu. I saw that in excel I don't see it at all, in word I see it but I can't press on the "Mail recipient" because it is grayed. On Powerpoint I can press...
  10. Korach

    Virtual memory to big for a program

    Hi everyone, I have a program written in visual basic 6. It works on a lot of stations. Usually, this program consumes 30MB memory and the VM size according to the task manager is 20MB. However, in one station, the program consumes 80MB memory and the VM size is 300MB!!! The program runs very...
  11. Korach

    Image disapper in inherited form

    Hi everyone, I have three forms that inherits each other. On the parent form I have an image list. I use this image list to show images on toolbar buttons. I placed such toolbar in the child form and another in the child of the child form. If I open the forms in the designer, I see the images...
  12. Korach

    Control.IsDisposed not exist

    Hi everyone, I tried to use the property Form.IsDisposed that it inherits from Control class. According to msdn help there is such a property, look in: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformscontrolclassisdisposedtopic.asp If you...
  13. Korach

    Problem connect to access with ado.net

    Hi everyone, I want to build a simple asp.net page that saves the form data into an access database. I opened the database like this: this.db = new System.Data.OleDb.OleDbConnection(); this.db.ConnectionString = @"Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Registry Path=;Jet...
  14. Korach

    A big Problem with tab control

    Hi everyone, I tried to use the .NET tab control, but it caused many problems. I can't delete the controls I put on it, and I can't do anything from the format menu. Ell options are grayed!!! I also set the control to right to left, but it is still left to right. Thanks
  15. Korach

    Problem with folders sharing on LAN

    Hi everyone, I have a XP station in a LAN. My file system is NTFS. I want my friends on the LAN to see some folders, so I created an account that can't logon locally, but has rights to some folders. I set the rights in the NTFS security and in the sharing permissions. If a user is mapping a...
  16. Korach

    No connection to the internet - maybe dns error

    Hi everyone, I have a winxp station on a lan, and I connect to the internet via a proxy. I can't connect to the internet - "can't find server" error. nslookup is not working too. ping works, and remote desktop from outside to my computer works. DNS service is started, but I saw that...
  17. Korach

    How to cause the mouse wheel to scroll?

    I have a panel in my form where I paste pictures. The panel is autoscroll. To react to the mouse wheel wrote this: void PanelCtl_MouseWheel(object sender, System.Windows.Forms.MouseEventArgs e) { int numberOfTextLinesToMove = e.Delta * SystemInformation.MouseWheelScrollLines / 120; int...
  18. Korach

    Using Queue class for my own struct

    Hi, I want to set a queue of pixel coordinates. the struct is: struct point { public int x; public int y; public int basex; public int basey; }; if I use q.Enqueue(pnt) it works fine, but this line: pnt = q.Dequeue; make the compile error: "Cannot implicitly convert type 'object' to...
  19. Korach

    call c++ functions from c#

    hi, I have a class written in c++. My graphic interface is in c#. Is there any way to create an instance of this c++ class in my c# code, and use it's functions? Thanks
  20. Korach

    using new causes many memory problems

    Hi, I made a class for image processing. I use new operator a lot, and I have many memory exceptions. The new always fails in some point of the program, and Every time I change something in the code (with no concern to the new calls), the new fails in other new call. I think it is because all...

Part and Inventory Search

Back
Top