Jumat, 01 Februari 2013

RE: [MS_AccessPros] A Thank You to a great contributor

 

Jim, you made me recall a Project I was working on... I was trying to do something that I had already spent two days trying to accomplish. I was about to give up and call the Client when I went to look in A.D.'s databases in Rogers' Library. Low and behold, A.D. had a database that *almost* did what I wanted. It was just the push I needed to get what I needed done... done. I wish I had a chance to thank him personally but this will have to do... Big THANK YOU!

Geez, I'm going to miss him!

Gina Whipp
Microsoft MVP (Access)

From: MS_Access_Professionals@yahoogroups.com [mailto:MS_Access_Professionals@yahoogroups.com] On Behalf Of Jim Wagner
Sent: Friday, February 01, 2013 9:05 AM
To: MS_Access_Professionals@yahoogroups.com
Subject: Re: [MS_AccessPros] A Thank You to a great contributor

The true measure of a teacher is the progress made by their students. I am a better developer because of the knowledge imparted by A.D.

Thank You A.D.

Jim Wagner
________________________________

________________________________
From: Bill Mosca wrmosca@comcast.net >
To: MS_Access_Pros MS_Access_Professionals@yahoogroups.com >
Cc: Arjun Dev Tejpal adtejpal@gmail.com >
Sent: Thursday, January 31, 2013 7:57 PM
Subject: [MS_AccessPros] A Thank You to a great contributor

Hello all

I'd like to announce that A..D .Tejpal has retired due to personal reasons. I
have not done so earlier because I wanted to give him some space.

We all owe him a deep gratitude for his unique, innovative approach to Access
and an untiring dedication to our group. We hope he stops in from time to time
to offer his insights, but we also respect his wishes to channel his energy into
other areas of life.

I, for one, will miss my friend's invaluable knowledge of the beast we call
"Access".

Regards,

Bill

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

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

