ulutanas
Altın Üye
- Katılım
- 8 Kasım 2008
- Mesajlar
- 582
- Excel Vers. ve Dili
- Excel Vers. ve Dili Ofis 2021 TR 32 Bit
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sheets("SİPARİŞ_TESLİM FORMU").Cells(FED, "Q").Value = TextBox17[COLOR=red].Text[/COLOR]
"#,##0.00.TL"
Range("A1") = Val(TextBox1)
Range("A1") = Cdbl(TextBox1)
Range("A1") = Ccur(TextBox1)
If Isnumeric(TextBox1) Then
If TextBox1 <>"" Then
Private Sub CommandButton2_Click()
Dim BUL As Range, Satır As Long
ListBox1.RowSource = ""
[COLOR=red] Set BUL = Sheets("SİPARİŞ_TESLİM FORMU").Range("A:A").Find(TextBox1.Value, , , xlWhole)
If Not BUL Is Nothing Then
Satır = BUL.Row
For i = 1 To 16
Sheets("SİPARİŞ_TESLİM FORMU").Cells(Satır, i).Value = Controls("textBox" & i).Text
Next
End If[/COLOR]
ListBox1.ColumnCount = 16
ListBox1.RowSource = "ÜRETİM_GİRİŞ_FORMU!A2:P" & Sheets("ÜRETİM_GİRİŞ_FORMU").Range("B65536").End(xlUp).Row
ListBox1.ColumnWidths = "30;45;50;138;55;55;50;50;50;50;50;50;50;50;55;130"
End Sub