Goodnight Electric Biography

Goodnight Electric adalah sebuah proyek musik yang dikerjakan oleh Henry Foundation (voice/programmer) pada akhir tahun 2003 di Jakarta

Nyasar ke Braga Festival 2011

Sebenernya gw sama temen2 gw yg lain gak ada tujuan yg pasti buat liburan di Bandung

Well Exchage Link (Tukeran Link)

Sobat Well Blog yang ingin tukeran link, bisa lho..

Selasa, 17 Juni 2014

Database is in use error while restore database from backup (SQL Server)

Sometimes you are trying to restore a sql server database and you'll get the error:
"Exclusive access could not be obtained because the database is in use."



The Solution is type the script below and run it (SQL Query) :

Before Restore Attempt
 use master  
 alter database DB_NAME set offline with rollback immediate;  

After Restore
 use master  
 alter database DB_NAME set online with rollback immediate;  

Senin, 16 Juni 2014

Error HRESULT E_FAIL has been returned from a call to a COM component (SQL Server)

When loading large files – over 100MB with  Sql Server Management Studio 2008 you might get the following error:
Error HRESULT E_FAIL has been returned from a call to a COM component.



The Solution is run CMD (Run As Administrator) then type the script below :
 sqlcmd -S [server] -U [username] -P [password] -i [path file of sql script]  

Example :
 sqlcmd -S .\MYSQLSERVER -U sa -P pass -i C:\Database\newscript.sql  

Selasa, 10 Juni 2014

HTTP Error 404.3 - Not Found in IIS 7.5

Error :
HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

Screenshot of the error page

This is a common issue and happens when IIS is installed after VS or .NET framework. So you must use aspnet_regiis.exe to register version of .NET framework you are using.

The Solution is run CMD (Run As Administrator) then type the script below :

 %windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -ir  

Kamis, 05 Juni 2014

Hide Disable CommandField ButtonField In GridView Asp.Net

In this example i'm going to explain how to Conditionally Hide Or Disable GridView CommandField Or ButtonField Programmatically In Asp.Net Using C# And VB.
Conditionally Hide or disable Gridview commandfield buttonfield in asp.net.
I'll use field such as Select,ShowEditButton and controls in TemplateField for this demo.
Northwind Databse is used to populate GridView.
Enable selection from smart tag in design mode to show SelectButton Hyperlink in Gridview.
This Linkbutton will be hidden where country name is equal to Mexico and disabled where name is Germany in any row of grid as shown above in image.
Checkbox Control placed in ItemTemplate will also be covered.



HTML Code
   1: <asp:GridView ID="GridView1" runat="server"   
   2:        DataSourceID="sqlDataSourceGridView"   
   3:        onrowdatabound="GridView1_RowDataBound"   
   4:        AutoGenerateColumns="false">  
   5: <Columns>  
   6: <asp:CommandField ShowSelectButton="True"/>  
   7:         
   8: <asp:TemplateField>  
   9: <ItemTemplate>  
  10: <asp:CheckBox ID="chkSelect" runat="server"   
  11:       Visible='<%# ShowHide(Eval("Country"))%>'/>  
  12: </ItemTemplate>  
  13: </asp:TemplateField>  
  14: <asp:BoundField DataField="CustomerID"   
  15:         HeaderText="Customer ID"/>  
  16: <asp:BoundField DataField="City" HeaderText="city"/>  
  17: <asp:BoundField DataField="Country"   
  18:         HeaderText="Country"/>  
  19: </Columns>  
  20: </asp:GridView>  
  21:           
  22: <asp:SqlDataSource ID="sqlDataSourceGridView"   
  23:           runat="server"   
  24:           ConnectionString=  
  25: "<%$ ConnectionStrings:northWindConnectionString %>"   
  26: SelectCommand="SELECT [CustomerID], [City], [Country]   
  27:         FROM [Customers]">  
  28: </asp:SqlDataSource>  


C# Code
1:  protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)  
2:  {  
3:       if (e.Row.RowType == DataControlRowType.DataRow)  
4:       {  
5:            string country = DataBinder.Eval(e.Row.DataItem, "Country").ToString();  
6:            if (country == "Mexico")  
7:            {  
8:                 LinkButton lb = (LinkButton)e.Row.Cells[0].Controls[0];  
9:                 lb.Visible = false;  
10:            }  
11:            else if (country == "Germany")  
12:            {  
13:                 e.Row.Cells[0].Enabled = false;  
14:            }  
15:       }  
16:  }  
17:  protected bool ShowHide(object country)  
18:  {  
19:       if (country.ToString() == "France")  
20:            return false;  
21:       else  
22:            return true;  
23:  }  


