Question : Expand disk size in VMWare ESX 4 option is grayed out

Under the settings of some of my virtual machines, the provisioned size for the disks are grayed out so I can't make them bigger.  I have read other articles pertaining to this and:

There are no snapshots
The machine is powered down

Those are the only two solutions I can find.  I have seen where it is suggested to use the converter tool, but I'd rather not use that.  I used that before and it broke the licensing for the application that runs on the virtual machine and I had to get new keys.

Answer : Expand disk size in VMWare ESX 4 option is grayed out

<[cmbFindSatf]? It is blank> it can not be blank..

use this

Me.cmbFindSatf.RowSource = "select [001_New_tbl_MASTER_SATF].Fund, [001_New_tbl_MASTER_SATF].SATF_NO, [001_New_tbl_MASTER_SATF].SATF_AMT, [001_New_tbl_MASTER_SATF].SATF_Revision FROM 001_New_tbl_MASTER_SATF WHERE [001_New_tbl_MASTER_SATF].Fund = " & Me.cboFindFund & " ORDER BY [001_New_tbl_MASTER_SATF].SATF_NO;"

set the following properties of Combo cmbFindSatf

Column Count  4
Bound Column  1


then use this codes

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
Private Sub cmbFindSatf_AfterUpdate()

Dim rs As Object
    'Me.FilterOn = False
       
    Set rs = Me.Recordset.Clone

    rs.FindFirst "[SATF_NO] = " & Me![cmbFindSatf].Column(1)
    If Not rs.EOF Then Me.Bookmark = rs.Bookmark
    Me.Refresh
   
   
End Sub


' if the field [SATF_NO] is Text use this codes

Private Sub cmbFindSatf_AfterUpdate()

Dim rs As Object
    'Me.FilterOn = False
       
    Set rs = Me.Recordset.Clone

    rs.FindFirst "[SATF_NO] = '" & Me![cmbFindSatf].Column(1) & "'"
    If Not rs.EOF Then Me.Bookmark = rs.Bookmark
    Me.Refresh
   
   
End Sub
Random Solutions  
 
programming4us programming4us