Jumat, 28 Juni 2013

Re: [MS_AccessPros] Using BrowseTo

 

No thoughts?

With Warm Regards,

Arthur D. Lorenzini
IT System Manager
Cheyenne River Housing Authority
Wk.(605)964-4265  Ext. 130
Fax (605)964-1070
alorenzini@crhanetwork.org
"Only those who will risk going too far can possibly find out how far one can go."


________________________________
From: Art <dbalorenzini@yahoo.com>
To: MS_Access_Professionals@yahoogroups.com
Sent: Tuesday, June 25, 2013 3:23 PM
Subject: [MS_AccessPros] Using BrowseTo

 

I have a navigation form (Horizontal tabs) called MainMenuNew. Right now there is 2 navigationSuform called frmDashboard and frmUnitDsahboard.

On my frmDashboard I have a command button called cmdActiveUnitList in which I am trying trying to navigate to the frmUnitDashboard but I keep getting a path error in the BrowseTo macro in the command button.

Any ideas? I have uploaded the database to the needs assistance folder. just open it and open the MainMenuNew form and click on the Active Units button and you will see my error.

Thank you,

Art Lorenzini
Sioux Falls,SD

[Non-text portions of this message have been removed]

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (2)
.

__,_._,___

[belajar-access] Column ke row [1 Attachment]

 
[Attachment(s) from Afrizal included below]



dear  para master access
saya lagi bingung gmn cara merubah data dari bentuk column menjadi bentuk baris
mungkin para master access bisa bantu masalah saya

terima kasih

afrizal


__._,_.___

Attachment(s) from Afrizal

1 of 1 File(s)

Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___

[belajar-access] Re: Database Warga [1 Attachment]

 
[Attachment(s) from Afrizal Man included below]

dear kang haer n para master access
saya lagi bingung gmn cara merubah data dari bentuk column menjadi bentuk baris
mungkin para master access bisa bantu masalah saya

terima kasih

afrizal


2013/6/28 Haer Talib <haertalib@gmail.com>
Rekan-rekan Accessers...

Sebagai insan Access, tiada salahnya kita mencoba berkontribusi untuk masyarakat tempat tinggal kita dengan keahlian atau minat kita terhadap database.