VB Code
1:  Protected Sub GridView1_RowDataBound(sender As Object, e As GridViewRowEventArgs)  
2:       If e.Row.RowType = DataControlRowType.DataRow Then  
3:            Dim country As String = DataBinder.Eval(e.Row.DataItem, "Country").ToString()  
4:            If country = "Mexico" Then  
5:                 Dim lb As LinkButton = DirectCast(e.Row.Cells(0).Controls(0), LinkButton)  
6:                 lb.Visible = False  
7:            ElseIf country = "Germany" Then  
8:                 e.Row.Cells(0).Enabled = False  
9:            End If  
10:       End If  
11:  End Sub  
12:  Protected Function ShowHide(country As Object) As Boolean  
13:       If country.ToString() = "France" Then  
14:            Return False  
15:       Else  
16:            Return True  
17:       End If  
18:  End Function  

Selasa, 06 Maret 2012

Well Exchage Link (Tukeran Link)


Welly Sundawa Well Blog



Sobat Well Blog yang ingin tukeran link, bisa lho..

Langkah-langkah tukeran link di Well Blog :
  1. Silahkan copy script dibawah ini dan taruh di blog atau web kalian
  2. Selanjutnya konfimasi melalui e-mail : wellysundawa@gmail.com


Berikut daftar link Sobat Well Blog :

Toko Sepatu Safety
Bang Dedung Blog
Yobel Blog

Jumat, 02 Maret 2012

Visual Studio .NET Setup hangs on Generating setup script


Finally I found it... After couple of days trying to install Visual
Studio .NET 2003 and having the same problem of hanging at 60% of the
Generating Setup Script, this is what i did:

1. open your Window Task Manager (Ctrl-Alt-Del)
2. Select the Proccesses Tab
3. Sort by Image Name
4. When the installation starts a new task called "msiexec.exe" is
created.
5. Select that task
6. When the setup reaches the part of "Generating Setup Script" and
the progress bar reaches around 60%, usually the part where it hangs,
you will notice that another task named "msiexec.exe" is created. End
the new process (the one that has lower Mem Usage). and this should
allow the installation to proceed.

Should the intallation hang again, do the same thing...

Good Luck


Sumber : http://www.developmentnow.com/g/58_2003_11_0_0_292633/Found-it---NET-Setup-hangs-on-Generating-setup-script.htm

Senin, 26 September 2011

Goodnight Electric Biography

(Goodnight Electric)


Goodnight Electric adalah sebuah proyek musik yang dikerjakan oleh Henry Foundation (voice/programmer) pada akhir tahun 2003 di Jakarta. Sebuah konsep musik studio yang menggunakan perangkat lunak (software) komputer sebagai media dalam menciptakan berbagai suara dan ritme yang menjadi materi utama pada musik yang dihasilkan oleh Goodnight Electric.

Bersama Bondi Goodboy (synthesizer/voice) dan oomleo (synthesizer/sequencer/voice), Goodnight Electric berkembang menjadi sebuah trio dance group yang menempatkan diri pada genre musik synth-pop di Indonesia.

Terinspirasi dari aliran musik pop, dance dan new wave di era 80 - 90'an dan mengagumi karya- karya musik dari Robert Smith (The Cure), Vince Clarke (Depeche Mode, Yazoo, Erasure) dan juga karya-karya musik dari band seperti Belle and Sebastian dan The Radio Dept., materi-materi musik yang dihasilkan oleh Goodnight Electric diharapkan dapat diterima oleh berbagai kalangan pecinta musik di tanah air.

Goodnight Electric berhasil merilis sebuah debut album "Love and Turbo Action" pada akhir tahun 2004 di bawah naungan label H.F.M.F Records, dan berhasil mendapatkan apresiasi serta perhatian yang cukup baik di masyarakat, khususnya di kalangan remaja ibukota. Walaupun terdapat berbagai keterbatasan dalam mempromosikan album tersebut, namun angka penjualannya cukup baik. Hal ini menyebabkan munculnya berbagai tawaran dari kalangan pecinta musik yang ingin menyaksikan penampilan langsung Goodnight Electric, dan menjadikan Goodnight Electric sebagai salah satu band indie-label yang aktif mengisi dan meramaikan bermacam acara dan panggung musik di tanah air.

Langkah awal yang cukup baik ini turut dibantu oleh rekan-rekan media dan juga support dari berbagai macam kalangan sehingga Goodnight Electric berhasil mendapatkan nominasi Best New Artist di MTV IndonesiaMusic Award 2005, Best Live PA di Paranoia Award Hard Rock FM Jakarta 2005 dan berpartisipasi dalam berbagai ragam event musik dari dance music festival, pentas seni hingga charity event.

H.F.M.F Records kembali merilis ulang (repackage) album "Love and Turbo Action" (Silver Album) pada tahun 2005 dengan 3 tambahan materi Remix dari DJ. Oreo, Ape On The Roof, dan The Adams. Pada akhir tahum 2005 Goodnight Electric menandatangani kontrak dengan JTB Records, sebuah perusahaan rekaman dari Jepang untuk merilis "Love and Turbo Action" (Green Album) yang akan didistribusikan di Jepang pada awal tahun 2006; dengan tambahan 2 buah matrei lagu baru yang berjudul "T.E.C.H.N.O>LOGY" dan "Sci-fi Love".

