Blog Archives

Set textbox value from other value

onclick=”document.getElementById(‘permanent_address’).value = document.getElementById(‘present_address’).value”

MSSQL Server 2008 Reporting Services Catalog database file existence

Reporting Services Catalog Error.

Applies to: Microsoft SQL Server 2008 Release Candidate 0 (RC0).

Error Message.

SQL Server 2008 RC 0 Setup shows the following error messages after running a set of rules to determine if the installation process will be blocked:

bulletRule “Reporting Services Catalog Database File Existence” failed
bulletRule “Reporting Services Catalog Temporary Database File Existence” failed.

Reporting Services Catalog Error.

Applies to: Microsoft SQL Server 2008 Release Candidate 0 (RC0).

Error Message.
SQL Server 2008 RC 0 Setup shows the following error messages after running a set of rules to determine if the installation process will be blocked:

bulletRule “Reporting Services Catalog Database File Existence” failed
bulletRule “Reporting Services Catalog Temporary Database File Existence” failed.

Cause.

Setup program found the Reporting Services Catalog database file and Reporting Services Catalog temporary database file in the following path:

C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA

Solution.

Remove the following files from the “C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA” directory:

bulletReportServer.mdf
bulletReportServer_log.LDF
bulletReportServerTempDB.mdf
bulletReportServerTempDB_log.LDF.

After deleting the files, click on the “Re-run” button of the Installation Rules setup page, and click “Next” after passing all the installation rules.

Source: http://www.sqlcoffee.com/Troubleshooting028.htm

How to enable hibernate in Win 7

Enable Hibernate:
Go to command promt and type.
C:\Windows\System32>powercfg -h on
Click Start->Type “Power”->Click “Power Options” under control panel.
Click “Change when the computer sleeps” (left menu of power option page)
Click “Change Advance Power Settings”
Balance Active OR Recommended Settings Active(Drop Down)
Sleep -> Allow Hibernate Sleep -> Settings->Off
Apply -> Ok.
Done

Disable Hibernate:
Go to command promt and type.
C:\Windows\System32>powercfg -h off
Do reverse of power settings.

ট্রেনের টিকেট কাটুন বাংলালিংক মোবাইল এ

রেজিষ্টেশনঃ

বেলেন্স চেকিং:
BAL<space> PIN send SMS to 480

টিকেট কাটাঃ
*১৩১#
ডায়াল করুন এবং পরবর্তী নির্দেশনা অনুসরন করুন।

how to write bangla language in php file

ওয়েব ডেভলপমেন্ট এ যেকোন পেজ এ সহযে বাংলা লেখার উপায়ঃ
এডিটরঃ মেক্রমিডিয়া ড্রিমওয়েভার
পেজ সেটিংসঃ
From menu:
Modify-> Page Properties
From Left Panel Select “Title/Encoding”
From Right:
Encoding: Unicode (UTF-8)

এখন আপনি .php বা .html পেজ এ বাংলায় যেকোন কিছু লিখতে পারবেন।

Category: LAMP  One Comment

আমি বাংলায় গান গাই

হ্যা। বাংলা লেখা খুবই সহজ। অভ্রতে চেষ্টা করুন আপনিও লিখতে পারবেন। বিস্তারিত জানতে ভিজিট করুনঃ http://www.omicronlab.com/

শুভ কামনায়
সুমন।

Wamp Setup/Config : Wamp Error & Solutions

Error:
Notice: Use of undefined constant login_check

Solution:
left click wamp icon> php> php.ini . goto the line
error_reporting = E_ALL
AND REPLACE WITH
error_reporting = E_ALL & ~E_NOTICE
SAVE AND RESTART WAMP

Enable re-write engine(using .htaccess):
left click wamp icon-> apache-> apache module->rewrite_module

Category: LAMP  One Comment

Select drop down item based on value by Javascript

[select name="select_district" id="select_district"]
[option value="Bogra"]Bogra[/option]
[option value="Dhaka"]Dhaka[/option]
[/select]

[script language="javascript"]document.getElementById(“select_district”).value = ‘<?php echo $district;?>’;[/script]

Refreshing a parent page from a child popup

parent.php
<?php
echo date(“h:m:s”);
?>
[script language="javascript1.2"]
function openPanelManager()
{
mywindow = window.open ["child.php","title is here","location=0,status=0,scrollbars=1,width =525,height=700"];
mywindow.moveTo(0,0);
}
[script]

Your [a href="javascript:openPanelManager();"]Customized Profiles[a]

child.php

[input type="submit" name="Submit" value="Submit" onclick="opener.window.location.reload();self.close();return false;" ]

Generate PHP useful codes based on Table Fields

Link: http://www.shopno-dinga.com/randd/control_name_to_array.php

Help you to generate PHP code for you.
>>>>>>>>>>>>>>>>>> Input <<<<<<<<<<<<<<<<<<<<

student_name
roll_no
date_of_birth
address
>>>>>>>>>>>>>>>>>> Output <<<<<<<<<<<<<<<<
Default Values:
$_POST = array(‘student_name’=>”, ‘roll_no’=>”, ‘date_of_birth’=>”, ‘address’=>”, ”=>”)
Insert SQL Statement:
“INSERT INTO TBL_NAME(student_name, roll_no, date_of_birth, address, ) VALUES(‘$_POST[student_name]‘, ‘$_POST[roll_no]‘, ‘$_POST[date_of_birth]‘, ‘$_POST[address]‘, ‘$_POST[]‘)”

Category: LAMP  Leave a Comment