Manfaatkan Program Database Warga (http://dbWarga.RumahAccess.com) untuk merekam data warga di tempat tinggal anda.

GRATIS!

Silahkan lihat dan download update yang terbaru. Sekarang sudah bisa mencetak berbagai daftar dan data warga.

Semoga bermanfaat!

(Sekarang sudah mendukung 18 desa/kelurahan, 18 kecamatan, 16 kabupaten/kota, di 8 propinsi).

--


Haer Talib

RumahAccess Indonesia
Tempatnya Belajar Microsoft Access
Artikel | Forum | Milis | Download | Training | Links | Blog | Event


--
You received this message because you are subscribed to the Google Groups "Belajar Access" group.
To unsubscribe from this group and stop receiving emails from it, send an email to belajar-access+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

__._,_.___

Attachment(s) from Afrizal Man

1 of 1 File(s)

Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (2)
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___

[belajar-access] Database Warga

 

Rekan-rekan Accessers...


Sebagai insan Access, tiada salahnya kita mencoba berkontribusi untuk masyarakat tempat tinggal kita dengan keahlian atau minat kita terhadap database.

Manfaatkan Program Database Warga (http://dbWarga.RumahAccess.com) untuk merekam data warga di tempat tinggal anda.

GRATIS!

Silahkan lihat dan download update yang terbaru. Sekarang sudah bisa mencetak berbagai daftar dan data warga.

Semoga bermanfaat!

(Sekarang sudah mendukung 18 desa/kelurahan, 18 kecamatan, 16 kabupaten/kota, di 8 propinsi).

--


Haer Talib

RumahAccess Indonesia
Tempatnya Belajar Microsoft Access
Artikel | Forum | Milis | Download | Training | Links | Blog | Event


__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___

Kamis, 27 Juni 2013

RE: [MS_AccessPros] Error 3061 Too few parameters

 

Doyce-

You cannot put a parameter in SQL that you plan to Execute. You can,
however, do direct substitution, like this:

strSQL = "UPDATE VinMaster SET VinMaster.CustPONo = " &
[Forms]![frmAddInvoiceDetail]![txtCustPO] & ", " & _
"VinMaster.Mat_Labor = '" &
[Forms]![frmAddInvoiceDetail]![txtMatAndLabor] & "', " & _
"VinMaster.FET = '" & [Forms]![frmAddInvoiceDetail]![txtFET] & "', "
& _
"VinMaster.Freight = '" & [Forms]![frmAddInvoiceDetail]![txtDelChg]
& "', " & _
"VinMaster.BOM = '" & [Forms]![frmAddInvoiceDetail]![cboBOM] & "' "
& _
"WHERE (((VinMaster.[Cust ID])= " &
[Forms]![frmAddInvoiceDetail]![cboCustomer] & ") " & _
"AND ((VinMaster.[Unit #]) Between " &
[Forms]![frmAddInvoiceDetail]![cboStartNo] & " " & _
"And " & [Forms]![frmAddInvoiceDetail]![cboEndNo] & "));"

What I've done is supply the values directly in the SQL by resolving the
control references in code BEFORE I pass it to the SQL parser. I've made
some assumptions as to which fields might be number and which might be text.
You may have to alter the insertion of ' characters accordingly.

John Viescas, Author
Microsoft Access 2010 Inside Out
Microsoft Access 2007 Inside Out
Microsoft Access 2003 Inside Out
Building Microsoft Access Applications
SQL Queries for Mere Mortals
http://www.viescas.com/
(Paris, France)

-----Original Message-----
From: MS_Access_Professionals@yahoogroups.com
[mailto:MS_Access_Professionals@yahoogroups.com] On Behalf Of dnwinberry
Sent: Thursday, June 27, 2013 9:10 PM
To: MS_Access_Professionals@yahoogroups.com
Subject: [MS_AccessPros] Error 3061 Too few parameters

I need some help with this error. I'm trying to update some records in a
table using a button on a form and using controls on the form for parameters
and data to update the records with. This form is unbound. Here is my code:

Dim db As Database, strSQL As String
Set db = CurrentDb
strSQL = "UPDATE VinMaster SET VinMaster.CustPONo =
[Forms]![frmAddInvoiceDetail]![txtCustPO], " & _
"VinMaster.Mat_Labor =
[Forms]![frmAddInvoiceDetail]![txtMatAndLabor], " & _
"VinMaster.FET = [Forms]![frmAddInvoiceDetail]![txtFET], " & _
"VinMaster.Freight = [Forms]![frmAddInvoiceDetail]![txtDelChg], " &
_
"VinMaster.BOM = [Forms]![frmAddInvoiceDetail]![cboBOM] " & _
"WHERE (((VinMaster.[Cust
ID])=[Forms]![frmAddInvoiceDetail]![cboCustomer]) " & _
"AND ((VinMaster.[Unit #]) Between
[Forms]![frmAddInvoiceDetail]![cboStartNo] " & _
"And [Forms]![frmAddInvoiceDetail]![cboEndNo]));"
db.Execute strSQL, dbFailOnError
'Debug.Print strSQL
Set db = Nothing

I get Error 3061 Too few parameters expected 8.

Thanks for any help.
Doyce

------------------------------------

Yahoo! Groups Links

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (3)
.

__,_._,___

[belajar-access] Acces xml ribbon right align

 

Dear Rekans
 
Adakah yang tahu xml code, supaya ribbon access tab and group rata kanan
karena yang saya baca dan rasakan sendiri, user lebih dekat mengakses ribbon di kanan dari pada ke kiri
terutama jika menu-nya sedikit
 
 
terima kasih
azkia
 

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___

Re: Bls: [belajar-access] sharing ttg aplikasi surat jalan

 

mohon penjelasan jika
"C:\Documents and Settings\Yanto\My Documents\Downloads\Compressed\SiSuJa\SiSuJa\data unk import.xls"
ini kan berarti file excelnya kita letakkan di folder tersebut, mohon bantuan bagaimana jika perlu mengarahkan ke folder tertentu dulu yang berisi file excel(misalkan kita buat sebuah form untuk menentukan folder tujuan) terima kasih

best regards

hdi s

