19 Kasım 2018 Pazartesi

Visual Studio- Hata : the underlying connection was closed an unexpected error occurred on a send and (407) Proxy Authentication Required.

Güvenli bir ağ üzerinden proxy yetkilendirmeli bir ağdan dış servise bağlanma sırasında alınan hata cözümü :

app.config eklen

<system.net>
    <defaultProxy useDefaultCredentials="true" >
    </defaultProxy>
</system.net>

Clinet Kullanmadan önce aşağıdaki kodu uygun bir yere yerleştirin . TLS 1.2 için 
            System.Net.ServicePointManager.SecurityProtocol = (System.Net.SecurityProtocolType)3072;

If you are stuck with .Net 4.0 and the target site is using TLS 1.2, you need the following line instead. ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;

1 Ekim 2018 Pazartesi

javascript ile dropdown secimine göre alan gösterimi


@Html.DropDownList("optionId", new SelectList(SelectListData), "Select an option")

@Html.TextBox("controlId")
<script>
  $("#optionId").on("change", function () {
    if ($("#optionId option:selected").index() == 0) {
      $("#controlId").hide();
    } else {
      $("#controlId").show();
    }
  });
</script>

25 Temmuz 2018 Çarşamba

Devexpress WPF : loading decorator change content

<dx:LoadingDecorator Name="ld" SplashScreenDataContext="{Binding}">
    <dx:LoadingDecorator.SplashScreenTemplate>
        <DataTemplate>
            <dx:WaitIndicator DeferedVisibility="True" Content="{Binding SomeProperty}"/>
        </DataTemplate>
    </dx:LoadingDecorator.SplashScreenTemplate>
...

28 Mayıs 2018 Pazartesi

Işlem başka bir işlem tarafından kullanıldığından dosyasına erişemiyor Hatası ve Çözümü


using (System.IO.FileStream file = new System.IO.FileStream(path, System.IO.FileMode.OpenOrCreate, System.IO.FileAccess.ReadWrite, System.IO.FileShare.ReadWrite))
                    using (System.IO.StreamReader sr = new System.IO.StreamReader(file))
                    {
                        // Read the stream to a string, and write the string to the console.
                        string not = sr.ReadToEnd();
                    }

7 Aralık 2017 Perşembe

c# Uygulama bilgisayarda bir defa çalışması için kontrol




Control to prevent the application from opening twice;

Uygulamamızın Bilgisyarda aynı anda iki defa çalışmasını engellemek için :

foreach (var item in System.Diagnostics.Process.GetProcessesByName(System.Diagnostics.Process.GetCurrentProcess().ProcessName))
                {

                    if (item.Id != System.Diagnostics.Process.GetCurrentProcess().Id)
                    {
                        item.Kill();
                        item.Close();
                    }

                }

20 Eylül 2017 Çarşamba

WPF CodeBhind set Style

StyleLabel0 = (Style)System.Windows.Application.Current.Resources["dxLabelBaseStyle"]; 
     
StyleLabel1 = (Style)System.Windows.Application.Current.Resources["dxLabelBaseStyle"];

           

14 Eylül 2017 Perşembe

WPF DataTrigger Binding Visibility

 <dxlc:LayoutGroup Visibility="Collapsed"  >
         <dxlc:LayoutGroup.Style>
                <Style TargetType="dxlc:LayoutGroup">
                                            <Style.Triggers>
                                                <DataTrigger  Binding="{Binding ElementName=hesapTip,Path=SelectedItem.Alan}" Value="DEGER">
                                                    <Setter Property="Visibility" Value="Visible" />
                                                </DataTrigger>
                                            </Style.Triggers>
                                        </Style>
                                    </dxlc:LayoutGroup.Style>
</dxlc:LayoutGroup>