(Goodnight Electric in action)


Personil :

Henry "Batman" Foundation (Henry Irawan) (vokal/programmer)
Jakarta.male.29.L.174.65
Disc Operator, Tea maker, Juices, Video Dreamer, Painter, Yes cheese, Robert Smith, Vince Clarke, The Cure, Depeche Mode, Yazoo

Bondi Goodboy (Mateus Bondan Wikanti Aji) (synthesizer/vokal)
Jakarta.male.29.S.165.45
Printer Hacker, Vektor Jumper, Drum Machine, No Milk, The Stone Roses, Beck, Happy Mondays, The Faint, Ian Brown, Basquiat

Oomleo (Narpati Awangga) (synthesizer/vokal)
Jakarta.male.29.L.172.57
24 Hour computer online, Milo or ice chocolate, Coffe Mix, Pixel Artist, Yellow Matic, No Chilli, The Beatles, Chet Baker, Tom Jobim, The Flaming Lips, The Radio Dept., New Kids On The Block, Dasboot, Voltes V


Album :

Love and Turbo Action
2004 H.F.M.F Records

This is a first album of goodnight electric.. and some people call it the yellow album.

“A.S.T.U.R.O.B.O.T”
“Am I Robot?”
“The supermarket I am in”
“Bedroom avenue”
“Psychic girl”
“Trembling mind”
“Rocket ship goes by”
“Love and turbo action”
“We’re going to the star”

Love and Turbo Action (Silver Album)
2005 H.F.M.F Records

The repackage of “Love and Turbo Action” with four new remixed songs from The Adams, Ape on The Roof and Dj. Oreo. This edition released on cd and cassette in silver print.

“A.S.T.U.R.O.B.O.T”
“Am I Robot?”
“The supermarket I am in”
“Bedroom avenue”
“Psychic girl”
“Trembling mind”
“Rocket ship goes by”
“Love and turbo action”
“We’re going to the star”
“Am I Robot? (The Adams Remix)”
“Rocket ship goes by (Ape on The Roof Remix)”
“Psychic girl (Oreo Remix)”
“Am I Robot? (Foundation Mix)”

Love and Turbo Action (Green Album)
2006 JTB Records [available on Japan..]

The repackage of “Love and Turbo Action” ..in JAPAN..!! released by JTB Records in green print.

“A.S.T.U.R.O.B.O.T”
“Am I Robot?”
“The supermarket I am in”
“Bedroom avenue”
“Psychic girl”
“Trembling mind”
“Rocket ship goes by”
“Love and turbo action”
“We’re going to the star”
"T.E.C.H.N.O>LOGY"
"Sci-Fi Love"
“Am I Robot? (The Adams Remix)”
“Rocket ship goes by (Ape on The Roof Remix)”
“Psychic girl (Oreo Remix)”

Electroduce Yourself
2007 Aksara Records

“Hello”
“#1”
“Art School Flying Object”
“Laser Gun Electro Boy”
“Interval”
“Rain In My Room”
“This Is For You”
“Solid Gold”
“Super Visor Go”
“Im OK”
“V.S”
“Automatic Heart”


Compilation :

OST Janji Joni
2005 Aksara Records

An urban adventure movie soundtrack compilation.
with : White Shoes & the Couples Company, The Adams, Teenage Death Star,
Zeke & The Popo, The Jonis, etc.

“Bedroom avenue”

Change Yourself
2005 Rooftopsound

An electronic music compilation inspired by Irwan Ahmett art project “Change Yourself”.
with : Electronic Groove, Aghi Narottama, Shuupagirl, Daydream Delusion, etc.

“Ekil oisac”
“CYS”

Jakarta Movement ‘05
2005 Aksara Records

The First compilation cd of Indonesian electronica, from house to drum n bass, indietronic to electro and more.
with : Agrikulture, Homogenic, Ape on The Roof, Media Distorsi, Rock N Roll Mafia, Electronic Groove, Random, etc.

“Sci-fi love” featuring Che Kyong Fa

RIOT “The Thusrday Riot Compilation”
2006 Parc Suddenly Records & Kenanga Records

A documentation of weekly gigs called Thusrday Riot.
with : The Safari, Mocca, White Shoes & The Couples Company, The Sastro, Dagger Stab, Step Forward, etc.

“T.E.C.H.N.O>LOGY”

Mesin Waktu : Teman-Teman Menyanyikan Naif
2007 Aksara Records

A tribute to "Naif" compilation.
with : Sore, The Brandals, White Shoes & The Couples Company, The Monophones, The Adams, etc.

"Just B"

 
Welly Sundawa Well Blog