--- In belajar-access@yahoogroups.com, "Muhamad Safei" <safeimuhamad@...> wrote:
>
> Ya mas..sebtulnya menu import itu dibuat uk menghindari proses pada menu buat surat jalan.nenu buat surat jalAn hanya digunakan uk edite data ktka ada kesalahan data dari import.jadi ceritanya gni mas,kta sudah pnya progran uk bikin surat jalan.dr program tersebut bisa export data ke excel dn menampilkan field dan data sprti yg sy krmkn pd athacment.nah sedangkhn program sisuja ini uk rekanan yg memasrkn produk dari perusHaan kita,mereka tidak mau iNput satu persatu.inginya data yang dri perushaan kita lgsung bisa diimport,dan mereka hny tinggal cetak surat jalan aja..krn datanya sama saja.permasalahannya apakah bisa kita menampilkan data keterangan barang dengan hanya import kode barang,tanpa harus proses pada combo lis pada form menu surat jalan??
>
> Ok thnks..msh semangat mas..
> Sent from my BlackBerry®
> powered by Sinyal Kuat INDOSAT
>
> -----Original Message-----
> From: Sumiyanto Surabaya <sumiyanto@...>
> Sender: belajar-access@yahoogroups.com
> Date: Fri, 30 Nov 2012 18:03:54
> To: <belajar-access@yahoogroups.com>
> Reply-To: belajar-access@yahoogroups.com
> Subject: RE: Bls: [belajar-access] sharing ttg aplikasi surat jalan
>
> Bisa saja mas dilengkapi sambil jalan pada form buat surat jalan, kan di sana ada combo box untuk pilihan. takutnya data yang ada hubungan nya dengan data master di excel nanti tidak konsisten. silakan di coba dahulu. Nanti kirim kemari lagi hasilnya.
>
>
>
> Biasanya sih yang kami lakukan kolaborasi dengan data excel, hanya pertama kali insert data master barang. Karena biasanya data ini ribuan item dan jika di entry manual membutuhkan waktu yang sangat lama. Sehingga jika mau implementasi suatu aplikasi bisa mempersingkat waktu. Tetapi jika memasuki entry transaksi ya harus menjalankannya melalui aplikasi. Tidak di by pass melalui insert by query. Demikian masih semangat kan.
>
>
>
> Salam,
>
>
>
> Sumiyanto Surabaya
>
>
>
> <http://cakyanto.wordpress.com/> http://cakyanto.wordpress.com/
>
> <http://mugi.or.id/blogs/sumiyanto/> http://mugi.or.id/blogs/sumiyanto/
>
> From: belajar-access@yahoogroups.com [mailto:belajar-access@yahoogroups.com] On Behalf Of Muhamad Safei
> Sent: Friday, November 30, 2012 3:25 PM
> To: belajar-access@yahoogroups.com
> Subject: Bls: Bls: [belajar-access] sharing ttg aplikasi surat jalan
>
>
>
> harus persis sama ya mas?? kl kita buat fieldnya sama tapi bbrpa datanya dikosongkan bisa tidakk ya.misalnya kita hanya mengisi kpdIdnya saja atau kodebarangnya saja..sementara filed kepada1-kepada4 kita ambil dari tabel master,begitu juga untuk kode barang... bisa tidak ya??
>
>
>
>
>
> Thnks atas jawabannya...
>
>
>
>
>
> _____
>
> Dari: Sumiyanto Surabaya <sumiyanto@...>
> Kepada: belajar-access@yahoogroups.com
> Dikirim: Jumat, 30 November 2012 6:53
> Judul: RE: Bls: [belajar-access] sharing ttg aplikasi surat jalan
>
>
>
>
>
>
>
>
>
>
>
> Lengkap mungkin tidak bisa mas, karena field table hasil import excel tidak sama persis seperti table TblRptCetakSuratJalan seperti gambar diatas
>
>
>
>
>
> Ini query append yang bisa dilakukan;
>
>
>
> INSERT INTO tblRptCetakSuratJalan ( Tgl, NoPol, sopir, DONo, PONo, SONo, Banyaknya )
>
> SELECT NamaTabel.Tanggal, NamaTabel.NoPol, NamaTabel.Supir, NamaTabel.NoDo, NamaTabel.NoPo, NamaTabel.NoSo, NamaTabel.Qty
>
> FROM NamaTabel;
>
>
>
> Mungkin hasil query ini solusinya bisa di edit/dilengkapi pada form buat surat jalan, atau menambahkan data pada excel nya, sehingga pada saat di import ke table baru dan di insert akan sesuai.
>
>
>
> Salam jabat erat selalu dan semoga memberi semangat, meminjam salamnya bang Edy dan cak Hariyanto
>
>
>
> Sumiyanto Surabaya
>
>
>
> http://cakyanto.wordpress.com/
>
> http://mugi.or.id/blogs/sumiyanto/
>
>
>
>
>
>
>
>
>
>
>
> From: belajar-access@yahoogroups.com [mailto:belajar-access@yahoogroups.com] On Behalf Of Muhamad Safei
> Sent: Thursday, November 29, 2012 10:09 AM
> To: belajar-access@yahoogroups.com
> Subject: Re: Bls: [belajar-access] sharing ttg aplikasi surat jalan
>
>
>
>
>
> Insert ke TblRptCetakSuratJalan pak.bagaimana cra insert update ketabelnya.dan apakah bisa data yg ditampilkan pada tblrptcetaksuratjalan lengkap seprti data sebelumnya??krn tbl trsbt menJadi source uk cetak surat jalan..
>
> Sent from my BlackBerry®
> powered by Sinyal Kuat INDOSAT
>
> _____
>
> From: Sumiyanto Surabaya <sumiyanto@...>
>
> Sender: belajar-access@yahoogroups.com
>
> Date: Wed, 28 Nov 2012 16:35:42 -0800 (PST)
>
> To: belajar-access@yahoogroups.com<belajar-access@yahoogroups.com>
>
> ReplyTo: belajar-access@yahoogroups.com
>
> Subject: Re: Bls: [belajar-access] sharing ttg aplikasi surat jalan
>
>
>
>
>
> Function tersebut hanya meng-import data dari excel, jadi hanya membuat table baru. jadi belum di jadikan sumber data object manapun. nah mungkin bapak bisa menjelaskan, setelah terbentuk table baru ini, mau di insertkan ke table mana.
>
> di sana kan ada tblTrSuratJalan, dan tblRptCetakSuratJalan. baru nanti kita buat query insert/update.
>
>
>
>
>
> Thank you | Terima Kasih | Matur Suksema
>
> Sumiyanto
>
> http://cakyanto.wordpress.com/
> http://mugi.or.id/blogs/sumiyanto/
>
>
>
> _____
>
> From: Muhamad Safei <safeimuhamad@...>
> To: "belajar-access@yahoogroups.com" <belajar-access@yahoogroups.com>
> Sent: Wednesday, 28 November 2012 2:33 PM
> Subject: Bls: [belajar-access] sharing ttg aplikasi surat jalan
>
>
>
>
>
> Apakah perlu ada perubahan pada tabel databasenya??
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> _____
>
> Dari: Sumiyanto Surabaya <sumiyanto@...>
> Kepada: belajar-access@yahoogroups.com
> Dikirim: Rabu, 28 November 2012 9:14
> Judul: RE: [belajar-access] sharing ttg aplikasi surat jalan
>
>
>
>
>
> Karena menggunakan access 2003, bisa di save as data excelnya ke 2003 juga (data unk import.xls) kemudian jalankan prosedur import data excel sbb;
>
>
>
> Private Sub Command3_Click()
>
>
>
> ‘sesuaikan nama table dan lokasi path data excelnya
>
> DoCmd.TransferSpreadsheet acImport, _
>
> acSpreadsheetTypeExcel8, _
>
> "NamaTabel", _
>
> "C:\Documents and Settings\Yanto\My Documents\Downloads\Compressed\SiSuJa\SiSuJa\data unk import.xls", _
>
> True
>
>
>
> MsgBox "import DATA excel finish", _
>
> vbOKOnly, "Import"
>
>
>
> End Sub
>
>
>
>
>
> Salam,
>
>
>
> Sumiyanto Surabaya
>
>
>
> http://cakyanto.wordpress.com/
>
> http://mugi.or.id/blogs/sumiyanto/
>
>
>
>
>
>
>
> From: belajar-access@yahoogroups.com [mailto:belajar-access@yahoogroups.com] On Behalf Of Muhamad Safei
> Sent: Tuesday, November 27, 2012 9:44 AM
> To: belajar-access@yahoogroups.com
> Subject: [belajar-access] sharing ttg aplikasi surat jalan [1 Attachment]
>
>
>
>
>
> [ <http://id.mg61.mail.yahoo.com/neo/#TopText> Attachment(s) from Muhamad Safei included below]
>
> slamt pagi semuanya..saya ada aplikasi surat jalan..saya akan menambahkan menu untuk import untuk memasukan data agar bisa langsung dari excel,tanpa input satu2...mohon masukannya...langkah2 apa saja yang mesti saya lakukan...thnks...file terlampir...
>

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (11)
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___