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

    REUSE OF DATACOMBO SLOWS DOWN APP PERFORMANCE

    Hello, I have a DataCombo that displays products names. Such as follows: With cmbProduct 'Set .DataSource = Adodc5 .DataField = "ProductID" .BoundColumn = "ProductID" Set .RowSource = Adodc4 .ListField = "ProductName"DataCombo. End With After...
  2. Judai

    CREATE AN EXCEL CHART THROUGH A RECORDSET

    Hello, I would like to create an Excel chart from Visual basic using an ADO Recordset. I have found the Microsoft Graph 2000 Chart on the Components - Insertable Objects, is it any good? how do I manipulate the excel sheet that gives the information to the chart so it will show what I need...
  3. Judai

    DATACOMBO WON'T REFILL

    Hello, I need to clear my DATACOMBO from its old values after another DATACOMBO has changed AND fill it with new values. I requery the adodc, bind the DATACOMBO's RowSource 2 it, & Refill in the same sub. I wrote cmbXXX.Refill which I think is suppose to do the work but it doesn't. Any Ideas...
  4. Judai

    Right-To-Left Alignment PROBLEM With XP

    Hello 2 u all, I have an MDI form with a toolbar & menu, they are in Hebrew so they are aligned to the right. The MDI Form alignment is RightToLeft=True. When I install it on A Windows XP Hebrew (Hebrew is written right to left), it aligns the menu to the Left instead of to the right. Does...
  5. Judai

    HOW TO GET ALL PROPERTY VALUES

    Thanks, That did help, but I am not new 2 any of the mentioned above.... JUST THOUGHT THERE MIGHT B A SMARTER WAY OF DOING IT>>>>>>>>>>> J.
  6. Judai

    HOW TO GET ALL PROPERTY VALUES

    Hello, How R U B&Gs? I'd like to get all the values of a certain property, into a combobox. Does anyone know how 2 do it? Lets say: all of 'Text1.ScrollBars' values into a different combobox, so that when the combobox changes, the ScrollBars value of Text1 will change. Thanks. Jud-I.
  7. Judai

    CREATE A FORM WITH A VScrollBar

    zemp, guess U R right. Anyways, just found out that the scrollbars add automatically when the form is 2 big within am MDIForm.Just for the knowledge, is there a regular VB form that adds scrollbars 2 it self automatically 2 (just like the MDIForm does)? Thanks, Jud.
  8. Judai

    CREATE A FORM WITH A VScrollBar

    rdavis, so I can put a pictureBox on an MDIform, put a vScroll in it & it will control the size of the MDIChild?! How do I control/scroll an MDIChild if, for instance, the grid is 2 big 2 fit in the form? Or, better yet, how can I control/scroll anything inside an MDIForm? Or, how can I...
  9. Judai

    HOW TO CLOSE ALL FORMS IN MDIform

    Hey guys, Carlos has the right answer. Thank U all 4 the time & patients. Special thanks 2 Carlos...!!!
  10. Judai

    HOW TO CLOSE ALL FORMS IN MDIform

    This is more or less how it looks: Dim recept as Integer Public Sub cmd_Options_Click(Index As Integer) recept = Activate_Cmd_Menu(A_group, Index) End Sub ============================================== Function Activate_Cmd_Menu(Group, Index) Dim f As Form For Each f In Forms If f.MDIChild...
  11. Judai

    HOW TO CLOSE ALL FORMS IN MDIform

    johnwm, Well, this is the full description of the problem: Function Activate_Cmd_Menu(Group, Index) =============================== Dim iFormCount As Integer For iFormCount = Forms.Count - 1 To 0 Step -1 Unload Forms(iFormCount) Next iFormCount =============================== Select Case...
  12. Judai

    HOW TO CLOSE ALL FORMS IN MDIform

    johnwm, Still the same error message, Please notice this is a Func().
  13. Judai

    HOW TO CLOSE ALL FORMS IN MDIform

    Hey U all, How can I close all the forms I have running within an MDIForm. Is there a definition to an MDIChild form object? Thanks, J.
  14. Judai

    DATAGRID REFRESH VALUE

    Hello, I run a datagrid on a form, perform the following actions: Private Sub Command1_Click() With DataGrid .ReBind .Refresh End With MsgBox "Datagrid value is " & DataGrid End Sub What I get is the first item on the first column of the datagrid (column(0)), Which is...
  15. Judai

    HOW DO I RIGHT JUSTIFY MSGBOXs TEXT

    johnwm, Thanks. Where can I find ready made code 4 such a control? Judai.
  16. Judai

    HOW DO I RIGHT JUSTIFY MSGBOXs TEXT

    Hello, I'd like 2 right justify the built-in msgbox's text. Does anybody know the way? Thanks.
  17. Judai

    CREATE A FORM WITH A VScrollBar

    Hello everyone, I'd like 2 create a from with a vertical scrollBar that controls the form if its contents is too long, like when containing a datagrid. Does anyone have a code example I can learn from? do U know how its done? Thanks.
  18. Judai

    AUTORUN.INF 4 CD RUNNING *.AVI

    ON second thought... OR MAYBE I SHOULD USE THIS AUTORUN] LOAD=The Count Of Monte Cristo (1-2).avi ????
  19. Judai

    AUTORUN.INF 4 CD RUNNING *.AVI

    Hello, I'd like 2 create a CD automatically running an-AVI. Would: File name: Autorun.inf Contents: [AUTORUN] OPEN=C:\Program Files\Windows Media Player\wmplayer.exe AVIFILENAME.avi DO? Thanks Alot.
  20. Judai

    LAN CONNECTION SHARING

    Thanks alot guys, I'll give it a try...& let U guys know how it went. J.

Part and Inventory Search

Back
Top