binding nullable property
I'm creating custom datetimepicker with nullable<datetime> property Value.
When I bind this control
Binding b = new Binding("Value", source, "some nullable property");
DatePicker.DataBindings.Add(b);
and start application it throws this exception
Invalid cast from 'System.DateTime' to 'System.Nullable`1[[System.DateTime,
mscorlib, Version=2.0.0.0, Culture=neutral ...
I've tried to define format() and parse() but it's of no use.
In this example i've used visual studio 2008 and source is result of linq to
sql query Tag: child form location Tag: 115036
How to show long labels on ListView columns?
We have a program that lets the user to compare several files. The files
are shown in ListView, with dataitems on lines and each file on separate
column. Names of the files are used as column headers. Here comes the
problem: since there are several files and dataitems are quite short
(a number or short text), the columns are not very wide. But the file
names are quite long and are of something like:
directory\subdirectory\averyveryverylongname.txt
directory\subdirectory\averyveryverylongothername.txt
directory\subdirectory\averyveryverylongthird.txt
and since the ListView shows the name starting from left, each column
seems to have same the name.
I tried to put the columns right aligned, but still the writing starts
from the left.
I guess the ideal case is to show the names like
dir...longname.txt
dir...thername.txt
dir...hirdname.txt
How can I make that?
If not, how to make tooltips with ListView columns (I found some code
with Google, but it assumed some Windows code I was not familiar with)?
--
Arto Viitanen Tag: child form location Tag: 115033
'Column xxx does not allow nulls' error when control is bound and value was entered
Hello,
I have encoutered the error show below after attempting to save a new
record. This happens about 90% of the time under a set of conditions
described later below.
The main form contains a dataGridView and a button on that form opens a data
entry form performs edits or deletes on the record selected or provisions
the form for adding a new record when a button for that purpose is clicked.
This error below happens under a special circumstance that has something to
do with what I describe next.
I have two dropdowns on the data entry form. These dropdowns are linked by a
binding source relationship (and a relationship in the xsd). Because of this
relationship when a selection is made in the first dropdown it filters the
possible selections in the second dropdown.
The first dropdown selects the dimension (i.e. linear, area, volume) the
second selects the unit of measure (inch, foot, inch^2, foot^2...)
When the user makes a selection in the first dropdown (for example liner),
the second dropdown displays the first possible item without actually
selecting the dropdown (in this instance inch), an error will be thrown.
(Note the second dropdown does display the value.)
Why doesn't the form accept the displayed value in the second dropdown? Is
there a work around?
Below the error text and two sections of code; user code and partial class
for the form
==== the error text ====
System.Data.NoNullAllowedException was unhandled
Message="Column 'fkMeasureUnitID' does not allow nulls."
Source="System.Data"
StackTrace:
at System.Data.DataColumn.CheckNullable(DataRow row)
at System.Data.DataTable.RaiseRowChanging(DataRowChangeEventArgs
args, DataRow eRow, DataRowAction eAction, Boolean fireEvent)
at System.Data.DataTable.SetNewRecordWorker(DataRow row, Int32
proposedRecord, DataRowAction action, Boolean isInMerge, Int32 position,
Boolean fireEvent, Exception& deferredException)
at System.Data.DataTable.InsertRow(DataRow row, Int32 proposedID,
Int32 pos, Boolean fireEvent)
at System.Data.DataView.FinishAddNew(Int32 currentIndex, Boolean
success)
at System.Data.DataRowView.EndEdit()
at System.Windows.Forms.CurrencyManager.EndCurrentEdit()
at System.Windows.Forms.BindingSource.EndEdit()
at HIP2007.AddEditMasterTask.btnSave_Click(Object sender, EventArgs
e) in C:\HIP2007\HIP2007\CurrentWork\04_AddEditMasterTask.cs:line 145
at System.EventHandler.Invoke(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons
button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&
m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd,
Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG&
msg)
at
System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32
dwComponentID, Int32 reason, Int32 pvLoopData)
at
System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32
reason, ApplicationContext context)
at
System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason,
ApplicationContext context)
at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
at
HIP2007.CreateConfigureMasterTasks.btnAddViewEditTasks_Click(Object sender,
EventArgs e) in
C:\HIP2007\HIP2007\CurrentWork\03_CreateConfigureMasterTasks.cs:line 77
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons
button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&
m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd,
Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG&
msg)
at
System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32
dwComponentID, Int32 reason, Int32 pvLoopData)
at
System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32
reason, ApplicationContext context)
at
System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason,
ApplicationContext context)
at HIP2007.Program.Main() in C:\HIP2007\HIP2007\Program.cs:line 19
at System.AppDomain.nExecuteAssembly(Assembly assembly, String[]
args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ExecutionContext.Run(ExecutionContext
executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
=== end of the error text ===
=== use code ===
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace HIP2007
{
public partial class AddEditMasterTask : bsfAddEdit
{
// Avoid firing events during load
private bool _blnFormLoading = false;
// First record in Dgv or Edit
private bool _blnIsFirstRecordInDgv = false;
#region [ Constructors & InitializeMyForm
// Edit when existing rows
public AddEditMasterTask(int pkMTaskID)
{
InitializeMyForm();
// Title
lblDialogTitle.Text = "Add/Edit Master Task";
// Filter
bsMTask.Filter = "pkMTaskID = " + pkMTaskID;
// Populate form
taMTask.Fill(dataSetHipAdmin.MTask);
}
// First record when there is none to start with
public AddEditMasterTask()
{
InitializeMyForm();
// Title
lblDialogTitle.Text = "New Master Task";
// Populate form
taMTask.Fill(dataSetHipAdmin.MTask);
// Indicate that this is the first record
_blnIsFirstRecordInDgv = true;
}
private void InitializeMyForm()
{
_blnFormLoading = true;
InitializeComponent();
// form title
this.Text = "";
// Populate dropdowns
taPhase.Fill(dataSetHipAdmin.Phase);
taMeasureDim.Fill(dataSetHipAdmin.MeasureDim);
taMeasureUnit.Fill(dataSetHipAdmin.MeasureUnit);
// Disable Save button
this.btnSave.Enabled = false;
// Indicate that the form is no longer loading
// this controls behavior of events
_blnFormLoading = false;
}
#endregion
#region [ Enable button(s) after form load
public void EditsBegun(object sender, EventArgs e)
{
// Change buttons after edits begin
if (!_blnFormLoading)
this.btnSave.Enabled = true;
}
#endregion
#region [ Buttons
private void btnNew_Click(object sender, EventArgs e)
{
// Clear the current record
this.bsMTask.AddNew();
// Save state of the action performed
CreateConfigureMasterTasks.dgvRecordActionState =
CreateConfigureMasterTasks.dgvRcdAction.RecordAdded;
}
private void btnDelete_Click(object sender, EventArgs e)
{
// MessageBox attributes
string message = "Are you sure you want to permanaently remove
this record?";
string caption = "Confirmation window";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;
// Displays MessageBox
result = MessageBox.Show(message, caption, buttons);
// Delete
if (result == System.Windows.Forms.DialogResult.Yes)
{
// Apply pending changes to the underlying data source
this.bsMTask.RemoveAt(0);
// Send changes back to the database
this.taMTask.Update(dataSetHipAdmin.MTask);
// Save state of the action performed
CreateConfigureMasterTasks.dgvRecordActionState =
CreateConfigureMasterTasks.dgvRcdAction.RecordDeleted;
}
else
{
// Save state of the action performed
CreateConfigureMasterTasks.dgvRecordActionState =
CreateConfigureMasterTasks.dgvRcdAction.RecordViewedOnly;
}
// Close
this.Close();
}
private void btnSave_Click(object sender, EventArgs e)
{
// Take care of loose ends and time stamp
if (contractorCommentsTextBox.Text == "")
{
this.contractorCommentsTextBox.Text = "No notes.";
}
// Populate dateTimePicker with now
this.modifiedDateDateTimePicker.Value = DateTime.Now;
// Apply pending changes to the underlying data source
bsMTask.EndEdit(); /////// < Here is the error 'fkMeasureUnitID'
// Send changes back to the database
taMTask.Update(dataSetHipAdmin.MTask);
// Was "New" the previous button click?
if (CreateConfigureMasterTasks.dgvRecordActionState ==
CreateConfigureMasterTasks.dgvRcdAction.RecordAdded)
{
// If RecordAdded then keep the setting RecordAdded
}
else
{
// Otherwise this is an Edit
CreateConfigureMasterTasks.dgvRecordActionState =
CreateConfigureMasterTasks.dgvRcdAction.RecordEdited;
}
// Close
this.Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
// Close without saving
bsMTask.CancelEdit();
// Save state of the action performed
CreateConfigureMasterTasks.dgvRecordActionState =
CreateConfigureMasterTasks.dgvRcdAction.RecordViewedOnly;
// Close
this.Close();
}
#endregion
}
}
=== end of user code ===
=== start of partial class ===
namespace HIP2007
{
partial class AddEditMasterTask
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be
disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.Label pkMTaskIDLabel;
System.Windows.Forms.Label descriptionLabel;
System.Windows.Forms.Label baseTimeLabel;
System.Windows.Forms.Label allowParticipationLabel;
System.Windows.Forms.Label allowQuantityLabel;
System.Windows.Forms.Label ordLabel;
System.Windows.Forms.Label configuredDisplayLabel;
System.Windows.Forms.Label contractorCommentsLabel;
System.Windows.Forms.Label modifiedDateLabel;
System.Windows.Forms.Label fkMeasureDimIDLabel;
System.Windows.Forms.Label fkMeasureUnitIDLabel;
System.Windows.Forms.Label fkPhaseIDLabel1;
this.dataSetHipAdmin = new HIPAdminAccess.DataSetHipAdmin();
this.bsMTask = new
System.Windows.Forms.BindingSource(this.components);
this.pkMTaskIDTextBox = new System.Windows.Forms.TextBox();
this.descriptionTextBox = new System.Windows.Forms.TextBox();
this.baseTimeTextBox = new System.Windows.Forms.TextBox();
this.allowParticipationCheckBox = new
System.Windows.Forms.CheckBox();
this.allowQuantityCheckBox = new
System.Windows.Forms.CheckBox();
this.ordTextBox = new System.Windows.Forms.TextBox();
this.configuredDisplayCheckBox = new
System.Windows.Forms.CheckBox();
this.contractorCommentsTextBox = new
System.Windows.Forms.TextBox();
this.modifiedDateDateTimePicker = new
System.Windows.Forms.DateTimePicker();
this.taMTask = new
HIPAdminAccess.DataSetHipAdminTableAdapters.MTaskTableAdapter();
this.taMeasureUnit = new
HIPAdminAccess.DataSetHipAdminTableAdapters.MeasureUnitTableAdapter();
this.taMeasureDim = new
HIPAdminAccess.DataSetHipAdminTableAdapters.MeasureDimTableAdapter();
this.bsMeasureDim = new
System.Windows.Forms.BindingSource(this.components);
this.bsMeasureUnit = new
System.Windows.Forms.BindingSource(this.components);
this.fkMeasureDimIDComboBox = new
System.Windows.Forms.ComboBox();
this.fkMeasureUnitIDComboBox = new
System.Windows.Forms.ComboBox();
this.toolTip1 = new
System.Windows.Forms.ToolTip(this.components);
this.fkPhaseIDComboBox = new System.Windows.Forms.ComboBox();
this.bsPhase = new
System.Windows.Forms.BindingSource(this.components);
this.taPhase = new
HIPAdminAccess.DataSetHipAdminTableAdapters.PhaseTableAdapter();
pkMTaskIDLabel = new System.Windows.Forms.Label();
descriptionLabel = new System.Windows.Forms.Label();
baseTimeLabel = new System.Windows.Forms.Label();
allowParticipationLabel = new System.Windows.Forms.Label();
allowQuantityLabel = new System.Windows.Forms.Label();
ordLabel = new System.Windows.Forms.Label();
configuredDisplayLabel = new System.Windows.Forms.Label();
contractorCommentsLabel = new System.Windows.Forms.Label();
modifiedDateLabel = new System.Windows.Forms.Label();
fkMeasureDimIDLabel = new System.Windows.Forms.Label();
fkMeasureUnitIDLabel = new System.Windows.Forms.Label();
fkPhaseIDLabel1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.dataSetHipAdmin)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bsMTask)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bsMeasureDim)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bsMeasureUnit)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bsPhase)).BeginInit();
this.SuspendLayout();
//
// lblDialogTitle
//
this.lblDialogTitle.TabIndex = 1;
//
// btnNew
//
this.btnNew.Location = new System.Drawing.Point(282, 421);
this.btnNew.TabIndex = 27;
this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(363, 421);
this.btnDelete.TabIndex = 28;
this.btnDelete.Click += new
System.EventHandler(this.btnDelete_Click);
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(444, 421);
this.btnSave.TabIndex = 26;
this.btnSave.Click += new
System.EventHandler(this.btnSave_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(525, 421);
this.btnCancel.TabIndex = 0;
this.btnCancel.Click += new
System.EventHandler(this.btnCancel_Click);
//
// pkMTaskIDLabel
//
pkMTaskIDLabel.AutoSize = true;
pkMTaskIDLabel.Location = new System.Drawing.Point(12, 45);
pkMTaskIDLabel.Name = "pkMTaskIDLabel";
pkMTaskIDLabel.Size = new System.Drawing.Size(72, 13);
pkMTaskIDLabel.TabIndex = 2;
pkMTaskIDLabel.Text = "pk MTask ID:";
pkMTaskIDLabel.Visible = false;
//
// descriptionLabel
//
descriptionLabel.AutoSize = true;
descriptionLabel.Location = new System.Drawing.Point(12, 97);
descriptionLabel.Name = "descriptionLabel";
descriptionLabel.Size = new System.Drawing.Size(63, 13);
descriptionLabel.TabIndex = 6;
descriptionLabel.Text = "Description:";
//
// baseTimeLabel
//
baseTimeLabel.AutoSize = true;
baseTimeLabel.Location = new System.Drawing.Point(12, 175);
baseTimeLabel.Name = "baseTimeLabel";
baseTimeLabel.Size = new System.Drawing.Size(60, 13);
baseTimeLabel.TabIndex = 12;
baseTimeLabel.Text = "Base Time:";
//
// allowParticipationLabel
//
allowParticipationLabel.AutoSize = true;
allowParticipationLabel.Location = new System.Drawing.Point(12,
203);
allowParticipationLabel.Name = "allowParticipationLabel";
allowParticipationLabel.Size = new System.Drawing.Size(96, 13);
allowParticipationLabel.TabIndex = 14;
allowParticipationLabel.Text = "Allow Participation:";
//
// allowQuantityLabel
//
allowQuantityLabel.AutoSize = true;
allowQuantityLabel.Location = new System.Drawing.Point(12, 233);
allowQuantityLabel.Name = "allowQuantityLabel";
allowQuantityLabel.Size = new System.Drawing.Size(77, 13);
allowQuantityLabel.TabIndex = 16;
allowQuantityLabel.Text = "Allow Quantity:";
//
// ordLabel
//
ordLabel.AutoSize = true;
ordLabel.Location = new System.Drawing.Point(13, 261);
ordLabel.Name = "ordLabel";
ordLabel.Size = new System.Drawing.Size(27, 13);
ordLabel.TabIndex = 18;
ordLabel.Text = "Ord:";
//
// configuredDisplayLabel
//
configuredDisplayLabel.AutoSize = true;
configuredDisplayLabel.Location = new System.Drawing.Point(12,
289);
configuredDisplayLabel.Name = "configuredDisplayLabel";
configuredDisplayLabel.Size = new System.Drawing.Size(98, 13);
configuredDisplayLabel.TabIndex = 20;
configuredDisplayLabel.Text = "Configured Display:";
//
// contractorCommentsLabel
//
contractorCommentsLabel.AutoSize = true;
contractorCommentsLabel.Location = new System.Drawing.Point(12,
317);
contractorCommentsLabel.Name = "contractorCommentsLabel";
contractorCommentsLabel.Size = new System.Drawing.Size(111, 13);
contractorCommentsLabel.TabIndex = 22;
contractorCommentsLabel.Text = "Contractor Comments:";
//
// modifiedDateLabel
//
modifiedDateLabel.AutoSize = true;
modifiedDateLabel.Location = new System.Drawing.Point(12, 370);
modifiedDateLabel.Name = "modifiedDateLabel";
modifiedDateLabel.Size = new System.Drawing.Size(76, 13);
modifiedDateLabel.TabIndex = 24;
modifiedDateLabel.Text = "Modified Date:";
//
// fkMeasureDimIDLabel
//
fkMeasureDimIDLabel.AutoSize = true;
fkMeasureDimIDLabel.Location = new System.Drawing.Point(12,
123);
fkMeasureDimIDLabel.Name = "fkMeasureDimIDLabel";
fkMeasureDimIDLabel.Size = new System.Drawing.Size(59, 13);
fkMeasureDimIDLabel.TabIndex = 8;
fkMeasureDimIDLabel.Text = "Dimension:";
//
// fkMeasureUnitIDLabel
//
fkMeasureUnitIDLabel.AutoSize = true;
fkMeasureUnitIDLabel.Location = new System.Drawing.Point(11,
149);
fkMeasureUnitIDLabel.Name = "fkMeasureUnitIDLabel";
fkMeasureUnitIDLabel.Size = new System.Drawing.Size(29, 13);
fkMeasureUnitIDLabel.TabIndex = 10;
fkMeasureUnitIDLabel.Text = "Unit:";
//
// fkPhaseIDLabel1
//
fkPhaseIDLabel1.AutoSize = true;
fkPhaseIDLabel1.Location = new System.Drawing.Point(12, 71);
fkPhaseIDLabel1.Name = "fkPhaseIDLabel1";
fkPhaseIDLabel1.Size = new System.Drawing.Size(40, 13);
fkPhaseIDLabel1.TabIndex = 4;
fkPhaseIDLabel1.Text = "Phase:";
//
// dataSetHipAdmin
//
this.dataSetHipAdmin.DataSetName = "DataSetHipAdmin";
this.dataSetHipAdmin.SchemaSerializationMode =
System.Data.SchemaSerializationMode.IncludeSchema;
//
// bsMTask
//
this.bsMTask.DataMember = "MTask";
this.bsMTask.DataSource = this.dataSetHipAdmin;
//
// pkMTaskIDTextBox
//
this.pkMTaskIDTextBox.DataBindings.Add(new
System.Windows.Forms.Binding("Text", this.bsMTask, "pkMTaskID", true));
this.pkMTaskIDTextBox.Location = new System.Drawing.Point(129,
42);
this.pkMTaskIDTextBox.Name = "pkMTaskIDTextBox";
this.pkMTaskIDTextBox.Size = new System.Drawing.Size(200, 20);
this.pkMTaskIDTextBox.TabIndex = 3;
this.pkMTaskIDTextBox.Visible = false;
//
// descriptionTextBox
//
this.descriptionTextBox.DataBindings.Add(new
System.Windows.Forms.Binding("Text", this.bsMTask, "Description", true));
this.descriptionTextBox.Location = new System.Drawing.Point(129,
95);
this.descriptionTextBox.Name = "descriptionTextBox";
this.descriptionTextBox.Size = new System.Drawing.Size(400, 20);
this.descriptionTextBox.TabIndex = 7;
this.descriptionTextBox.TextChanged += new
System.EventHandler(this.EditsBegun);
//
// baseTimeTextBox
//
this.baseTimeTextBox.DataBindings.Add(new
System.Windows.Forms.Binding("Text", this.bsMTask, "BaseTime", true));
this.baseTimeTextBox.Location = new System.Drawing.Point(129,
172);
this.baseTimeTextBox.Name = "baseTimeTextBox";
this.baseTimeTextBox.Size = new System.Drawing.Size(50, 20);
this.baseTimeTextBox.TabIndex = 13;
this.toolTip1.SetToolTip(this.baseTimeTextBox, "The time for
each unit of dimensional unit.");
this.baseTimeTextBox.TextChanged += new
System.EventHandler(this.EditsBegun);
//
// allowParticipationCheckBox
//
this.allowParticipationCheckBox.DataBindings.Add(new
System.Windows.Forms.Binding("CheckState", this.bsMTask,
"AllowParticipation", true));
this.allowParticipationCheckBox.Location = new
System.Drawing.Point(129, 198);
this.allowParticipationCheckBox.Name =
"allowParticipationCheckBox";
this.allowParticipationCheckBox.Size = new
System.Drawing.Size(50, 24);
this.allowParticipationCheckBox.TabIndex = 15;
this.allowParticipationCheckBox.CheckedChanged += new
System.EventHandler(this.EditsBegun);
//
// allowQuantityCheckBox
//
this.allowQuantityCheckBox.DataBindings.Add(new
System.Windows.Forms.Binding("CheckState", this.bsMTask, "AllowQuantity",
true));
this.allowQuantityCheckBox.Location = new
System.Drawing.Point(129, 228);
this.allowQuantityCheckBox.Name = "allowQuantityCheckBox";
this.allowQuantityCheckBox.Size = new System.Drawing.Size(50,
24);
this.allowQuantityCheckBox.TabIndex = 17;
this.allowQuantityCheckBox.CheckedChanged += new
System.EventHandler(this.EditsBegun);
//
// ordTextBox
//
this.ordTextBox.DataBindings.Add(new
System.Windows.Forms.Binding("Text", this.bsMTask, "Ord", true));
this.ordTextBox.Location = new System.Drawing.Point(129, 258);
this.ordTextBox.Name = "ordTextBox";
this.ordTextBox.Size = new System.Drawing.Size(50, 20);
this.ordTextBox.TabIndex = 19;
this.toolTip1.SetToolTip(this.ordTextBox, "The order in which
this task appears within the same phase.");
this.ordTextBox.TextChanged += new
System.EventHandler(this.EditsBegun);
//
// configuredDisplayCheckBox
//
this.configuredDisplayCheckBox.DataBindings.Add(new
System.Windows.Forms.Binding("CheckState", this.bsMTask,
"ConfiguredDisplay", true));
this.configuredDisplayCheckBox.Location = new
System.Drawing.Point(129, 284);
this.configuredDisplayCheckBox.Name =
"configuredDisplayCheckBox";
this.configuredDisplayCheckBox.Size = new
System.Drawing.Size(50, 24);
this.configuredDisplayCheckBox.TabIndex = 21;
this.configuredDisplayCheckBox.CheckedChanged += new
System.EventHandler(this.EditsBegun);
//
// contractorCommentsTextBox
//
this.contractorCommentsTextBox.DataBindings.Add(new
System.Windows.Forms.Binding("Text", this.bsMTask, "ContractorComments",
true));
this.contractorCommentsTextBox.Location = new
System.Drawing.Point(129, 314);
this.contractorCommentsTextBox.Multiline = true;
this.contractorCommentsTextBox.Name =
"contractorCommentsTextBox";
this.contractorCommentsTextBox.Size = new
System.Drawing.Size(400, 46);
this.contractorCommentsTextBox.TabIndex = 23;
this.contractorCommentsTextBox.TextChanged += new
System.EventHandler(this.EditsBegun);
//
// modifiedDateDateTimePicker
//
this.modifiedDateDateTimePicker.DataBindings.Add(new
System.Windows.Forms.Binding("Value", this.bsMTask, "ModifiedDate", true));
this.modifiedDateDateTimePicker.Enabled = false;
this.modifiedDateDateTimePicker.Location = new
System.Drawing.Point(129, 366);
this.modifiedDateDateTimePicker.Name =
"modifiedDateDateTimePicker";
this.modifiedDateDateTimePicker.Size = new
System.Drawing.Size(200, 20);
this.modifiedDateDateTimePicker.TabIndex = 25;
//
// taMTask
//
this.taMTask.ClearBeforeFill = true;
//
// taMeasureUnit
//
this.taMeasureUnit.ClearBeforeFill = true;
//
// taMeasureDim
//
this.taMeasureDim.ClearBeforeFill = true;
//
// bsMeasureDim
//
this.bsMeasureDim.DataMember = "MeasureDim";
this.bsMeasureDim.DataSource = this.dataSetHipAdmin;
this.bsMeasureDim.Sort = "ord";
//
// bsMeasureUnit
//
this.bsMeasureUnit.DataMember = "FK_MeasureUnit_MeasureDim";
this.bsMeasureUnit.DataSource = this.bsMeasureDim;
this.bsMeasureUnit.Sort = "ord";
//
// fkMeasureDimIDComboBox
//
this.fkMeasureDimIDComboBox.DataBindings.Add(new
System.Windows.Forms.Binding("SelectedValue", this.bsMTask,
"fkMeasureDimID", true));
this.fkMeasureDimIDComboBox.DataSource = this.bsMeasureDim;
this.fkMeasureDimIDComboBox.DisplayMember = "Dimension";
this.fkMeasureDimIDComboBox.DropDownStyle =
System.Windows.Forms.ComboBoxStyle.DropDownList;
this.fkMeasureDimIDComboBox.FormattingEnabled = true;
this.fkMeasureDimIDComboBox.Location = new
System.Drawing.Point(129, 120);
this.fkMeasureDimIDComboBox.Name = "fkMeasureDimIDComboBox";
this.fkMeasureDimIDComboBox.Size = new System.Drawing.Size(200,
21);
this.fkMeasureDimIDComboBox.TabIndex = 9;
this.fkMeasureDimIDComboBox.ValueMember = "pkMeasureDimID";
this.fkMeasureDimIDComboBox.SelectedValueChanged += new
System.EventHandler(this.EditsBegun);
//
// fkMeasureUnitIDComboBox
//
this.fkMeasureUnitIDComboBox.DataBindings.Add(new
System.Windows.Forms.Binding("SelectedValue", this.bsMTask,
"fkMeasureUnitID", true));
this.fkMeasureUnitIDComboBox.DataSource = this.bsMeasureUnit;
this.fkMeasureUnitIDComboBox.DisplayMember = "Unit";
this.fkMeasureUnitIDComboBox.DropDownStyle =
System.Windows.Forms.ComboBoxStyle.DropDownList;
this.fkMeasureUnitIDComboBox.FormattingEnabled = true;
this.fkMeasureUnitIDComboBox.Location = new
System.Drawing.Point(129, 146);
this.fkMeasureUnitIDComboBox.Name = "fkMeasureUnitIDComboBox";
this.fkMeasureUnitIDComboBox.Size = new System.Drawing.Size(200,
21);
this.fkMeasureUnitIDComboBox.TabIndex = 11;
this.fkMeasureUnitIDComboBox.ValueMember = "pkMeasureUnitID";
this.fkMeasureUnitIDComboBox.SelectedValueChanged += new
System.EventHandler(this.EditsBegun);
//
// fkPhaseIDComboBox
//
this.fkPhaseIDComboBox.DataBindings.Add(new
System.Windows.Forms.Binding("SelectedValue", this.bsMTask, "fkPhaseID",
true));
this.fkPhaseIDComboBox.DataSource = this.bsPhase;
this.fkPhaseIDComboBox.DisplayMember = "Phase";
this.fkPhaseIDComboBox.DropDownStyle =
System.Windows.Forms.ComboBoxStyle.DropDownList;
this.fkPhaseIDComboBox.FormattingEnabled = true;
this.fkPhaseIDComboBox.Location = new System.Drawing.Point(129,
68);
this.fkPhaseIDComboBox.Name = "fkPhaseIDComboBox";
this.fkPhaseIDComboBox.Size = new System.Drawing.Size(200, 21);
this.fkPhaseIDComboBox.TabIndex = 5;
this.fkPhaseIDComboBox.ValueMember = "pkPhaseID";
this.fkPhaseIDComboBox.SelectedValueChanged += new
System.EventHandler(this.EditsBegun);
//
// bsPhase
//
this.bsPhase.DataMember = "Phase";
this.bsPhase.DataSource = this.dataSetHipAdmin;
this.bsPhase.Sort = "ord";
//
// taPhase
//
this.taPhase.ClearBeforeFill = true;
//
// AddEditMasterTask
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(612, 456);
this.Controls.Add(fkPhaseIDLabel1);
this.Controls.Add(this.fkPhaseIDComboBox);
this.Controls.Add(fkMeasureUnitIDLabel);
this.Controls.Add(this.fkMeasureUnitIDComboBox);
this.Controls.Add(fkMeasureDimIDLabel);
this.Controls.Add(this.fkMeasureDimIDComboBox);
this.Controls.Add(pkMTaskIDLabel);
this.Controls.Add(this.pkMTaskIDTextBox);
this.Controls.Add(descriptionLabel);
this.Controls.Add(this.descriptionTextBox);
this.Controls.Add(baseTimeLabel);
this.Controls.Add(this.baseTimeTextBox);
this.Controls.Add(allowParticipationLabel);
this.Controls.Add(this.allowParticipationCheckBox);
this.Controls.Add(allowQuantityLabel);
this.Controls.Add(this.allowQuantityCheckBox);
this.Controls.Add(ordLabel);
this.Controls.Add(this.ordTextBox);
this.Controls.Add(configuredDisplayLabel);
this.Controls.Add(this.configuredDisplayCheckBox);
this.Controls.Add(contractorCommentsLabel);
this.Controls.Add(this.contractorCommentsTextBox);
this.Controls.Add(modifiedDateLabel);
this.Controls.Add(this.modifiedDateDateTimePicker);
this.Name = "AddEditMasterTask";
this.Text = "AddEditMTask";
this.Controls.SetChildIndex(this.btnNew, 0);
this.Controls.SetChildIndex(this.btnDelete, 0);
this.Controls.SetChildIndex(this.btnSave, 0);
this.Controls.SetChildIndex(this.btnCancel, 0);
this.Controls.SetChildIndex(this.lblDialogTitle, 0);
this.Controls.SetChildIndex(this.modifiedDateDateTimePicker, 0);
this.Controls.SetChildIndex(modifiedDateLabel, 0);
this.Controls.SetChildIndex(this.contractorCommentsTextBox, 0);
this.Controls.SetChildIndex(contractorCommentsLabel, 0);
this.Controls.SetChildIndex(this.configuredDisplayCheckBox, 0);
this.Controls.SetChildIndex(configuredDisplayLabel, 0);
this.Controls.SetChildIndex(this.ordTextBox, 0);
this.Controls.SetChildIndex(ordLabel, 0);
this.Controls.SetChildIndex(this.allowQuantityCheckBox, 0);
this.Controls.SetChildIndex(allowQuantityLabel, 0);
this.Controls.SetChildIndex(this.allowParticipationCheckBox, 0);
this.Controls.SetChildIndex(allowParticipationLabel, 0);
this.Controls.SetChildIndex(this.baseTimeTextBox, 0);
this.Controls.SetChildIndex(baseTimeLabel, 0);
this.Controls.SetChildIndex(this.descriptionTextBox, 0);
this.Controls.SetChildIndex(descriptionLabel, 0);
this.Controls.SetChildIndex(this.pkMTaskIDTextBox, 0);
this.Controls.SetChildIndex(pkMTaskIDLabel, 0);
this.Controls.SetChildIndex(this.fkMeasureDimIDComboBox, 0);
this.Controls.SetChildIndex(fkMeasureDimIDLabel, 0);
this.Controls.SetChildIndex(this.fkMeasureUnitIDComboBox, 0);
this.Controls.SetChildIndex(fkMeasureUnitIDLabel, 0);
this.Controls.SetChildIndex(this.fkPhaseIDComboBox, 0);
this.Controls.SetChildIndex(fkPhaseIDLabel1, 0);
((System.ComponentModel.ISupportInitialize)(this.dataSetHipAdmin)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bsMTask)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bsMeasureDim)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bsMeasureUnit)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bsPhase)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private HIPAdminAccess.DataSetHipAdmin dataSetHipAdmin;
private System.Windows.Forms.BindingSource bsMTask;
private System.Windows.Forms.TextBox pkMTaskIDTextBox;
private System.Windows.Forms.TextBox descriptionTextBox;
private System.Windows.Forms.TextBox baseTimeTextBox;
private System.Windows.Forms.CheckBox allowParticipationCheckBox;
private System.Windows.Forms.CheckBox allowQuantityCheckBox;
private System.Windows.Forms.TextBox ordTextBox;
private System.Windows.Forms.CheckBox configuredDisplayCheckBox;
private System.Windows.Forms.TextBox contractorCommentsTextBox;
private System.Windows.Forms.DateTimePicker
modifiedDateDateTimePicker;
private
HIPAdminAccess.DataSetHipAdminTableAdapters.MTaskTableAdapter taMTask;
private System.Windows.Forms.BindingSource bsMeasureDim;
private System.Windows.Forms.BindingSource bsMeasureUnit;
private
HIPAdminAccess.DataSetHipAdminTableAdapters.MeasureUnitTableAdapter
taMeasureUnit;
private
HIPAdminAccess.DataSetHipAdminTableAdapters.MeasureDimTableAdapter
taMeasureDim;
private System.Windows.Forms.ComboBox fkMeasureDimIDComboBox;
private System.Windows.Forms.ComboBox fkMeasureUnitIDComboBox;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ComboBox fkPhaseIDComboBox;
private System.Windows.Forms.BindingSource bsPhase;
private
HIPAdminAccess.DataSetHipAdminTableAdapters.PhaseTableAdapter taPhase;
}
}
=== end of partial class ===
Thank you Tag: child form location Tag: 115031
Before the Composite Application Block
Hello,
Ive been looking at the Patterns practises site. The UI App Block appears to
have been phased out. Although you can access it the tone appears to be
"dont - theres something better". But the only other "thing" i can find is
the CAB. This appears to be quite a heavy weight solution.
Is there anything in the middle for a comparatively simple standalone CRM
solution? Should we be just be looking towards the Enterprise library and
rolling our own from there? The CAB looks like it could be useful in long
term future. i.e. a standalone CRM kinda sounds like a contridiction in
terms.... so plugging into other apps and services will be an obvious
evolution... but again the tone of the CAB seems very Fortune 500 and heavy
weight.
Any thoughts appreciated.
Richard Tag: child form location Tag: 115030
Add Custom Objects to Windows Form
What do I need to do to take a custom business object, and make it so
that it will be available to the VS designer? I'm thinking similar to
how a dataset or TableAdapter are done, where the objects appear at
the bottom in VS, and I can use the designer to set their properties
and events.
Thanks. Tag: child form location Tag: 115028
ClickOnce .application displayed as XML
Hello everybody,
I am trying to deploy an application using ClickOnce, but i have a problem:
sometimes in IE the .application file cannot be interpreted. What I already
know, to save you some time / posts:
- I am not referring to the problem in FF or other browsers:
http://blogs.msdn.com/saurabh/archive/2006/03/02/541988.aspx . I am referring
to IE, specifically 6.0.2
- The computer on which i see the problem has .NET 2.0 installed
- The application which i am referring to can be installed on other machines
(at least with IE 7 which i tried so far).
Thanks,
--
Mihai TÄ?tÄ?ran Tag: child form location Tag: 115026
NotifyIcon1 visibility
I want my notifyIcon to appear and disappear depending on events in my
application.
I change the visible attribute to true or false several times depending on
events.
Sometimes it works and sometimes it doesn't. Sometimes I get two notificatio
icons.
Is there a trick to refresh this icon in a more reliable way?
--
Arne Garvander
Certified Geek
Professional Data Dude Tag: child form location Tag: 115022
Question about custom cursor with remote desktop connection
Hello,
I'm using IntPtr LoadCursorFromFile(String str) to use my own cursors and
everything works okay. However, when I run the application via remote desktop
I see both my own cursor displayed plus the system arrow pointer? I'm using
.NET Framework 2.0
Thanks,
Doug Tag: child form location Tag: 115020
1327 Invalid E drive
I am trying to uninstall symantic antivirus corporate edition. When I run
the uninstall application I get invalid E drive error 1327. I have gone to
the symantic website and they have instructions for manually uninstalling, by
navigating the subkey. I don't know how to get to the subkey (HKEY). Can
someone tell me how to get to these places? Tag: child form location Tag: 115014
Restore Windows
I have a window that is waiting for an event to occur. While waiting the
operator may minimize the window.
When the event occur I would like to restore the window and bring it into
focus. How can I do that programmtically?
--
Arne Garvander
Certified Geek
Professional Data Dude Tag: child form location Tag: 115003
enabling menu items and shortcut keys.
I have an edit menu with the usual menu items (cut, copy, paste...). In the
EditMenu DropDownOpening event, I enable or disable the individual items
depending on the state of my app. The default condition is disabled.
This works fine and the user can never get to an item that the app is not in
a state to handle since the individual enable/disable state is set when the
user looks at them. However, I have menu shortcut keys (e.g., CTL-C for
copy). If the menu has not been opened, it is disabled and consequently the
shortcut key is also disabled.
This is not the standard operating procedure, as demonstrated by Word for
example.
What is the pattern for enabling menu items and shortcuts? Is there a demo
that shows the "right" way to do this?
Thx
Marc Tag: child form location Tag: 115001
Access violation Attempt to Read/Write Protected Memory Vista
vb .net application that is trying to access the default printer to get
printer settings. In Vista I get an invalid operation exception. I thought at
first because there was no local printer defined only shared printers so I
created a dummy local default printer but get the same error. The code works
for Windows XP.
In stack trace the last code entered was
system.drawing.safenativemethods.documentproperties Tag: child form location Tag: 114992
=?ISO-8859-1?Q?**_**The_Grand_Bazaar*_<http://turkeyphotogallery.?=
** **The Grand Bazaar* <http://turkeyphotogallery.blogcu.com/4698692/
>
** **Fatih Sultan Mehmet Bridge as seen from
Rumelihisar=FD*<http://turkeyphotogallery.blogcu.com/4698422/>
** **Bosphorus Bridge* <http://turkeyphotogallery.blogcu.com/4698382/
>
** **Maslak financial district*<http://turkeyphotogallery.blogcu.com/
4698448/>
** **Galata Tower * <http://turkeyphotogallery.blogcu.com/4697421/>
** **The famous Maiden's (Leander's) Tower was originally built by
Alcibiades in 408 BC* <http://turkeyphotogallery.blogcu.com/4697401/>
** **The Obelisk of Thutmosis III at the Hippodrome of Constantinople
was
brought from the Temple of Karnak in Egypt by Theodosius the
Great*<http://turkeyphotogallery.blogcu.com/4697394/>
** **Satellite photo over Istanbul and the
Bosphorus*<http://turkeyphotogallery.blogcu.com/4697380/>
** **Portion of the legendary walls of Troy (VII), identified as the
site of
the Trojan War (ca. 1200 BCE)*<http://turkeyphotogallery.blogcu.com/
4697368/>
** **The Celsus Library in Ephesus, dating from 135
CE*<http://turkeyphotogallery.blogcu.com/4697360/>
** **Mustafa Kemal Atat=FCrk, founder and first President of the
Republic of
Turkey* <http://turkeyphotogallery.blogcu.com/4697353/>
** **F-247 TCG KemalReis is a SalihReis (MEKO 200TN II-B) class
frigate of
the Turkish Navy* <http://turkeyphotogallery.blogcu.com/4697340/>
** **A KC-135R-CRAG Stratotanker of the Turkish Air Force refueling
TAI-built F-16 fighter jets* <http://turkeyphotogallery.blogcu.com/
4697333/>
** **Roosevelt, =DDn=F6n=FC and Churchill at the Second Cairo Conference in
December 1943* <http://turkeyphotogallery.blogcu.com/4697322/>
** **Orhan Pamuk, winner of the 2006 Nobel Prize in
Literature*<http://turkeyphotogallery.blogcu.com/4697177/>
** **Sufi whirling dervishes*<http://turkeyphotogallery.blogcu.com/
4697162/>
** **Caf=E9s at the port of =DDzmir*<http://turkeyphotogallery.blogcu.com/
4697150/>
** **=DDstiklal Avenue in Istanbul's cosmopolitan Beyo=F0lu
district*<http://turkeyphotogallery.blogcu.com/4697139/>
** **TCDD high speed train* <http://turkeyphotogallery.blogcu.com/
4697118/>
** **Esenbo=F0a International Airport in
Ankara*<http://turkeyphotogallery.blogcu.com/4697101/>
** **Selimiye Mosque, built in 1575 in
Edirne*<http://turkeyphotogallery.blogcu.com/4696999/>
** **The Sultan Ahmed Mosque (Blue
Mosque)*<http://turkeyphotogallery.blogcu.com/4696966/>
** **The Grand Chamber of the Grand National Assembly of Turkey in
Ankara*<http://turkeyphotogallery.blogcu.com/4696942/>
** **Motto:Peace at Home, Peace in the
World*<http://turkeyphotogallery.blogcu.com/4692513/>
** **LocationTurkey* <http://turkeyphotogallery.blogcu.com/4692506/>
** **Republic of Turkey Flag*<http://turkeyphotogallery.blogcu.com/
4692503/>
** **Republic of Turkey Emblem*<http://turkeyphotogallery.blogcu.com/
4692501/>
*Pera Museum during the Rembrandt exhibition in
2006*<http://turkeyphotogallery.blogcu.com/4698598/>
** **Istanbul's T=FCnel (1875) is the world's second-oldest subway line
after
London's Underground* <http://turkeyphotogallery.blogcu.com/4698570/>
** **Haydarpa=FEa Terminal * <http://turkeyphotogallery.blogcu.com/
4698557/>
** **Subway connection between Kabata=FE and Taksim
Square*<http://turkeyphotogallery.blogcu.com/4698551/>
** **Historic tram on =DDstiklal
Avenue*<http://turkeyphotogallery.blogcu.com/4698538/>
** **Basilica Cistern* <http://turkeyphotogallery.blogcu.com/4698532/
>
** **Valens Aqueduct* <http://turkeyphotogallery.blogcu.com/4698528/>
** **Fatih Sultan Mehmet Bridge and the skyline of Levent financial
district
* <http://turkeyphotogallery.blogcu.com/4698519/>
** **View of Taksim and Levent from The Marmara Hotel, with the
"Conference
Valley" in the center of the
frame*<http://turkeyphotogallery.blogcu.com/4698513/>
** **Street level view of Levent as seen from the entrance of
Metrocity*<http://turkeyphotogallery.blogcu.com/4698505/>
** **Streets of Ni=FEanta=FE=FD, the fashion district of Istanbul and seat
of the
Turkish textiles industry* <http://turkeyphotogallery.blogcu.com/
4698460/>
** **View of the city from G=FClhane Park near Topkap=FD
Palace*<http://turkeyphotogallery.blogcu.com/4698398/>
** **S. Antonio di Padova* <http://turkeyphotogallery.blogcu.com/
4698374/>
** **Arap Mosque* <http://turkeyphotogallery.blogcu.com/4698366/>
** **Sultan Ahmet Mosque* <http://turkeyphotogallery.blogcu.com/
4698319/>
** **The 6 km (4 mi) long Ba=F0dat Avenue
*<http://turkeyphotogallery.blogcu.com/4698311/>
** **=DDstiklal Avenue in Beyo=F0lu*<http://turkeyphotogallery.blogcu.com/
4698300/>
** **Akmerkez in the quarter of
Etiler*<http://turkeyphotogallery.blogcu.com/4698287/>
** **Yal=FDs in Arnavutk=F6y* <http://turkeyphotogallery.blogcu.com/
4698274/>
** **Dolmabah=E7e Palace* <http://turkeyphotogallery.blogcu.com/4698269/
>
** **Ortak=F6y Mosque and the Bosphorus
Bridge*<http://turkeyphotogallery.blogcu.com/4698261/>
** **Topkap=FD Palace* <http://turkeyphotogallery.blogcu.com/4698254/>
** **Exterior view of the Hagia
Sophia*<http://turkeyphotogallery.blogcu.com/4698240/>
** **=D6l=FCdeniz near Fethiye in the Turkish
Riviera*<http://turkeyphotogallery.blogcu.com/4697048/>
** **Mt. Ararat is the highest peak in Turkey at 5,165 m (16,946
ft)*<http://turkeyphotogallery.blogcu.com/4697037/>
--
TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
-
* 76-100 TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/
4741072/>
* Sheraton Hotel & Convention Center
(1991)<http://turkeyphotogallery.blogcu.com/4741061/>
* Sheraton Hotel and Beymen
Building<http://turkeyphotogallery.blogcu.com/4741058/>
* Atakule Tower (1989) <http://turkeyphotogallery.blogcu.com/
4741054/>
* Botanik Park in central
Ankara<http://turkeyphotogallery.blogcu.com/4740982/>
* Kurtulu=FE Park in central Ankara
2<http://turkeyphotogallery.blogcu.com/4740962/>
* Ku=F0ulu Park, famous for its swans, geese and
ducks<http://turkeyphotogallery.blogcu.com/4740978/>
* Kurtulu=FE Park in central Ankara
3<http://turkeyphotogallery.blogcu.com/4740973/>
* Kurtulu=FE Park in central
Ankara<http://turkeyphotogallery.blogcu.com/4740958/>
* Dikmen Valley Park <http://turkeyphotogallery.blogcu.com/4740951/
>
* Evcil Hayvanlar Park in
Ke=E7i=F6ren<http://turkeyphotogallery.blogcu.com/4740950/>
* Se=F0menler Park in central Ankara
2<http://turkeyphotogallery.blogcu.com/4740947/>
* Se=F0menler Park in central
Ankara<http://turkeyphotogallery.blogcu.com/4740942/>
* An odd-eyed Turkish Angora<http://turkeyphotogallery.blogcu.com/
4741117/>
* Armada Tower & Shopping Center
(2002)<http://turkeyphotogallery.blogcu.com/4741110/>
* Akman Tower (1999) <http://turkeyphotogallery.blogcu.com/4741108/
>
* Port of =DDzmir as seen from Konak
Pier<http://turkeyphotogallery.blogcu.com/4741107/>
* Egypto-Hittite Peace Treaty<http://turkeyphotogallery.blogcu.com/
4740926/>
* Relief of Suppiluliuma II, last known king of the Hittite
Empire<http://turkeyphotogallery.blogcu.com/4740923/>
* Mountain pastures of northern
Anatolia<http://turkeyphotogallery.blogcu.com/4740920/>
* Scene from southern Anatolia<http://turkeyphotogallery.blogcu.com/
4740917/>
* Relief map of Turkey <http://turkeyphotogallery.blogcu.com/
4740908/>
* Anatolia and Europe <http://turkeyphotogallery.blogcu.com/4740904/
>
* Emek Business Center (1962) on K=FDz=FDlay
Square<http://turkeyphotogallery.blogcu.com/4741033/>
* Buildings on K=FDz=FDlay Square<http://turkeyphotogallery.blogcu.com/
4741037/>
Ba=F0lant=FDlar=FDm* TURKEY PHOTO GALLERY<http://
turkeyphotogallery.blogcu.com/>
* PROF=DDL=DDM <http://turkeyphotogallery.blogcu.com/profile/>
* T=DCM YAZI AR=DE=DDV=DD <http://turkeyphotogallery.blogcu.com/archive/>=
* 500 S=DCPER L=DDNK<http://igooglenews.blogspot.com/2007/12/500-sper-
link.html>
Kategoriler
- 1-25 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
- 26- 50 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/26-+50+TURKEY+PHOTO
+GALLERY/>
- 51- 75 TURKEY PHOTO GALLERY
<http://turkeyphotogallery.blogcu.com/51-+75+TURKEY+PHOTO+GALLERY++/
>
- 76- 100 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/76-+100+TURKEY+PHOTO
+GALLERY/>
- ANKARA PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/ANKARA+PHOTO+GALLERY/>
- Emblem <http://turkeyphotogallery.blogcu.com/Emblem/>
- Flag <http://turkeyphotogallery.blogcu.com/Flag/>
- ISTANBUL PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/ISTANBUL+PHOTO+GALLERY/>
- Motto <http://turkeyphotogallery.blogcu.com/Motto/>
- SUPER DUVAR
KAGITLARI<http://turkeyphotogallery.blogcu.com/SUPER+DUVAR+KAGITLARI/
>
-
------------------------------
*FERRAR=DD PHOTO GALLERY* <http://ferrariphotogallery.blogcu.com/>
------------------------------
*EUROPE PHOTO GALLERY* <http://europephotogallery.blogcu.com/>
* F-35A Lightning II <http://turkeyphotogallery.blogcu.com/4821479/>
* The first completed Boeing 737 AEW&C MESA aircraft of the Turkish
Air
Force taxis for test flight in
Seattle<http://turkeyphotogallery.blogcu.com/4821477/>
* The first completed Boeing 737 AEW&C MESA aircraft of the Turkish
Air
Force taxis for test flight in
Seattle<http://turkeyphotogallery.blogcu.com/4821470/>
* Heron MALE attack/surveillance
UAV<http://turkeyphotogallery.blogcu.com/4821466/>
* A sharkmouth F-4E Phantom II of the Turkish Air Force taxis for
takeoff<http://turkeyphotogallery.blogcu.com/4821461/>
* TuAF F-4E Phantom II <http://turkeyphotogallery.blogcu.com/4821454/
>
* A TuAF KC-135R-CRAG Stratotanker refueling F-16 fighter
jets<http://turkeyphotogallery.blogcu.com/4821449/>
* F-16 fighter jets from various Turkish Air Force squadrons in wing
formation <http://turkeyphotogallery.blogcu.com/4821433/>
* Turkish Army Paratroopers <http://turkeyphotogallery.blogcu.com/
4821406/>
* Turkish Army Commandos <http://turkeyphotogallery.blogcu.com/4821396/
>
* Turkish Army S-70 Black Hawk carrying Special Operations
troops<http://turkeyphotogallery.blogcu.com/4821388/>
* Maroon Berets (Special Forces) of the Turkish
Army<http://turkeyphotogallery.blogcu.com/4821381/>
* Blue Berets, Turkish Army
Paratrooper<http://turkeyphotogallery.blogcu.com/4821368/>
* Turkish troops during a NATO exercise
2<http://turkeyphotogallery.blogcu.com/4821351/>
* Turkish troops during a NATO
exercise<http://turkeyphotogallery.blogcu.com/4821330/>
* Turkish Army <http://turkeyphotogallery.blogcu.com/4821324/>
* Turkish Armed Forces T=FCrk Silahl=FD
Kuvvetleri<http://turkeyphotogallery.blogcu.com/4821317/>
* KAND=DDL DA=D0I HAR=DDTASI <http://turkeyphotogallery.blogcu.com/4821285/> Tag: child form location Tag: 114991
Drag and Drop Column headers (drag and drop using wndProc?)
I am trying to implement both right-click functionality and drag and
drop functionality on ColumnHeaders. Since ColumnHeaders have no
MouseEvents, I used wndProc to get the right click working, and now I
cannot figure out how to do the same for dragg and drop. Do I need
to use WndProc? If so, how? Is there an easier way? If so, how?
Thank you
Kamii Tag: child form location Tag: 114990
Color Scheme Guidelines?
So it seems Microsoft has purposefully abandoned the whole notion of
consistent color schemes on the OS level. It seems that in Vista, color
schemes in apps (toolbars, status bars, backgrounds, etc) are purposefully
DIFFERENT colors between apps for a reason.
My question is: Have they documented this anywhere? Are there "guidelines"
for how to decide what color scheme to use. There must be some rhyme and
reason!??!
Here's what I've surmised so far:
- Turquoise = Generic system stuff like Explorer.
- Dark Blue = Minor Accessories like Windows Mail, Calendar, Fax & Scan etc.
- Black = Media stuff like Media Player and Photo Gallery.
- Light Blue = Office/Productivity apps. Or is this just special to MS
Office? Why in Office 2007 can you change the color of the "ribbon" apps but
ALL other apps (like Publisher, OneNote, etc) remain light-blue *no matter
what.*
- Grey = All other legacy and/or programming like Visual Studio. Tag: child form location Tag: 114983
JIT-compiled output
Hello
I'm learning about .Net, and was wondering about what happens
with the JIT-compiled EXE.
The first time I run my little "Hello, world!" sample, it's a bit
slow, but if I run it again, it's as fast as a VB Classic program.
If that is indeed due to JIT, where does Windows keep the compiled
version: In RAM? In a temporary directory? If the latter, is the
JIT-compiled output kept until the user logs off?
Is there a way to distribute a compiled version of my VB.Net app, so
that performance is as good as my VB Classic apps, even the first time
users launch it?
Thank you. Tag: child form location Tag: 114980
Dataset questions, vs2008
Hi
1. I am filling the dataset in my form load method as;
Me.MyTableAdapter.Fill(Me.MyDataSet.Clients).
What about the records that other users add to the database? Do I need to
run the fill command from time to time or will dotnet automatically fetch
these records periodically?
2. I am saving the data as below;
Me.Validate()
Me.MyBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.MyDataSet)
How will system react when concurrency violation occurs? How will system
inform me of it and how can I handle that?
Thanks
Regards Tag: child form location Tag: 114977
bindingsource not filling in custom list.
I am using a bindingsource as the datasource to a datagridview. In the
bindingsource properties, I set DataSource to "TaskSchedule", a class derived
from List<ScheduleItem>. I perform all schedule operations
(add/delete/modify) via BindingSource's Item, Add, and Remove methods. The
app works "properly" but BindingSource.List does not give me a TaskSchedule
object back. In fact, I can find nothing that looks like a TaskSchedule from
the BindingList.
If I change BindingList.Datasource to ScheduleItem, the application works
the same way.
Why is BindingSource not creating a TaskSchedule, or giving me a way to give
it a TaskSchedule object to use as a datasource? (I want to continue to set
the DataSource type at design time so that the DataGridView will generate the
columns for me)
Thx
Marc Tag: child form location Tag: 114970
[VS2005] XP-style taskpane widget?
Hello
I'm only getting started with VB.Net. I installed VS 2005 Pro, and
would like to add an XP-style taskpane widget to a form:
http://www.bcgsoft.com/BCGCBTour/Images/TasksPane.jpg
I guess there are a bunch of them available. Among the most well
known, which would you recommend?
Thank you. Tag: child form location Tag: 114968
Windows Form DesignTime/Mode Detection
Hi, I'm a novice in .NET Windows Forms programming. Recently, I was stumbled
by a puzzle, regarding how to determine whether the code is currently
executing under design-time or not.
My code was written in C# under Visual Studio .NET 2003. In my project, I
just created a Windows Form as a base form, and then inherited another
Windows Form based on that one. Everything works fine. But, after I had
added some custom code into the base form's OnLoad event handler, the
problem occurs that the inherited form can no longer be openned in the
designer. And the designer says that "An error occurred while loading the
document".
Here is the skeleton code snippets:
public class MyBaseForm : System.Windows.Forms.Form
{
protected override void OnLoad(EventArgs e)
{
try
{
// some custom code was added here,
// which may be error prone at design time
...
}
catch
{
}
base.OnLoad (e);
}
}
public class InheritedForm : MyBaseForm
{
// this inherited form can not be loaded by the designer,
// if some error was thrown within the base form's code
...
}
So, the question is obvious. How to make a design mode detection and avoid
uncessary errors during design-time in my custom code?
Thanks,
Laser Lu Tag: child form location Tag: 114967
need advice on controller and forms
I have a use case that deals with Invoicing. I have 3 forms along with a
controller class that deals with this use case. The main form of the
application contains a User Control called InvoiceList that displays a list
of invoices in a grid. The user has the option of either adding a new
invoice, editing an existing invoice or deleting an invoice. If the user
chooses to add or edit an invoice, an invoice form is displayed. The
invoice form displays a particular invoice along with the detail lines. If
the user chooses to add or edit a detail line, a detail form is displayed
for that purpose.
I want all 3 forms to use the same controller class InvoiceController.
What is the best way to create the controller and make it available to all 3
forms? Who should create the controller? Should the view or should the
controller create the view? etc. etc.
Bill Tag: child form location Tag: 114965
Creating wizard
Hi
I need to create a wizard in my application. Are there any third party
controls that provide some sort of framework to help write one? I just want
to save some time if I can.
Thanks
Regards Tag: child form location Tag: 114964
Label control inside panel or groupbox is grayed
I have created a panel (or groupbox) control on top of my form control.
I have placed a label inside.
I have set the visible property of the panel (or groupbox) to false.
During execution, I want to display the text of the label inside the panel
(or groupbox) as a message to the user on top of my form.
When I set the panel (or groupbox) to visible at runtime, the label text
inside is either not visible or grayed.
Why? How to resolve? Tag: child form location Tag: 114958
WebBrowser control and Javascript / Security
Hello,
I was wondering if there is a way to modify the WebBrowser control so
that it enables javascript by default in a Win 2003 environment with
the enhanced internet explorer security.
I have read various FAQs on the topic, and all seem to point to a
white paper "Adjusting WebBrowser Permissions With
InternetSecurityManager" on MSDN. However, I cannot find this white
paper for the life of me.
Would anyone know where this whitepaper may be? Or if there is a way
to modify the WebBrowser permissions?
Thanks for your time Tag: child form location Tag: 114957
how we control size of .net2005 controls on change of Display Unit
hi...
i have a problem regarding. i had developd a program related to dispaly info
system.i used a winform and used some lables on tat.i fixed the winForm
windowstate is maximized and set winfrom Size=1024x768. The from and
applicationwch i hd create in 1024x768 resulation.
Now the problem i am facing is..this application used display unit.
Which is Plasma and TFT wide screen...when my application run on tat display
unit then my form layout adjust with that but controls wich i used on tat
from is not adjust with the change of Display unit..
it show some blank area in left and bottom.
i want that as like form can adjust wid display unit..same as winform
controls cab adjust with diplay unit.
Have anybody an idea ...???
how can i make this to be generalize..??
Thanks in advance, Tag: child form location Tag: 114954
MVP model - controlling forms
Hiya
A quick question. I'm using the MVP design pattern to write a Windows Forms
application. I understand the principle behind it and can write a presenter
that controls an associated view. The View creates the Presenter and passes
itself in to the constructor of the Presenter.
However, when I want to launch a child form as a result of e.g. a button
click - who does the responsibility lie with? It can't lie with the
Presenter because the Presenter shouldn't be closely coupled with any
particular UI implementation - and to enforce this, my Presenters are in a
separate assembly to the UI one. The UI references the Presentation assembly
and you can't reference the other way as well because of circular
dependency.
It could lie with the Form but then you start putting business logic in your
UI tier rather than your presentation tier, which I don't want to do.
Should there be a third, controlling entity which orchestrates transitions
from one screen to another?
I've Googled for this a bit and other people seem to be having the same
question - any suggestions gratefully received.
Cheers
Isaac Tag: child form location Tag: 114945
System tray // still running...............
Hi,
After I close my application, it still is avaialable in the system tray
proces window, how can I kill this proces while my application shut's down?
it seems that everytime the application is started, a new process becomes
available....... and memory is allocated
--
Best regards
Luc Tag: child form location Tag: 114943
right function equivalent in vb.net
If you dont want to use the visualbasic namespace here is the simple
right function equivalent in vb.net:
Private Function Right(ByVal str As String, _
ByVal Length As Integer) As
String
Right = str.Substring(str.Length - Length)
End Function Tag: child form location Tag: 114942
TextBox and vertical scroll bar
Say please, can we adjust TextBox so that the multiline = true when there
was no vertical scroll line until it is not necessary? (Now there is a
vertical scrolling, but in an inactive state). Ie to do so, as in
RichtextBox default.
http://www.alvas.net - Audio tools for C# and VB.Net developers + Christmas
discount Tag: child form location Tag: 114938
Programmatically scrolling
Hi all,
I'm struggling with a winforms problem considering scrolling.
I'm using a free table class xptable (you can find it on sourceforge),
which implements a table control.
It's all working quite easily and performant.
Now I'm having the following : column 1 of the table control should
allways be visible. When you scroll, you will allways see column 1,
the other columns will scroll normally.
Since I have all the code I rewrote the horizontal scrolling function
a bit, and made a clipped rectangle of my first column.
This works, BUT when I resize the window the control is redrawn.
How can I make this work in a clean way?
Some other thing that I tried, is to make 2 tables of it, the first
table only containing that one column, and no scrolling.
This works in the way that only the right table has horizontal and
vertical scrolling abilities. so for the horizontal part it is ok.
But, when the right table is scrolled down, the left should scroll
down too, and that doesn't work.
Can anybody help me with these scrolling issues, give good articles
about it or anything.
Thanks,
Greetz,
Koen Tag: child form location Tag: 114936
How to use MODI dll in VB.Net application
Hi All,
I am new to .Net. I am developing a module for scanning passport
copies and extracting the text. Can anyone guide me on this ? I heard
about MODI and got a sample source code. I downloaded
mdivwctl.dll. Where should I copy the dll and how can I use it for my
application. I am currently running MS Office 2007.
Thanks in advance for any help.
Prakash. Tag: child form location Tag: 114934
ThreadStateException when show the OpenFileDialog in the windows
Hi all:
In my windows services project, I add a windows form to the project
that act as the service control monitor, the form (frmInvestorProfile)
has a method to launch the OpenFileDialog, when run in the IDE it will
raise the following exception
ThreadStateException: Current thread must be set to single thread
apartment (STA) mode before OLE calls can be made. Ensure that your
Main function has STAThreadAttribute marked on it. This exception is
only raised if a debugger is attached to the process.
Here is the entry point of the service:
<MTAThread()> _
Shared Sub Main(ByVal args() As String)
If args.Length > 0 Then
If args(0).ToLower = "/i" Then
InstallService()
ElseIf args(0).ToLower = "/u" Then
UnInstallService()
End If
Else
Dim svc As ServiceController = Nothing
For Each itm As ServiceController In
ServiceController.GetServices
If itm.ServiceName = svcInstaller.SERVICE_NAME Then
svc = itm
Exit For
End If
Next
If svc Is Nothing OrElse svc.Status =
ServiceControllerStatus.Running Then
Application.Run(New frmInvestorProfile)
Else
If svc.Status <> ServiceControllerStatus.Running Then
Dim ServicesToRun() As
System.ServiceProcess.ServiceBase
ServicesToRun = New System.ServiceProcess.ServiceBase()
{New svcUpdateDailyNAV}
System.ServiceProcess.ServiceBase.Run(ServicesToRun)
End If
End If
End If
End Sub
My Questions are:
1. If running in WinXP (outside the IDE) the service control monitor
form can show the OpenFileDialog, but in Vista it will hang. I
remember it work on Vista before, but after install the VS2008 and
couples of Vista update (I'm not sure it is cause by these reason) it
no longer work.
2. By default VS2005 generate the service entry point using
<MTAThread()> is it ok to change it to <STAThread> ?
Thanks
JCVoon Tag: child form location Tag: 114932
Click once deployment
With click-once deployment, would that content of the app.config/
myapp.exe.config be safe from tampering by the user?
My deployment directory is read-only for the user.
--
Arne Garvander
Certified Geek
Professional Data Dude Tag: child form location Tag: 114929
.Net Conversion and Third Party Controls
Hi All,
I was asked to look into the ComponentsOne Studio Enterprise and
Infragistics NetAdvantage packages to compare the pros and cons between
them, and see if these components can greatly help us rewrite one of our
main applications written in VB6 to .Net. This is a big application, it
currently uses COM, COM+, ActiveX... Has anyone used these 2 before? which
of the packages would you prefer (both window and web components)? Any
suggestions are greatly appreciated
Thanks
Sam Tag: child form location Tag: 114928
check disk space of a network drive
Does anyone know how to check diskspace of a network drive? The below
code works only for local drives.
The following returns an error "Object must be a root directory("C:\")
or a drive letter ("C"):
Dim di As System.IO.DriveInfo = New System.IO.DriveInfo("\\SERVER01\C
$")
Dim totalspace As Long = di.TotalSize
Thanks Before Hand,
Adiel Tag: child form location Tag: 114926
graphic Drag/drop challenge
I have to develop a program that will have two panes. The left pain is a
Tiff of a Loan Form. the right panel has a bunch of text boxes that are
populated from a database with text data. I have to allow the user to drag
the contents from the text boxes on the right and drop a rendering of the
onto the form. So, for instance, I drag the name of the loan applicant onto
the form and when it gets close to the place where name goes it will have a
snap capability that will make it easy for the user to drop it in exactly
the right place and it must be in the right font and point size.
I don't know how to do this. Is it possible in a managed code application?
Thanks,
T Tag: child form location Tag: 114925
DesignSurface et al
I have a Form, SkinForm, that uses this in the ctor:
m_surface = new DesignSurface();
IServiceContainer serviceContainer =
m_surface.GetService(typeof(IServiceContainer)) as IServiceContainer;
serviceContainer.AddService(typeof(IToolboxService ), toolbox1.Service);
serviceContainer.AddService(typeof(INameCreationSe rvice), new
NameCreationService());
serviceContainer.AddService(typeof(System.Windows. Forms.PropertyGrid),
Program.GetMainForm().GetPropertyGrid());
m_host = m_surface.GetService(typeof(IDesignerHost)) as IDesignerHost;
Control form = (Control)m_host.CreateComponent(typeof(MyDesignFor m));
// Set SelectionService - SelectionChanged event handler
m_selectionService = (ISelectionService)(serviceContainer.GetService(ty
peof(ISelectionService)));
m_selectionService.SelectionChanged += new
EventHandler(selectionService_SelectionChanged);
m_view = m_surface.View as Control;
m_view.Dock = DockStyle.Fill;
m_view.Parent = this;
This form is created by a mainform. The mainform has a toolbox and a
propertygrid. I can drag controls onto the SkinForm and select each and see
properties. The problem is that I dont exactly know how to create controls
at runtime and place them on the SkinForm so that they can be selected and
the properties show in the propertygrid. The controls typically would be
loaded from a database when the form loads. I have tried the following and
the controls show up, but they cannot be selected:
MyDesignForm frm = m_host.RootComponent as MyDesignForm;
frm.SetBitmap(m_Bitmap);
foreach (SkinButton button in m_skin.m_buttons)
{
Control clone = m_host.CreateComponent(button.GetType()) as Control;
clone = button;
frm.Controls.Add(clone);
}
What am I doing wrong? Can someone tell me how to make this work? Tag: child form location Tag: 114921
Load Text Tab Delimited File into a Dataset
Hi,
I'm having some dificulties to load a text tab delimited into a dataset,
I've tryied several things, including schema.ini file and so on.
Don't know where to go now, better I've done was load all file in one
column, guess I've to read it now and break it based on tab in another
dataset, but I think there's a better way to do it.
TIA
Ric Tag: child form location Tag: 114920
usercontrol garbage collector
Hello everybody!
I have a strange "bug" with my usercontrol :
Here what I try to do :
I instanciate my usercontrol to put it in a tabcontrol
Then I call a function of this usercontrol passing some parameters
like a dataset
In debug mode, when I try to access the data into the dataset (any
table) from the parent form, no problem.
BUT if I try to access data into the dataset (any table) from the
usercontrol, it keeps telling me it cannot evaluate the value since
the thread is stopped where the garbage collection cannot run ( and so
on, the real message is in french so...)
Any Ideas?
Thanks in advance ! Tag: child form location Tag: 114919
is dll Registered?
not sure this is the right forum for this but I don't know what is...
I inherited an application that has a lot of dlls. Some are unmanaged com
dlls and need to be registered.
How can I tell if the dll is com?
How can I tell if it's registered?
--
Regards,
Gary Blakely Tag: child form location Tag: 114914
WPF vs WinForms
Hi
Apart from simple test harnesses, I haven't done much with WinForms. As for
WPF, I know what it stands for :-)
Having Googled for a while, I couldn't find a no nonsense web site that
helps me understand where WinForm and WPF sit in the Microsoft world. For
example, is WPF the replacement for WinForms?
Please comment or point me to some decent articles. Please note that I am
mainly interested in these technologies from an Arcitecture point of view.
For example:
* Why would a company want to migrate an existing WinForms app to WPF (or is
that a silly question)
* If starting a new Windows application, what are the key considerations in
chossing between WinForms vs WPF
* Which environment is better suited for delivering functionaly rich GUI in
a RAD environment
Thanks
Amir Tag: child form location Tag: 114909
Closing a CAB application
Hi,
I have an application based upon Microsoft's CAB. There is a shell
application comprising ui extension sites, deck workspace etc. plus
several modules which are listed in the profilecatalog.
In general the modules are nothing more complicated than UserControls
containing DataGridViews, this kind of thing.
What I want to do is to trap when the user decides to close the
application, and when this happens for the modules to be able to do
some "tidy up" work. (For example, in one module I want to persist the
widths/presence of the datagridview columns, for the next time.)
However I am having a great deal of trouble hooking into any kind of
"close" event. Simplest of all, I couldn't find anything off the
UserControl or the DataGridView which told me when they were being
destroyed.
Other things I have tried so far have included trapping the WorkItem's
Terminating event. This fired, but only after the ui had been
destroyed, too late to write any data from the screen. Also, I hooked
my module into the Workspace's SmartPartClosing event, but this event
didn't fire.
I can't help thinking that this should be really obvious, and that
maybe I'm missing something. Any ideas anyone? Thanks. Tag: child form location Tag: 114907
Self-sufficient Winform app like Delphi?
Hello
I've never written a Winform application, and was wondering if it's
possible to compile a self-sufficient EXE even when using third-party
components, just like Delphi, in which case the only dependency is the
version of the .Net framework? Or am I required to also ship some
external files like DLL's, etc.?
Thanks. Tag: child form location Tag: 114900
*AMERICA PHOTO GALLERY* <http://americaphotogallery.blogcu.com/>
*AMERICA PHOTO GALLERY* <http://americaphotogallery.blogcu.com/>
------------------------------
United States of America PHOTO GALLERY
* Interstate 80, the second-longest U.S. Interstate highway, runs
from
California to New Jersey <http://americaphotogallery.blogcu.com/
4780730/>
* The USS Ronald Reagan aircraft
carrier<http://americaphotogallery.blogcu.com/4780673/>
* The north side of the White House, home and work place of the U.S.
president <http://americaphotogallery.blogcu.com/4780668/>
* The west front of the United States Capitol, which houses the
United
States Congress <http://americaphotogallery.blogcu.com/4780664/>
* Immigrants landing at Ellis Island, New York,
1902<http://americaphotogallery.blogcu.com/4780610/>
* U.S. growth by date of statehood and ratification of the
Constitution<http://americaphotogallery.blogcu.com/4780581/>
* Declaration of Independence, by John Trumbull,
1817-18<http://americaphotogallery.blogcu.com/4780577/>
* The Mayflower transported Pilgrims to the New World in
1620<http://americaphotogallery.blogcu.com/4780571/>
* Formerly endangered, the bald eagle has been the national bird of
the
United States since 1782 <http://americaphotogallery.blogcu.com/
4780567/>
* Climate zones of the continental United
States<http://americaphotogallery.blogcu.com/4780562/>
* Great Seal <http://americaphotogallery.blogcu.com/4780552/>
* Flag <http://americaphotogallery.blogcu.com/4779631/>
------------------------------
TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY
+PHOTO+GALLERY/>
------------------------------
*FERRAR=DD PHOTO GALLERY* <http://ferrariphotogallery.blogcu.com/>
------------------------------
*EUROPE PHOTO GALLERY* <http://europephotogallery.blogcu.com/>
DUBAI PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/DUBAI+PHOTO
+GALLERY/>
KONYA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/KONYA+PHOTO
+GALLERY/>
S=DCPER PHOTO GALLERY <http://turkeyphotogallery.blogcu.com/4775145/>
* Maiden Tower, a symbol of
Istanbul<http://turkeyphotogallery.blogcu.com/4775053/>
* Istanbuls unterschiedliche Namen auf osmanischen Poststempeln von
1880 bis
1925 <http://turkeyphotogallery.blogcu.com/4775297/>
* Nostaljik Tramvay <http://turkeyphotogallery.blogcu.com/4775294/>
* Moda Tramvay <http://turkeyphotogallery.blogcu.com/4775286/>
* =C7a=F0da=FE Tramvay <http://turkeyphotogallery.blogcu.com/4775280/>
* Istanbul Rapid Transit Map <http://turkeyphotogallery.blogcu.com/
4775274/>
* Im Inneren eines Metrobusses.<http://turkeyphotogallery.blogcu.com/
4775255/>
* Gesch=E4ftsviertel Levent <http://turkeyphotogallery.blogcu.com/
4775245/>
* =DE=FCkr=FC-Sara=E7o=F0lu-Stadion, <http://turkeyphotogallery.blogcu.com/
4775160/>
* Mosque; Aswan, Egypt. <http://turkeyphotogallery.blogcu.com/4775108/
>
* A mosque in Afghanistan. <http://turkeyphotogallery.blogcu.com/
4775105/>
* Das moderne Istanbul <http://turkeyphotogallery.blogcu.com/4775095/
>
* Rumeli Hisar=FD <http://turkeyphotogallery.blogcu.com/4775091/>
* Sultan Ahmet Camii <http://turkeyphotogallery.blogcu.com/4775090/>
* Dolmabah=E7e Saray=FD <http://turkeyphotogallery.blogcu.com/4775087/>
* Yerebatan Sarn=FDc=FD <http://turkeyphotogallery.blogcu.com/4775081/>
* Die Yeni Valide Camii am Goldenen
Horn.<http://turkeyphotogallery.blogcu.com/4775077/>
* Konstantinopel um 1910 <http://turkeyphotogallery.blogcu.com/4775075/
>
* Der Taksim-Platz <http://turkeyphotogallery.blogcu.com/4775068/>
* Sultan Mehmet the Conqueror Bridge across the
Bosporus<http://turkeyphotogallery.blogcu.com/4775059/>
* Mosques of Istanbul at dusk<http://turkeyphotogallery.blogcu.com/
4775043/>
* Motorway interchange in the northern suburb of
Maroussi.<http://turkeyphotogallery.blogcu.com/4774958/>
* The refurbished Athens Olympic Stadium
<http://turkeyphotogallery.blogcu.com/4774953/>
* Caf=E9 and bars in the central Kolonaki
district.<http://turkeyphotogallery.blogcu.com/4774944/>
1-25 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
101-125 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/101-125+Turkey+Photo
+Gallery/>
126-150 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/126-150+Turkey+Photo
+Gallery/>
151-175 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/151-175+Turkey+Photo
+Gallery/>
176-200 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/176-200+Turkey+Photo
+Gallery/>
201-225 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/201-225+Turkey+Photo
+Gallery/>
26- 50 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/26-+50+TURKEY+PHOTO
+GALLERY/>
51- 75 TURKEY PHOTO GALLERY
<http://turkeyphotogallery.blogcu.com/51-+75+TURKEY+PHOTO+GALLERY++/>
76- 100 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/76-+100+TURKEY+PHOTO
+GALLERY/>
ALANYA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ALANYA+PHOTO
+GALLERY/>
ANKARA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ANKARA+PHOTO
+GALLERY/>
ANTALYA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ANTALYA
+PHOTO+GALLERY/>
ATATURK PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ATATURK
+PHOTO+GALLERY/>
DUBAI PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/DUBAI+PHOTO
+GALLERY/>
Emblem <http://turkeyphotogallery.blogcu.com/Emblem/>
Fethiye Photo Gallery<http://turkeyphotogallery.blogcu.com/Fethiye
+Photo+Gallery/>
Flag <http://turkeyphotogallery.blogcu.com/Flag/>
iNEBOLU PHOTO GALLERY
<http://turkeyphotogallery.blogcu.com/iNEBOLU+PHOTO+GALLERY+/>
iSTANBUL PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/iSTANBUL
+PHOTO+GALLERY/>
iZMiR PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/iZMiR+PHOTO
+GALLERY/>
KONYA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/KONYA+PHOTO
+GALLERY/>
Marmaris Photo Gallery<http://turkeyphotogallery.blogcu.com/Marmaris
+Photo+Gallery/>
Motto <http://turkeyphotogallery.blogcu.com/Motto/>
SUPER DUVAR KAGITLARI<http://turkeyphotogallery.blogcu.com/SUPER+DUVAR
+KAGITLARI/>
Turkish Cuisine Photo
Gallery<http://turkeyphotogallery.blogcu.com/Turkish+Cuisine+Photo
+Gallery/>
WORLD PHOTO GALLERY
25<http://turkeyphotogallery.blogcu.com/WORLD+PHOTO+GALLERY+25/>
* 201- 225 TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/
4760239/>
* The Sultan Ahmed Mosque <http://turkeyphotogallery.blogcu.com/
4760233/>
* View of the dome <http://turkeyphotogallery.blogcu.com/4760229/>
* View of S=FCleymaniye Mosque from Karak=F6y across the Golden
Horn<http://turkeyphotogallery.blogcu.com/4760221/>
* S=FCleymaniye Mosque <http://turkeyphotogallery.blogcu.com/4760223/>
* 9th President of the Republic of
Turkey<http://turkeyphotogallery.blogcu.com/4760201/>
* Makbule, Z=FCbeyde Han=FDm and her son Mustafa
Kemal<http://turkeyphotogallery.blogcu.com/4760170/>
* Filyos Bay,Zonguldak <http://turkeyphotogallery.blogcu.com/4760166/
>
* The State Apartments in Y=FDld=FDz
Palace<http://turkeyphotogallery.blogcu.com/4760154/>
* Fountain at Yildiz Palace <http://turkeyphotogallery.blogcu.com/
4760143/>
* Reception Room in the Sale
Pavilion<http://turkeyphotogallery.blogcu.com/4760137/>
* Tourists at Su D=FC=FEen Waterfall, near Termal,
Yalova<http://turkeyphotogallery.blogcu.com/4759313/>
* Su D=FC=FEen Waterfall, near Termal,
Yalova<http://turkeyphotogallery.blogcu.com/4759303/>
* Monument for 17 August 1999,Earthquick victims, in Yalova
city<http://turkeyphotogallery.blogcu.com/4759293/>
* The Faculty of Arts & Social
Sciences<http://turkeyphotogallery.blogcu.com/4759192/>
* A panaromic view of the SU
campus<http://turkeyphotogallery.blogcu.com/4758616/>
* =DDnebolu Photo Gallery <http://turkeyphotogallery.blogcu.com/4758873/
>
* Sabanci University Center <http://turkeyphotogallery.blogcu.com/
4758730/>
* The lake with a view of the residence halls at the
background<http://turkeyphotogallery.blogcu.com/4758713/>
* Undergraduate dormitories seen at
night.<http://turkeyphotogallery.blogcu.com/4758692/>
* Inside the Information Center<http://turkeyphotogallery.blogcu.com/
4758657/>
* Sabanc=FD University's main library, also known as the Information
Center or
IC. <http://turkeyphotogallery.blogcu.com/4758650/>
* The observation tower <http://turkeyphotogallery.blogcu.com/4758637/
>
* A view from the stairs of the main dining
hall<http://turkeyphotogallery.blogcu.com/4758625/>
* =DDsa Bey Mosque in Sel=E7uk near =DDzmir, built by the Beylik of
Ayd=FDno=F0lu in
1375 <http://turkeyphotogallery.blogcu.com/4758547/>
Link* Main Page <http://turkeyphotogallery.blogcu.com/>
* Profile <http://turkeyphotogallery.blogcu.com/profile/>
* Archive <http://turkeyphotogallery.blogcu.com/archive/>
* 500 S=DCPER L=DDNK<http://igooglenews.blogspot.com/2007/12/500-sper-
link.html>
* YACHT PHOTO GALLERY <http://yachtphotogallery.blogcu.com/>
* FERRAR=DD PHOTO GALLERY <http://ferrariphotogallery.blogcu.com/>
* EUROPE PHOTO GALLERY <http://europephotogallery.blogcu.com/>
* =DDGOOGLE NEWS <http://igooglenews.blogspot.com/>
Category
1-25 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
101-125 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/101-125+Turkey+Photo
+Gallery/>
126-150 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/126-150+Turkey+Photo
+Gallery/>
151-175 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/151-175+Turkey+Photo
+Gallery/>
176-200 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/176-200+Turkey+Photo
+Gallery/>
201-225 Turkey Photo
Gallery<http://turkeyphotogallery.blogcu.com/201-225+Turkey+Photo
+Gallery/>
26- 50 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/26-+50+TURKEY+PHOTO
+GALLERY/>
51- 75 TURKEY PHOTO GALLERY
<http://turkeyphotogallery.blogcu.com/51-+75+TURKEY+PHOTO+GALLERY++/>
76- 100 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/76-+100+TURKEY+PHOTO
+GALLERY/>
ALANYA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ALANYA+PHOTO
+GALLERY/>
ANKARA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ANKARA+PHOTO
+GALLERY/>
ANTALYA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ANTALYA
+PHOTO+GALLERY/>
ATATURK PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ATATURK
+PHOTO+GALLERY/>
Emblem <http://turkeyphotogallery.blogcu.com/Emblem/>
Fethiye Photo Gallery<http://turkeyphotogallery.blogcu.com/Fethiye
+Photo+Gallery/>
Flag <http://turkeyphotogallery.blogcu.com/Flag/>
iNEBOLU PHOTO GALLERY
<http://turkeyphotogallery.blogcu.com/iNEBOLU+PHOTO+GALLERY+/>
iSTANBUL PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/iSTANBUL
+PHOTO+GALLERY/>
iZMiR PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/iZMiR+PHOTO
+GALLERY/>
Marmaris Photo Gallery<http://turkeyphotogallery.blogcu.com/Marmaris
+Photo+Gallery/>
Motto <http://turkeyphotogallery.blogcu.com/Motto/>
SUPER DUVAR KAGITLARI<http://turkeyphotogallery.blogcu.com/SUPER+DUVAR
+KAGITLARI/>
Turkish Cuisine Photo
Gallery<http://turkeyphotogallery.blogcu.com/Turkish+Cuisine+Photo
+Gallery/>
Friends* ferrariphotogallery <http://ferrariphotogallery.blogcu.com/>
* EarthGuide <http://earthguide.blogcu.com/>
* bbcworldnews <http://bbcworldnews.blogcu.com/>
* photoarchive <http://photoarchive.blogcu.com/>
* Europephotogallery <http://europephotogallery.blogcu.com/>
TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
-
* 76-100 TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/
4741072/>
* Sheraton Hotel & Convention Center
(1991)<http://turkeyphotogallery.blogcu.com/4741061/>
* Sheraton Hotel and Beymen
Building<http://turkeyphotogallery.blogcu.com/4741058/>
* Atakule Tower (1989) <http://turkeyphotogallery.blogcu.com/
4741054/>
* Botanik Park in central
Ankara<http://turkeyphotogallery.blogcu.com/4740982/>
* Kurtulu=FE Park in central Ankara
2<http://turkeyphotogallery.blogcu.com/4740962/>
* Ku=F0ulu Park, famous for its swans, geese and
ducks<http://turkeyphotogallery.blogcu.com/4740978/>
* Kurtulu=FE Park in central Ankara
3<http://turkeyphotogallery.blogcu.com/4740973/>
* Kurtulu=FE Park in central
Ankara<http://turkeyphotogallery.blogcu.com/4740958/>
* Dikmen Valley Park <http://turkeyphotogallery.blogcu.com/4740951/
>
* Evcil Hayvanlar Park in
Ke=E7i=F6ren<http://turkeyphotogallery.blogcu.com/4740950/>
* Se=F0menler Park in central Ankara
2<http://turkeyphotogallery.blogcu.com/4740947/>
* Se=F0menler Park in central
Ankara<http://turkeyphotogallery.blogcu.com/4740942/>
* An odd-eyed Turkish Angora<http://turkeyphotogallery.blogcu.com/
4741117/>
* Armada Tower & Shopping Center
(2002)<http://turkeyphotogallery.blogcu.com/4741110/>
* Akman Tower (1999) <http://turkeyphotogallery.blogcu.com/4741108/
>
* Port of =DDzmir as seen from Konak
Pier<http://turkeyphotogallery.blogcu.com/4741107/>
* Egypto-Hittite Peace Treaty<http://turkeyphotogallery.blogcu.com/
4740926/>
* Relief of Suppiluliuma II, last known king of the Hittite
Empire<http://turkeyphotogallery.blogcu.com/4740923/>
* Mountain pastures of northern
Anatolia<http://turkeyphotogallery.blogcu.com/4740920/>
* Scene from southern Anatolia<http://turkeyphotogallery.blogcu.com/
4740917/>
* Relief map of Turkey <http://turkeyphotogallery.blogcu.com/
4740908/>
* Anatolia and Europe <http://turkeyphotogallery.blogcu.com/4740904/
>
* Emek Business Center (1962) on K=FDz=FDlay
Square<http://turkeyphotogallery.blogcu.com/4741033/>
* Buildings on K=FDz=FDlay Square<http://turkeyphotogallery.blogcu.com/
4741037/>
Ba=F0lant=FDlar=FDm* TURKEY PHOTO GALLERY<http://
turkeyphotogallery.blogcu.com/>
* PROF=DDL=DDM <http://turkeyphotogallery.blogcu.com/profile/>
* T=DCM YAZI AR=DE=DDV=DD <http://turkeyphotogallery.blogcu.com/archive/>=
* 500 S=DCPER L=DDNK<http://igooglenews.blogspot.com/2007/12/500-sper-
link.html>
Kategoriler
- 1-25 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
- 26- 50 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/26-+50+TURKEY+PHOTO
+GALLERY/>
- 51- 75 TURKEY PHOTO GALLERY
<http://turkeyphotogallery.blogcu.com/51-+75+TURKEY+PHOTO+GALLERY++/
>
- 76- 100 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/76-+100+TURKEY+PHOTO
+GALLERY/>
- ANKARA PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/ANKARA+PHOTO+GALLERY/>
- Emblem <http://turkeyphotogallery.blogcu.com/Emblem/>
- Flag <http://turkeyphotogallery.blogcu.com/Flag/>
- ISTANBUL PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/ISTANBUL+PHOTO+GALLERY/>
- Motto <http://turkeyphotogallery.blogcu.com/Motto/>
- SUPER DUVAR
KAGITLARI<http://turkeyphotogallery.blogcu.com/SUPER+DUVAR+KAGITLARI/
>
* An odd-eyed Turkish Angora <http://turkeyphotogallery.blogcu.com/
4741117/>
* Armada Tower & Shopping Center
(2002)<http://turkeyphotogallery.blogcu.com/4741110/>
* Akman Tower (1999) <http://turkeyphotogallery.blogcu.com/4741108/>
* Port of =DDzmir as seen from Konak
Pier<http://turkeyphotogallery.blogcu.com/4741107/>
* Egypto-Hittite Peace Treaty<http://turkeyphotogallery.blogcu.com/
4740926/>
* Relief of Suppiluliuma II, last known king of the Hittite
Empire<http://turkeyphotogallery.blogcu.com/4740923/>
* Mountain pastures of northern
Anatolia<http://turkeyphotogallery.blogcu.com/4740920/>
* Scene from southern Anatolia<http://turkeyphotogallery.blogcu.com/
4740917/>
* Relief map of Turkey <http://turkeyphotogallery.blogcu.com/4740908/
>
* Anatolia and Europe <http://turkeyphotogallery.blogcu.com/4740904/>
* Emek Business Center (1962) on K=FDz=FDlay
Square<http://turkeyphotogallery.blogcu.com/4741033/>
* Buildings on K=FDz=FDlay Square<http://turkeyphotogallery.blogcu.com/
4741037/>
* BDDK Building (1975), formerly the T=FCrkiye =DD=FE Bankas=FD
headquarters<http://turkeyphotogallery.blogcu.com/4741025/>
* Ku=F0ulu Park, famous for its swans, geese and
ducks<http://turkeyphotogallery.blogcu.com/4741013/>
* Cemre Park in Demetevler 2 <http://turkeyphotogallery.blogcu.com/
4740989/>
* Cemre Park in Demetevler <http://turkeyphotogallery.blogcu.com/
4740987/>
* G=F6ksu Park in Eryaman <http://turkeyphotogallery.blogcu.com/4736210/
>
* K=FDz=FDlay Square is the heart of
Ankara<http://turkeyphotogallery.blogcu.com/4736200/>
* 51- 75 TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/
4736438/>
* =C7ankaya Presidential Residence<http://turkeyphotogallery.blogcu.com/
4736430/>
* Esenbo=F0a International Airport<http://turkeyphotogallery.blogcu.com/
4736422/>
* State Art and Sculpture Museum<http://turkeyphotogallery.blogcu.com/
4736418/>
* View of central Ankara from the Botanical
Garden<http://turkeyphotogallery.blogcu.com/4736414/>
* ANKARA PHOTO GALLERY <http://turkeyphotogallery.blogcu.com/4736372/
>
* ISTANBUL PHOTO GALLERY <http://turkeyphotogallery.blogcu.com/4736357/
>
Ba=F0lant=FDlar=FDm* TURKEY PHOTO GALLERY <http://
turkeyphotogallery.blogcu.com/>
* PROF=DDL=DDM <http://turkeyphotogallery.blogcu.com/profile/>
* T=DCM YAZI AR=DE=DDV=DD <http://turkeyphotogallery.blogcu.com/archive/>
* 500 S=DCPER L=DDNK<http://igooglenews.blogspot.com/2007/12/500-sper-
link.html>
Kategoriler
1-25 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
26- 50 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/26-+50+TURKEY+PHOTO
+GALLERY/>
51- 75 TURKEY PHOTO GALLERY
<http://turkeyphotogallery.blogcu.com/51-+75+TURKEY+PHOTO+GALLERY++/>
76- 100 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/76-+100+TURKEY+PHOTO
+GALLERY/>
ANKARA PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ANKARA+PHOTO
+GALLERY/>
Emblem <http://turkeyphotogallery.blogcu.com/Emblem/>
Flag <http://turkeyphotogallery.blogcu.com/Flag/>
ISTANBUL PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/ISTANBUL
+PHOTO+GALLERY/>
Motto <http://turkeyphotogallery.blogcu.com/Motto/>
SUPER DUVAR KAGITLARI<http://turkeyphotogallery.blogcu.com/SUPER+DUVAR
+KAGITLARI/>
<http://turkeyphotogallery.blogcu.com/SUPER+DUVAR+KAGITLARI/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 32*<http://turkeyphotogallery.blogcu.com/=
4734016/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 31*<http://turkeyphotogallery.blogcu.com/=
4734012/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 30*<http://turkeyphotogallery.blogcu.com/=
4734006/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 29*<http://turkeyphotogallery.blogcu.com/=
4734001/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 28*<http://turkeyphotogallery.blogcu.com/=
4733998/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 27*<http://turkeyphotogallery.blogcu.com/=
4733993/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 26*<http://turkeyphotogallery.blogcu.com/=
4733986/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 25*<http://turkeyphotogallery.blogcu.com/=
4733968/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 24*<http://turkeyphotogallery.blogcu.com/=
4733964/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 23*<http://turkeyphotogallery.blogcu.com/=
4733957/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 21*<http://turkeyphotogallery.blogcu.com/=
4733950/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 20*<http://turkeyphotogallery.blogcu.com/=
4733943/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 19*<http://turkeyphotogallery.blogcu.com/=
4733937/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 18*<http://turkeyphotogallery.blogcu.com/=
4733931/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 17*<http://turkeyphotogallery.blogcu.com/=
4733929/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 16*<http://turkeyphotogallery.blogcu.com/=
4733925/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 22*<http://turkeyphotogallery.blogcu.com/=
4733954/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 15*<http://turkeyphotogallery.blogcu.com/=
4733921/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 14*<http://turkeyphotogallery.blogcu.com/=
4733918/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 13*<http://turkeyphotogallery.blogcu.com/=
4733914/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 12*<http://turkeyphotogallery.blogcu.com/=
4733785/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 11*<http://turkeyphotogallery.blogcu.com/=
4733779/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 10*<http://turkeyphotogallery.blogcu.com/=
4733776/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 9*<http://turkeyphotogallery.blogcu.com/
4733767/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 8*<http://turkeyphotogallery.blogcu.com/
4733761/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 7*<http://turkeyphotogallery.blogcu.com/
4733757/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 6*<http://turkeyphotogallery.blogcu.com/
4733754/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 5*<http://turkeyphotogallery.blogcu.com/
4733748/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 4*<http://turkeyphotogallery.blogcu.com/
4733744/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 3*<http://turkeyphotogallery.blogcu.com/
4733728/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 2*<http://turkeyphotogallery.blogcu.com/
4733722/>
** **S=FCper Duvar Ka=F0=FDtlar=FD 1*<http://turkeyphotogallery.blogcu.com/
4733717/>
* Galata Tower <http://turkeyphotogallery.blogcu.com/4697421/>
* The famous Maiden's (Leander's) Tower was originally built by
Alcibiades
in 408 BC <http://turkeyphotogallery.blogcu.com/4697401/>
* The Obelisk of Thutmosis III at the Hippodrome of Constantinople
was
brought from the Temple of Karnak in Egypt by Theodosius the
Great<http://turkeyphotogallery.blogcu.com/4697394/>
* Satellite photo over Istanbul and the
Bosphorus<http://turkeyphotogallery.blogcu.com/4697380/>
* Portion of the legendary walls of Troy (VII), identified as the site
of
the Trojan War (ca. 1200 BCE)<http://turkeyphotogallery.blogcu.com/
4697368/>
* The Celsus Library in Ephesus, dating from 135
CE<http://turkeyphotogallery.blogcu.com/4697360/>
* Mustafa Kemal Atat=FCrk, founder and first President of the Republic
of
Turkey <http://turkeyphotogallery.blogcu.com/4697353/>
* F-247 TCG KemalReis is a SalihReis (MEKO 200TN II-B) class frigate
of the
Turkish Navy <http://turkeyphotogallery.blogcu.com/4697340/>
* A KC-135R-CRAG Stratotanker of the Turkish Air Force refueling TAI-
built
F-16 fighter jets <http://turkeyphotogallery.blogcu.com/4697333/>
* Roosevelt, =DDn=F6n=FC and Churchill at the Second Cairo Conference in
December
1943 <http://turkeyphotogallery.blogcu.com/4697322/>
* Orhan Pamuk, winner of the 2006 Nobel Prize in
Literature<http://turkeyphotogallery.blogcu.com/4697177/>
* Sufi whirling dervishes <http://turkeyphotogallery.blogcu.com/
4697162/>
* Caf=E9s at the port of =DDzmir <http://turkeyphotogallery.blogcu.com/
4697150/>
* =DDstiklal Avenue in Istanbul's cosmopolitan Beyo=F0lu
district<http://turkeyphotogallery.blogcu.com/4697139/>
* TCDD high speed train <http://turkeyphotogallery.blogcu.com/4697118/
>
* Esenbo=F0a International Airport in
Ankara<http://turkeyphotogallery.blogcu.com/4697101/>
* Selimiye Mosque, built in 1575 in
Edirne<http://turkeyphotogallery.blogcu.com/4696999/>
* The Sultan Ahmed Mosque (Blue
Mosque)<http://turkeyphotogallery.blogcu.com/4696966/>
* The Grand Chamber of the Grand National Assembly of Turkey in
Ankara<http://turkeyphotogallery.blogcu.com/4696942/>
* Motto:Peace at Home, Peace in the
World<http://turkeyphotogallery.blogcu.com/4692513/>
* LocationTurkey <http://turkeyphotogallery.blogcu.com/4692506/>
* Republic of Turkey Flag <http://turkeyphotogallery.blogcu.com/
4692503/>
* Republic of Turkey Emblem <http://turkeyphotogallery.blogcu.com/
4692501/>
Pera Museum during the Rembrandt exhibition in
2006<http://turkeyphotogallery.blogcu.com/4698598/>
* Istanbul's T=FCnel (1875) is the world's second-oldest subway line
after
London's Underground <http://turkeyphotogallery.blogcu.com/4698570/>
* Haydarpa=FEa Terminal <http://turkeyphotogallery.blogcu.com/4698557/>
* Subway connection between Kabata=FE and Taksim
Square<http://turkeyphotogallery.blogcu.com/4698551/>
* Historic tram on =DDstiklal
Avenue<http://turkeyphotogallery.blogcu.com/4698538/>
* Basilica Cistern <http://turkeyphotogallery.blogcu.com/4698532/>
* Valens Aqueduct <http://turkeyphotogallery.blogcu.com/4698528/>
* Fatih Sultan Mehmet Bridge and the skyline of Levent financial
district<http://turkeyphotogallery.blogcu.com/4698519/>
* View of Taksim and Levent from The Marmara Hotel, with the
"Conference
Valley" in the center of the
frame<http://turkeyphotogallery.blogcu.com/4698513/>
* Street level view of Levent as seen from the entrance of
Metrocity<http://turkeyphotogallery.blogcu.com/4698505/>
* Streets of Ni=FEanta=FE=FD, the fashion district of Istanbul and seat of
the
Turkish textiles industry <http://turkeyphotogallery.blogcu.com/
4698460/>
* View of the city from G=FClhane Park near Topkap=FD
Palace<http://turkeyphotogallery.blogcu.com/4698398/>
* S. Antonio di Padova <http://turkeyphotogallery.blogcu.com/4698374/
>
* Arap Mosque <http://turkeyphotogallery.blogcu.com/4698366/>
* Sultan Ahmet Mosque <http://turkeyphotogallery.blogcu.com/4698319/>
* The 6 km (4 mi) long Ba=F0dat Avenue
<http://turkeyphotogallery.blogcu.com/4698311/>
* =DDstiklal Avenue in Beyo=F0lu <http://turkeyphotogallery.blogcu.com/
4698300/>
* Akmerkez in the quarter of
Etiler<http://turkeyphotogallery.blogcu.com/4698287/>
* Yal=FDs in Arnavutk=F6y <http://turkeyphotogallery.blogcu.com/4698274/>
* Dolmabah=E7e Palace <http://turkeyphotogallery.blogcu.com/4698269/>
* Ortak=F6y Mosque and the Bosphorus
Bridge<http://turkeyphotogallery.blogcu.com/4698261/>
* Topkap=FD Palace <http://turkeyphotogallery.blogcu.com/4698254/>
* Exterior view of the Hagia
Sophia<http://turkeyphotogallery.blogcu.com/4698240/>
* =D6l=FCdeniz near Fethiye in the Turkish
Riviera<http://turkeyphotogallery.blogcu.com/4697048/>
* Mt. Ararat is the highest peak in Turkey at 5,165 m (16,946
ft)<http://turkeyphotogallery.blogcu.com/4697037/>
=C7ankaya Presidential
Residence<http://turkeyphotogallery.blogcu.com/4736430/>
* Esenbo=F0a International Airport<http://turkeyphotogallery.blogcu.com/
4736422/>
* State Art and Sculpture Museum<http://turkeyphotogallery.blogcu.com/
4736418/>
* View of central Ankara from the Botanical
Garden<http://turkeyphotogallery.blogcu.com/4736414/>
* ANKARA PHOTO GALLERY <http://turkeyphotogallery.blogcu.com/4736372/
>
* ISTANBUL PHOTO GALLERY <http://turkeyphotogallery.blogcu.com/4736357/
>
* Part of the METU campus <http://turkeyphotogallery.blogcu.com/
4736318/>
* Hittite artifacts on display at the Museum of Anatolian
Civilizations<http://turkeyphotogallery.blogcu.com/4736301/>
* View of Atakule Tower and Ankara's city
center<http://turkeyphotogallery.blogcu.com/4736294/>
* Skateboarding in Ankara <http://turkeyphotogallery.blogcu.com/
4736277/>
* Part of the METU campus, as seen from its MM
Building<http://turkeyphotogallery.blogcu.com/4736268/>
* K=FC=E7=FCk Tiyatro and Oda Tiyatrosu<http://turkeyphotogallery.blogcu.com=
/
4736255/>
* Ankara Opera House <http://turkeyphotogallery.blogcu.com/4736230/>
* Interior view of Karum Shopping<http://turkeyphotogallery.blogcu.com/
4736227/>
* Gen=E7lik Park in central Ankara<http://turkeyphotogallery.blogcu.com/
4736214/>
* Museum of Anatolian
Civilizations<http://turkeyphotogallery.blogcu.com/4736102/>
* Atakule Tower <http://turkeyphotogallery.blogcu.com/4736018/>
* Armada Tower in the center and Halkbank Tower in the
background<http://turkeyphotogallery.blogcu.com/4736005/>
* Dikmen Valley Towers <http://turkeyphotogallery.blogcu.com/4735999/
>
* Kanyon Mall in Levent financial
<http://turkeyphotogallery.blogcu.com/4735964/>
* Etiler <http://turkeyphotogallery.blogcu.com/4735910/>
* Istanbul Park GP Circuit <http://turkeyphotogallery.blogcu.com/
4735876/>
* Atat=FCrk Olympic Stadium <http://turkeyphotogallery.blogcu.com/
4735861/>
* =DDstanbul Lisesi <http://turkeyphotogallery.blogcu.com/4735852/>
* Robert College <http://turkeyphotogallery.blogcu.com/4735848/>
*AIRPLANE PHOTO GALLERY* <http://airplane.blogcu.com/>
* 1-25 AIRPLANE PHOTO GALLERY <http://airplane.blogcu.com/4737534/>
* Concorde G-BOAF. <http://airplane.blogcu.com/4737528/>
* Concorde fuselage <http://airplane.blogcu.com/4737526/>
* Concorde's ramp system. <http://airplane.blogcu.com/4737524/>
* The flight deck. <http://airplane.blogcu.com/4737522/>
* Italian Customs Service ATR <http://airplane.blogcu.com/4737520/>
* TAROM ATR 42-500 interior <http://airplane.blogcu.com/4737515/>
* Contact Air/Lufthansa Regional ATR 42-500 at Stuttgart
Airport<http://airplane.blogcu.com/4737513/>
* Air Lithuania ATR 42 <http://airplane.blogcu.com/4737512/>
* A Vanair ATR-42-320 at Port Vila International
Airport<http://airplane.blogcu.com/4737509/>
* Aurigny Air Services ATR 72-200 at Bristol
Airport<http://airplane.blogcu.com/4737507/>
* A Bangkok Airways ATR 72 at Luang Prabang airport,
Laos<http://airplane.blogcu.com/4737505/>
* ATR 72 of Aer Arann at take off <http://airplane.blogcu.com/4737499/
>
* ATR 42 of the Welsh airline Air Wales<http://airplane.blogcu.com/
4737496/>
* Imperial War Museum, Duxford, UK <http://airplane.blogcu.com/4737494/
>
* London Heathrow Airport <http://airplane.blogcu.com/4737491/>
* Air France Concorde <http://airplane.blogcu.com/4737488/>
* Interior of Qatar Airways flight <http://airplane.blogcu.com/4737484/
>
* The fifth-generation Military Aircraft, F-22
Raptor<http://airplane.blogcu.com/4737481/>
* Gossamer Albatross, a human-powered
aircraft<http://airplane.blogcu.com/4737476/>
* A turboprop-engined DeHavilland Twin Otter adapted as a
floatplane<http://airplane.blogcu.com/4737471/>
* Airbus A380 <http://airplane.blogcu.com/4737409/>
Ba=F0lant=FDlar=FDm
TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY
+PHOTO+GALLERY/>
* AIRPLANE PHOTO GALLERY <http://airplane.blogcu.com/>
* Profilim <http://airplane.blogcu.com/profile/>
* Ar=FEiv <http://airplane.blogcu.com/archive/>
Kategoriler
*FERRAR=DD PHOTO GALLERY* <http://ferrariphotogallery.blogcu.com/>
*Kategori yok* Arkada=FElar=FDm
*EUROPE PHOTO GALLERY* <http://europephotogallery.blogcu.com/>
* ucakkazasi <http://ucakkazasi.blogcu.com/>
* nettenelislerim <http://nettenelislerim.blogcu.com/>
* youtube2008 <http://youtube2008.blogcu.com/>
* millitakimvideo <http://millitakimvideo.blogcu.com/>
* photoarchive <http://photoarchive.blogcu.com/>
* EarthGuide <http://earthguide.blogcu.com/>
* ebaycom <http://ebaycom.blogcu.com/>
* turkeyphotogallery <http://turkeyphotogallery.blogcu.com/>
* ferrariphotogallery <http://ferrariphotogallery.blogcu.com/>
* Europephotogallery <http://europephotogallery.blogcu.com/>
* concoursephotogallery <http://concoursephotogallery.blogcu.com/>
* bbcworldnews <http://bbcworldnews.blogcu.com/>
1-25 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
* Galata Tower <http://turkeyphotogallery.blogcu.com/4697421/>
* The famous Maiden's (Leander's) Tower was originally built by
Alcibiades
in 408 BC <http://turkeyphotogallery.blogcu.com/4697401/>
* The Obelisk of Thutmosis III at the Hippodrome of Constantinople
was
brought from the Temple of Karnak in Egypt by Theodosius the
Great<http://turkeyphotogallery.blogcu.com/4697394/>
* Satellite photo over Istanbul and the
Bosphorus<http://turkeyphotogallery.blogcu.com/4697380/>
* Portion of the legendary walls of Troy (VII), identified as the site
of
the Trojan War (ca. 1200 BCE)<http://turkeyphotogallery.blogcu.com/
4697368/>
* The Celsus Library in Ephesus, dating from 135
CE<http://turkeyphotogallery.blogcu.com/4697360/>
* Mustafa Kemal Atat=FCrk, founder and first President of the Republic
of
Turkey <http://turkeyphotogallery.blogcu.com/4697353/>
* F-247 TCG KemalReis is a SalihReis (MEKO 200TN II-B) class frigate
of the
Turkish Navy <http://turkeyphotogallery.blogcu.com/4697340/>
* A KC-135R-CRAG Stratotanker of the Turkish Air Force refueling TAI-
built
F-16 fighter jets <http://turkeyphotogallery.blogcu.com/4697333/>
* Roosevelt, =DDn=F6n=FC and Churchill at the Second Cairo Conference in
December
1943 <http://turkeyphotogallery.blogcu.com/4697322/>
* Orhan Pamuk, winner of the 2006 Nobel Prize in
Literature<http://turkeyphotogallery.blogcu.com/4697177/>
* Sufi whirling dervishes <http://turkeyphotogallery.blogcu.com/
4697162/>
* Caf=E9s at the port of =DDzmir <http://turkeyphotogallery.blogcu.com/
4697150/>
* =DDstiklal Avenue in Istanbul's cosmopolitan Beyo=F0lu
district<http://turkeyphotogallery.blogcu.com/4697139/>
* TCDD high speed train <http://turkeyphotogallery.blogcu.com/4697118/
>
* Esenbo=F0a International Airport in
Ankara<http://turkeyphotogallery.blogcu.com/4697101/>
* Selimiye Mosque, built in 1575 in
Edirne<http://turkeyphotogallery.blogcu.com/4696999/>
* The Sultan Ahmed Mosque (Blue
Mosque)<http://turkeyphotogallery.blogcu.com/4696966/>
* The Grand Chamber of the Grand National Assembly of Turkey in
Ankara<http://turkeyphotogallery.blogcu.com/4696942/>
* Motto:Peace at Home, Peace in the
World<http://turkeyphotogallery.blogcu.com/4692513/>
* LocationTurkey <http://turkeyphotogallery.blogcu.com/4692506/>
* Republic of Turkey Flag <http://turkeyphotogallery.blogcu.com/
4692503/>
* Republic of Turkey Emblem <http://turkeyphotogallery.blogcu.com/
4692501/>
* 0 Yorum <http://turkeyphotogallery.blogcu.com/4697459/> * Yorum
yaz!<http://www.blogcu.com/post_comment.php?
u=3Dturkeyphotogallery&e_id=3D4697459>*
Ba=F0lant=FD <http://turkeyphotogallery.blogcu.com/4697459/>
<- Son Sayfa * Sonraki
Sayfa<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
page2>->
Son
Yaz=FDlar* 55 TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/
4699623/>
* Maslak financial district <http://turkeyphotogallery.blogcu.com/
4698448/>
* Fatih Sultan Mehmet Bridge as seen from
Rumelihisar=FD<http://turkeyphotogallery.blogcu.com/4698422/>
* Bosphorus Bridge <http://turkeyphotogallery.blogcu.com/4698382/>
* The Grand Bazaar <http://turkeyphotogallery.blogcu.com/4698692/>
* 26- 50 TURKEY PHOTO GALLERY<http://turkeyphotogallery.blogcu.com/
4698612/>
* Pera Museum during the Rembrandt exhibition in
2006<http://turkeyphotogallery.blogcu.com/4698598/>
* Istanbul's T=FCnel (1875) is the world's second-oldest subway line
after
London's Underground <http://turkeyphotogallery.blogcu.com/4698570/>
* Haydarpa=FEa Terminal <http://turkeyphotogallery.blogcu.com/4698557/>
* Subway connection between Kabata=FE and Taksim
Square<http://turkeyphotogallery.blogcu.com/4698551/>
* Historic tram on =DDstiklal
Avenue<http://turkeyphotogallery.blogcu.com/4698538/>
* Basilica Cistern <http://turkeyphotogallery.blogcu.com/4698532/>
* Valens Aqueduct <http://turkeyphotogallery.blogcu.com/4698528/>
* Fatih Sultan Mehmet Bridge and the skyline of Levent financial
district<http://turkeyphotogallery.blogcu.com/4698519/>
* View of Taksim and Levent from The Marmara Hotel, with the
"Conference
Valley" in the center of the
frame<http://turkeyphotogallery.blogcu.com/4698513/>
* Street level view of Levent as seen from the entrance of
Metrocity<http://turkeyphotogallery.blogcu.com/4698505/>
* Streets of Ni=FEanta=FE=FD, the fashion district of Istanbul and seat of
the
Turkish textiles industry <http://turkeyphotogallery.blogcu.com/
4698460/>
* View of the city from G=FClhane Park near Topkap=FD
Palace<http://turkeyphotogallery.blogcu.com/4698398/>
* S. Antonio di Padova <http://turkeyphotogallery.blogcu.com/4698374/
>
* Arap Mosque <http://turkeyphotogallery.blogcu.com/4698366/>
* Sultan Ahmet Mosque <http://turkeyphotogallery.blogcu.com/4698319/>
* The 6 km (4 mi) long Ba=F0dat Avenue
<http://turkeyphotogallery.blogcu.com/4698311/>
* =DDstiklal Avenue in Beyo=F0lu <http://turkeyphotogallery.blogcu.com/
4698300/>
* Akmerkez in the quarter of
Etiler<http://turkeyphotogallery.blogcu.com/4698287/>
* Yal=FDs in Arnavutk=F6y <http://turkeyphotogallery.blogcu.com/4698274/>
Ba=F0lant=FDlar=FDm* Ana Sayfa <http://turkeyphotogallery.blogcu.com/>
* Profilim <http://turkeyphotogallery.blogcu.com/profile/>
* Ar=FEiv <http://turkeyphotogallery.blogcu.com/archive/>
Kategoriler
*FERRAR=DD PHOTO GALLERY* <http://ferrariphotogallery.blogcu.com/>
1-25 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/1-25+TURKEY+PHOTO+GALLERY/
>
26- 50 TURKEY PHOTO
GALLERY<http://turkeyphotogallery.blogcu.com/26-+50+TURKEY+PHOTO
+GALLERY/>
Emblem <http://turkeyphotogallery.blogcu.com/Emblem/>
Flag <http://turkeyphotogallery.blogcu.com/Flag/>
Motto <http://turkeyphotogallery.blogcu.com/Motto/> Arkada=FElar=FDm
*EUROPE PHOTO GALLERY* <http://europephotogallery.blogcu.com/>
* ferrariphotogallery <http://ferrariphotogallery.blogcu.com/>
* EarthGuide <http://earthguide.blogcu.com/>
* bbcworldnews <http://bbcworldnews.blogcu.com/>
* photoarchive <http://photoarchive.blogcu.com/>
*FERRAR=DD PHOTO GALLERY* <http://ferrariphotogallery.blogcu.com/>
* Ferrari F430 F1 Coupe <http://ferrariphotogallery.blogcu.com/4655958/
>
* 25 ferrari photo gallery <http://ferrariphotogallery.blogcu.com/
4656130/>
* Ferrari 612 F1/ Grigio Alloy/ Black/ RHD (2006)
<http://ferrariphotogallery.blogcu.com/4656105/>
* Ferrari 612 Scaglietti F1 <http://ferrariphotogallery.blogcu.com/
4656092/>
* Ferrari 599 GTB F1 <http://ferrariphotogallery.blogcu.com/4656090/>
* Ferrari F430 Spider <http://ferrariphotogallery.blogcu.com/4656086/
>
* Ferrari 360 <http://ferrariphotogallery.blogcu.com/4656084/>
* Ferrari 456M GT <http://ferrariphotogallery.blogcu.com/4656080/>
* FERRARI 360 F1 MODENA ROSSO CORSA RED ,BLACK
LEATHER<http://ferrariphotogallery.blogcu.com/4656076/>
* 1995-N Ferrari F355 Berlinetta Red Black Nero
Leather<http://ferrariphotogallery.blogcu.com/4656075/>
* 1995-N Ferrari F355 Berlinetta Red Black Nero
Leather<http://ferrariphotogallery.blogcu.com/4656074/>
* 1998 Ferrari 550 5.5 Maranello
Coupe<http://ferrariphotogallery.blogcu.com/4656068/>
* 1997 Ferrari F355 3.5 Spider
Convertible<http://ferrariphotogallery.blogcu.com/4656061/>
* 1989 FERRARI 328 gts targa
manual<http://ferrariphotogallery.blogcu.com/4656059/>
* 1998 FERRARI F355 355 Spider
F1<http://ferrariphotogallery.blogcu.com/4656055/>
* 1998 FERRARI 550 MARANELLO Red / Magnolia stitched
red<http://ferrariphotogallery.blogcu.com/4656052/>
* 2000 W Ferrari 360 Modena F1
Argento/Nero<http://ferrariphotogallery.blogcu.com/4655995/>
* FERRARI F355 SPARK PLUGS DENSO IRIDIUM
X8<http://ferrariphotogallery.blogcu.com/4655990/>
* One off Ferrari Table <http://ferrariphotogallery.blogcu.com/4655985/
>
* FERRARI 360 Spider Self drive Hire /
Rental<http://ferrariphotogallery.blogcu.com/4655981/>
* New FerrariF430 Coupe F1 Nero & Crema leather IN
STOCK<http://ferrariphotogallery.blogcu.com/4655971/>
* 1998 Black Ferrari 355 Inc. Mot
<http://ferrariphotogallery.blogcu.com/4655966/>
* Ferrari F430 F1 Coupe <http://ferrariphotogallery.blogcu.com/4655754/
>
* FERRARI DINO 246GT 1973 R.H.D.
<http://fe