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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Goudarz

  1. Goudarz

    In VB.Net, Form loading is very slow ...

    Hello, Recently I upgarde my project from VB6 to VB.Net. It's a big application (more than 120 forms and ...) and it used ADO and SQL Server 2000. This application worked very good at VB6 but after upgrading, It runs awfully slow. A form took more than 6 seconds to draw it's objects. The speed...
  2. Goudarz

    XP Service Pack 2 and VB6 problems

    Hello, I wrote an application in VB6 which used SQL Server 2000 as database engine. after installing XP SP2 on clients. the program will crash in middle of working. I know there is no problem with SQL 2000 because I open the ports and I even add my application in windows firewall exception list...
  3. Goudarz

    Rectangle Placement Problem

    Dear Koala15, I know this problem is solved before, But there are complicated mathematic algorithms, which let us solve this problem in general mode. I mean, by inputing size of main rectangle and small rectnagles, computer compute best placement for this mode. And I looking for that alogorithm...
  4. Goudarz

    Rectangle Placement Problem

    Hi everyone, I'm looking for some source code (In VB) for rectangle placement problem, Please help me. Where can I find such a source code? For those who don't know what is "Rectangle placement problem": You have a bunch of rectangular pieces. You need to arrange them in a rectangular surface...
  5. Goudarz

    Combo box - displaying data not in list

    Another way is ItemData property. You can assign a numeric value to each row of combo by using ItemData property. And then use it in your code, For example you have combo1: Combo1.AddItem "Product 1" Combo1.ItemData(0) = 1200 Combo1.AddItem "Product 2" Combo1.ItemData(1) = 1500 ...
  6. Goudarz

    Does this issue solved in SP3a (SQL Server 2000)

    Maybe you think this question, is belong to SQL Server forum, But I did it with VB so ask it here!
  7. Goudarz

    Does this issue solved in SP3a (SQL Server 2000)

    Hi, I had a problem and I guess this bug solved in SP3a. My problem is: I have two table in SQL Server 2000 and they both have a key field which relate to each other through this field. I made a enforcement relationship between them. Every time I changed value of key field in Mail table, all...
  8. Goudarz

    Palm PDB Beaming How?

    Hello, Goto this address and download BeamPro. I think this is what you need: http://www.palmgear.com/index.cfm?fuseaction=software.showsoftware&SID=27F169C6-7E95-2C2B-73D3457C65581F13&PartnerREF=&prodID=11075
  9. Goudarz

    Is MSFlexgrid have bug?

    Thank you ArtieChoke, I have a grid that I fill it with some data and I want to remove one row from it. This grid worked fine for over a year. And this bug happend just one time. This grid is in a huge application and I think when system resource is very low, maybe grid don't functioning well...
  10. Goudarz

    MsgBox problem

    Simply replace your command with this one: reply = MsgBox("Do you want to open this eBay item in a new browser?", vbYesNo + vbQuestion, "eBay item number possible match") In other hand you must add vbQuestion in Buttons section.
  11. Goudarz

    How do I tell what button in a message box the user clicked?

    As JohnYingling told above you can simply check msgbox return value. For example: --------------- Dim ReturnAnswer As Integer ReturnAnswer = MsgBox("Are you sure?", vbYesNo, "Confirm") Select Case ReturnAnswer Case vbYes: ' Answer is Yes Case vbNo: ' Answer is No Case vbOK: '...
  12. Goudarz

    Is MSFlexgrid have bug?

    Let me ask my question in other way, Is it possible that a MSFlexGrid didn't responde to RemoveItem command in certain condition? Please help me.
  13. Goudarz

    Is MSFlexgrid have bug?

    Service pack 5 is installed on my Visual Basic
  14. Goudarz

    Is MSFlexgrid have bug?

    Hello, I write a big application which uses MSFlexgrid. Today I face a bug and after tracing it I reach to this point that MSFlexGrid have a bug that under some conditions, RemoveItem didn't work correctly. Am I right? Is anyone face this bug or I must find my bug in other place? Please help...

Part and Inventory Search

Back
Top