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 John Tel 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 lydro

  1. lydro

    How to skip used mailing labels and print duplicates??

    In Crystal Reports 8.5, how can I to skip the used mailing labels and print duplicates?
  2. lydro

    Error in if statement

    thanks all your help..you guys just make my day more happy...^_^_^_^^_^.....
  3. lydro

    Error in if statement

    Jebenson, you are so awesome, you saved me..thank you very much...^_^....
  4. lydro

    Error in if statement

    earthandfire, your code is for vb 6, it doesn't work in vb.net. jonbatts, here is the msg: Specified argument was out of the range of valid values. Parameter name: Index 21 is out of range.
  5. lydro

    Error in if statement

    I'm trying to remove textbox controls, it gave me error..the error is in the if statement, but I dont' know why. the Panel1.Controls.Count = 42, and when it count to Panel1.Controls.Count(21), it said index 21 is out of range. any idea? Dim ctrl As Control Dim txtBox As TextBox...
  6. lydro

    how to build your own calendar in vb window forms?

    is it only have one license? if your project is using for more than 10 machines, do you need to buy more license for it? license issue is the most important things to this project..
  7. lydro

    how to build your own calendar in vb window forms?

    how can I modify the existing calander control? the first thing stoped me that when I want to increate the calander size, and it shows serval monthes in the one big size...
  8. lydro

    how to build your own calendar in vb window forms?

    I tried used to create 42 textboxes controls in groupbox. and the thing is I only can create for one month calendar, when I change the month, it doesn't work because the textboxes can't create again, I tried to remove the textbox and recreate again, the remove sub doen't work..it has been taking...
  9. lydro

    how to build your own calendar in vb window forms?

    is there any source for building a calendar like outlook calendar in vb.net, you can input a link or button in each date, and when you click it, it will open another window. any idea?
  10. lydro

    how to remove dynamic textboxes in VB.NET?

    all my textboxes are created in the groupbox1
  11. lydro

    how to remove dynamic textboxes in VB.NET?

    I used this Private Sub clearTextboxes() Dim ctrl As Control Dim txtBox As TextBox Dim i As Integer = 1 For Each ctrl In GroupBox1.Controls If ctrl.GetType().Equals(GetType(TextBox)) Then txtBox = CType(ctrl, Control)...
  12. lydro

    how to remove dynamic textboxes in VB.NET?

    I have 42 txtboxes, is it means I need to have 42 names for it? is there any way more easy?
  13. lydro

    how to remove dynamic textboxes in VB.NET?

    I created an array textboxes, the frist load is good, but when I reload it again, it won't work, and I know it has to be removed before load again, but I don't know how to remove it in dynamic textboxes, they don't have textbox.name. here is my create textbox code. Private Sub textboxShow()...
  14. lydro

    Mail Label

    I'm doing the mail label in crystal reports 8.5. there is only one page and 6 labels. I have 6 parameters for the 6 labels entityID, the query like this: Select name, address From company -- In the select expert Company.entityid is one of ?ID1, ?ID2, ?ID3, ?ID4, ?ID5, ?ID6..when I input values...
  15. lydro

    How to pass parameters between projects?

    I tried your code, but it returned nothing to the it, it should returns a value, could you please help me look at the code? In ProjectB public server as string = "testing" Public Class _myClass Private t As String Property test() As String Get Return t End...

Part and Inventory Search

Back
Top