[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 (7)
Recent Activity:
.

__,_._,___

[MS_AccessPros] Re: Import Excel Spreadsheet into Access 2003 table

 

Thanks for your help on this issue. I'm not sure what all your code is doing Jeff.

I think I will look into what John V said, however, people are always finding ways to bypass any error checking.

John F.

--- In MS_Access_Professionals@yahoogroups.com, Jeff Jones wrote:
>
> Another possibility could be to scrub or validate the data prior to adding it to a table. Here's an example of some DAO code that adds rows to an Access table from Excel.
>
> Sub ProcessCOS_Report()
>
> ' Import COS Report data into access table
> ' Connect to the database
>
>
> Dim strSports As String
> Dim strArthroplasty As String
> Dim strFracture As String
> Dim strDiagnosis As String
>
> Dim newCount As Long
> Dim i As Long
> Dim cn As New ADODB.Connection
> Dim rs As Recordset
>
> Dim sh As Worksheet
> Dim myData As String
> Set sh = ActiveWorkbook.ActiveSheet
> myData = ThisWorkbook.Path & "\WNH_III_Operative_Log_New_JJ.mdb"
>
> With cn
> .Provider = "Microsoft.ACE.OLEDB.12.0"
> .Properties("Data Source") = myData
> .Open
> End With
>
> Set rs = New ADODB.Recordset
>
> 'open record
> rs.Open "select * from [TestCaseLogs];", cn, adOpenKeyset, adLockOptimistic
>
> COS_Rpt.Activate
>
> 'get record count in excel
> newCount = Cells.Range("A65536").End(xlUp).Row
>
> If RowCount + 2 > newCount Then
> MsgBox "No data to be append to Access!"
> End If
>
> LastRow = ActiveSheet.UsedRange.Rows.Count
> For i = 2 To LastRow ' start from row 2 in the worksheet
> If Not IsEmpty(Range("R" & i).Value) Then
> strDiagnosis = Range("R" & i).Value
> If Not IsEmpty(Range("S" & i).Value) Then
> strDiagnosis = strDiagnosis & ", " & Range("S" & i).Value
> If Not IsEmpty(Range("T" & i).Value) Then
> strDiagnosis = strDiagnosis & ", " & Range("T" & i).Value
> If Not IsEmpty(Range("U" & i).Value) Then
> strDiagnosis = strDiagnosis & ", " & Range("U" & i).Value
> If Not IsEmpty(Range("V" & i).Value) Then
> strDiagnosis = strDiagnosis & ", " & Range("V" & i).Value
> End If
> End If
> End If
> End If
> End If
>
> 'INSERT INTO [Case Log Fields] ( [Case Number], [Patient Name], [Medical Record Number], [Date of Surgery], Diagnosis, [CPT Code], [Procedure Description], [Secondary CPT Code], [Secondary Procedure], CPT_Code_Three, Procedure_Description_Three, CPT_Code_Four, Procedure_Description_Four, [Sports Medicine Case], Fracture_Case, Arthroplasty_Case )
> 'SELECT [Case Log Fields].[Case Number], [Case Log Fields].[Patient Name], [Case Log Fields].[Medical Record Number], [Case Log Fields].[Date of Surgery], [Case Log Fields].Diagnosis, [Case Log Fields].[CPT Code], [Case Log Fields].[Procedure Description], [Case Log Fields].[Secondary CPT Code], [Case Log Fields].[Secondary Procedure], [Case Log Fields].CPT_Code_Three, [Case Log Fields].Procedure_Description_Three, [Case Log Fields].CPT_Code_Four, [Case Log Fields].Procedure_Description_Four, [Case Log Fields].[Sports Medicine Case], [Case Log Fields].Fracture_Case, [Case Log Fields].Arthroplasty_Case
> 'FROM [Case Log Fields];
>
> strSports = "True"
> strArthroplasty = "False"
> strFracture = "True"
>
> With rs
> .AddNew ' create a new record
> ' add values to each field in the record
> .Fields("Medical Record Number") = Range("A" & i).Value
> .Fields("Patient Name") = Range("B" & i).Value & ", " & Range("C" & i).Value
> .Fields("Date of Surgery") = Range("G" & i).Value
> .Fields("CPT Code") = Range("H" & i).Value
> .Fields("Secondary CPT Code") = Range("I" & i).Value
> .Fields("CPT_Code_Three") = Range("J" & i).Value
> .Fields("CPT_Code_Four") = Range("K" & i).Value
> .Fields("Diagnosis") = strDiagnosis
> .Fields("Sports Medicine Case") = strSports
> .Fields("Fracture_Case") = strArthroplasty
> .Fields("Arthroplasty_Case") = strFracture
> .Update ' stores the new record in the input_com_Copy table
> End With
> Next i
> DoEvents
>
> ' close the record set and connection
> rs.Close
> Set rs = Nothing
> Set dbs = Nothing
> cn.Close
> Set cn = Nothing
>
> Exit Sub
>
> HandleError:
> Stop
> ' MsgBox "Error Number: " & Err & " -- " & "Error: " & Error & " -- " & "Error Line: " & Erl
> 'MsgBox "Error Number: " & Err & " -- Error: " & Error & " -- Error Line: " & Erl & " -- Procedure: " & Application.VBE.ActiveCodePane.CodeModule & " -- Procedure: " & C_PROC_NAME
> 'MsgBox Err & " " & Error
> Debug.Print "MsgBox Err: " & Err & " Error: " & Error
>
> Resume 'Next
> End Sub ' end ProcessCOS_Report
>
> Thus endth my 02 cents,
> Jeff
> ----- Original Message -----
>
>
>
>
>
> John-
>
> An alternative would be to build an existing table with the correct field
> names, but all the data types set to Text. Import the data into that, then
> run code on the imported data that examines the data row by row and corrects
> it. You could even spit it out into another table with correct data types
> after massaging it.
>
> I'm not much of an expert on Excel, but it seems to me you could add code to
> the spreadsheet to validate the data as it's entered. Don't allow anything
> but a date in a date column, for example.
>
> 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: Wednesday, January 30, 2013 3:53 PM
> To: MS_Access_Professionals@yahoogroups.com
> Subject: [MS_AccessPros] Re: Import Excel Spreadsheet into Access 2003 table
>
> John,
>
> I hope others chime in on this, but my idea would be to send the vendors a
> locked down database that they can update that contains a procedure to
> create the spreadsheet after they make the updates and emails it to your
> customer. You could use the free Access runtime so the vendors wouldn't have
> to have Access installed on their PC's.
>
> Doyce
>
> --- In MS_Access_Professionals@yahoogroups.com , "jfakes.rm" wrote:
> >
> > I have a customer that sends an Excel spreadsheet to different vendors for
> employee updates. I developed a spreadsheet template that is used to send
> to the vendor.
> >
> > The vendors are supposed to enter their data into the template using the
> specified data types. Then, my customer imports the data into a temp table
> then using a process I developed (using a form), the customer runs a series
> of steps to clean the data then add the data to the "main table."
> >
> > The problem is, the vendors are rearranging the layout of the template,
> entering text in date fields etc. So, when my customer wants to import the
> data into the temp table they get errors (sent to paste errors table). They
> then say my process doesn't work. When I sit with them and troubleshoot the
> issues on the spreadsheet, they exclaim that the automated process takes
> almost as much time to complete as it would to manually enter the data. I
> agreed that might be true on small vendors, but when you have to update 500+
> records, that would take a lot of time.
> >
> > Can anyone point me to a good source to learn how to automatically
> troubleshoot errors on the spreadsheet (i.e. ignore text in date fields
> etc.)? I told my customer to lock the formats on the spreadsheet however,
> the vendors continually make changes anyway.
> >
> > Any help would be appreciated.
> >
> > John F.
> >
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>
> --
>
>
> Jeffrey Park Jones
> Excel, Access, Word, Office Expert
> Excel and Access, LLCĂ‚®
> http://ExcelAndAccess.Com
>
> 919-671-9870
> 5109 Deer Lake Trail
> Wake Forest, NC 27587
> jpjones23@...
>
>
>
>
> [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 (6)
Recent Activity:
.

__,_._,___

Re: [MS_AccessPros] A Thank You to a great contributor

 

The true measure of a teacher is the progress made by their students. I am a better developer because of the knowledge imparted by A.D. 

Thank You A.D.
 
Jim Wagner
________________________________

________________________________
From: Bill Mosca wrmosca@comcast.net>
To: MS_Access_Pros MS_Access_Professionals@yahoogroups.com>
Cc: Arjun Dev Tejpal adtejpal@gmail.com>
Sent: Thursday, January 31, 2013 7:57 PM
Subject: [MS_AccessPros] A Thank You to a great contributor


 
Hello all

I'd like to announce that A..D .Tejpal has retired due to personal reasons. I
have not done so earlier because I wanted to give him some space.

We all owe him a deep gratitude for his unique, innovative approach to Access
and an untiring dedication to our group. We hope he stops in from time to time
to offer his insights, but we also respect his wishes to channel his energy into
other areas of life.

I, for one, will miss my friend's invaluable knowledge of the beast we call
"Access".

Regards,

Bill

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

[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 (6)
Recent Activity:
.

__,_._,___

Re: [belajar-access] aplikasi access

 


Terima kasih, kl blh tahu harganya brp?

------------------------------
On Fri, Feb 1, 2013 1:04 AM CST les.access@gmail.com wrote:

>Dear Dian Anas,
>
>Sy memiliki berbagai jenis aplikasi HRMS (Human Resource Management System) baik untuk institusi pemerintah maupun swasta. Berikut aplikasi institusi yg tersedia :
>
>1.Aplikasi Penerimaan CPNS, Komisi Yudisial RI
>2. SIMPEG PNS, BKD Pemkot Tangerang
>3. SIMPEG, Kementerian Pariwisata
>4. HRIS, perusahaan penerbangan (aviation) PT. IAT
>5. HRIS & Mobilisasi Manpower, PT. TPE
>6. HRIS Otomotif, PT. TMI
>7. Dll
>
>Share yg dimaksud disini apa dan bagaimana? Apakah maksudnya akan membeli aplikasinya atau hanya minta bocoran kisi2nya :p
>
>Intinya bahwa ms access msh tetap powerfull utk sebuah aplikasi.
>
>
>Sent from my BlackBerry® via Smartfren EVDO Network
>
>-----Original Message-----
>From: Dian Anas anassheva20@yahoo.com>
>Sender: belajar-access@yahoogroups.com
>Date: Thu, 31 Jan 2013 22:35:06
>To: belajar-access@yahoogroups.com>
>Reply-To: belajar-access@yahoogroups.com
>Subject: Re: [belajar-access] aplikasi access
>
>para pakar access,
>saya mau tanya nih. ada yang bisa share aplikasi simpeg pakai access????
>terima kasih
>
>--- On Thu, 1/31/13, Sofyan Efendi sofyanefendi@gmail.com> wrote:
>
>From: Sofyan Efendi sofyanefendi@gmail.com>
>Subject: Re: [belajar-access] aplikasi access
>To: belajar-access@yahoogroups.com
>Date: Thursday, January 31, 2013, 7:30 AM
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

>
>
>
>
>
>
>
>
>
> Salam,
>
>
>
>1. Biaya tergantung kerumitan dari program yang dipesan.
>
>2. Buat shortcutnya, jangan filenya yg disimpan di desktop.
>
>3. Tidak ada error, kecuali ada sebab2 khusus seperti jaringan ke sumber
>
>data putus, atau ada hal-hal lain yang tidak diduga, yang tidak terpikir
>
>untuk handle errornya saat membuat aplikasi pertama kali.
>
>4. Untuk backup gunakan Cobian Backup yang mana diset shadow copy ke True.
>
>Untuk recovery, co-pas file yang sudah di backup ke sumbernya (Restore).
>
>
>
>Wassalaamu'alaikum Warahmatullahi Wabarakatuh,
>
>Sofyan Efendi
>
>----- Original Message -----
>
>From: "oh bangsaku" son972001@yahoo.com>
>
>To: belajar-access@yahoogroups.com>
>
>Sent: Wednesday, January 30, 2013 5:20 PM
>
>Subject: [belajar-access] aplikasi access
>
>
>
>> salam semuaa,
>
>>
>
>> maaf, mau nanya...
>
>>
>
>> 1. pembuatan aplikasi tuk koperasi dgn ms access 2007, ongkosnya brapa
>
>> yah??
>
>> 2. klo aplikasi dijalankan di dekstop, bagusnya dibuat shortcut atau
>
>> langsung menyimpan filenya didekstop??
>
>> 3. apakah aplikasi yang dibuat menggunakan di access tidak sering error di
>
>> kemudian hari??
>
>> 4. tuk backup dan recoverynya gimana yah??
>
>>
>
>>
>
>> maaf sekali lagi merepotkan...terima kasih sebelumnya,,,,
>
>>
>
>>
>
>> wassalam..
>
>>
>
>>
>
>>
>
>> ------------------------------------
>
>>
>
>> SPAM IS PROHIBITEDYahoo! Groups Links
>
>>
>
>>
>
>>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

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

__,_._,___

RE: [belajar-access] cara buat table

 

 

Bisa di coba seperti gambar relationship di atas mas, kalo hanya 1 table belum bisa dikatakan sebagai database. Sesederhananya aplikasi yang akan kita buat, tetap harus memperhatikan kaidah-kaidah dalam pembuatan aplikasi yang efektif. Bagaimana melihatnya apakah cukup 1 table atau lebih… contoh data diatas ada pembuatan tblbrg, biasanya didalamnya ada detail daftar nama barang dst ini dijadikan table tersendiri, tblpenerima, tblpengirim, dan tbljenispengiriman juga demikian. Sehingga informasi data tidak berulang-ulang, tetapi cukup di relasikan antara primary key dengan foreign key. Jadi cukup hanya di ambil ID nya saja, tetapi data di dalam table tersebut bisa ditampilkan secara berulang-ulang. Baik dengan cara query/sql.

 

Demikian, keep spirit, silakan di eksplore.

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 Christian Chandra
Sent: Thursday, January 31, 2013 9:51 PM
To: Access1
Subject: [belajar-access] cara buat table [1 Attachment]

 

 

[Attachment(s) from Christian Chandra included below]

halo semua mau tanya ni

 

saya ada mau buat program sederhana seperti gambar 

 

yang saya mau tanya itu, satu tabel aja cukup ya?

 

gimana ngeliatnya klo butuh 2 ato 3 table?

 

terima kasih

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

__,_._,___

[AccessDevelopers] File - Monthly_Notices.txt

 


Monthly notices:

Hi Kids!:

Don't forget to check out our "Links" section at the website for helpful sites. Also take a peek at books that others have found worthwhile in our books database under the 'Database' link of the main AccessDevelopers page. Feel free to add any books or links that you have found useful.

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

Please zip all files prior to uploading to Files section.
.

__,_._,___

RE: [belajar-access] crosstab query

 

Ada filenya mas ronny… dan kasusnya seperti apa ?

 

From: belajar-access@yahoogroups.com [mailto:belajar-access@yahoogroups.com] On Behalf Of Belajar Access
Sent: Tuesday, January 29, 2013 8:47 PM
To: belajar-access@yahoogroups.com
Subject: Re: [belajar-access] crosstab query

 

 

Teman2 semuanya, adakah yang dapat membantu kasus saya ini ?

 

Terima kasih banyak atas bantuannya,

 

Ronny S

 


From: Belajar Access <belajar.access@yahoo.com>
To: "belajar-access@yahoogroups.com" <belajar-access@yahoogroups.com>
Sent: Sunday, January 27, 2013 12:53 PM
Subject: [belajar-access] crosstab query [2 Attachments]

 

 

Dear all, mohon bantuannya dong, saya baru saja belajar access. yang ingin saya tanyakan adalah masalah crosstab querry.

Pertanyaan sya adalah sbb :

 

1. dalam crosstab query ini, ada 3 field yang saya akan gunakan criteria.namun pada waktu di run kenapa hasilnya kosong ya ?

2. untuk criteria tanggal saya memakai between [start date] and [end date] tapi kenapa gak bisa di run ya ? apakah untuk criteria seperti 

    ini memang gak bisa unutk crosstab querry ya ?

3. kenapa field nya jadi ganda ya ? jadi ada 3 field yang saya mau sortir, tapi setelah di pasang criterianya, pada saat liat di querynya, ternyata

    field2 tersebut sudah tergandakan

 

Note. kalau boleh kasus saya ini tidak menggunakan VB dulu ya para master, berhubung saya masih tahap belajar

          Databasenya udah saya sertakan

 

Terima kasih banyak untuk bantuannya.

 

 

 

 

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

__,_._,___