Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
U

Utku KAYA

@Utku KAYA
About
Posts
32
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • I need get a serial number of Pocket PC hardware
    U Utku KAYA

    The former link was erronous. Working one is --> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/retrievedeviceid.asp[^]

    Mobile csharp hardware help

  • I need get a serial number of Pocket PC hardware
    U Utku KAYA

    Using device id instead of any hardware id is recommended. Follow the link to get the device id. [msdn.microsoft.com/library/ en-us/dnnetcomp/html/retrievedeviceid.asp](http://msdn.microsoft.com/library/ en-us/dnnetcomp/html/retrievedeviceid.asp) Hope it helps. Utku KAYA

    Mobile csharp hardware help

  • Mobile device ID as a client
    U Utku KAYA

    To recieve different solutions; I have built a mobile web application but it must be used only from certain PDAs.

    Mobile tutorial question

  • Mobile device ID as a client
    U Utku KAYA

    Dear community, Does anyone know how to get the mobile web application client's unique device ID? There are solutions for mobile (window) applications but I couldn't find one to use with web application. Thanks in advance Utku KAYA

    Mobile tutorial question

  • opening files within .net
    U Utku KAYA

    You should better be away from filewise operations for that. Just use some external APIs for the application you want to run (winamp, rp etc.) and use it in your application feeding the desired parameters.

    C# question csharp help

  • newbie question
    U Utku KAYA

    If you want to call the GetNics() method in the class it beongs to, you just call it as GetNics() , if you call it outside the class you have to create an instance of the owner class and then call it as 'instanceNameHere.GetNics()' For only static methods you can use ClassNameHere.MethodNameHere() Good luck.

    C# question csharp c++ visual-studio com

  • Has .NET destroyed the Programmer's spark?
    U Utku KAYA

    It has nothing to do with .NET. As things become developed and developed, it exceeds over most developer's talent and attention. Now, what developers can be an expert on is not the technology parts like ATL , COM or whatever but the processing concepts. Look at what is going on, microsoft released applicaiton blocks and then the enterprise library. When going inside the blocks and the enterprise library you see that things are separated according to processes not the technologies. So, also with .NET , you can be an expert on some corners. Like data access , security or caching. As we develop , we change the roadmap! Someone please help me with the enterprise library. Email/MSN : utku.kaya@infoice.com

    The Lounge c++ graphics csharp asp-net com

  • Starting an application minimized
    U Utku KAYA

    This works for me public Form1() { InitializeComponent(); this.WindowState = FormWindowState.Minimized; }

    C# question

  • Multiple Criteria for Sorting Objects
    U Utku KAYA

    Hi, If its not expensive to use a DataTable, DataTable has a static Sort() method and you can do all these by using thaty method. For two criterial sorts , you can call it again in the first modified table.

    C# question csharp algorithms data-structures tutorial

  • Starting an application minimized
    U Utku KAYA

    Try to make initialization in the constructor. Mine works like that. Why do you use hide?

    C# question

  • Getting data from an array of objects
    U Utku KAYA

    Use System.Reflection; MemberInfo[] mi = t[i].GetType().GetMembers(); MemberInfo type gives informtion about members

    C# question data-structures help

  • Synchronizer
    U Utku KAYA

    Hi velkropie, If your mobile is ms smartphone operated than Microsoft ActiveSync is developed for this task. Also MSDN Mobility Center[^] will be of much help. Else you will have more chance at a more appropriate forum.

    C#

  • Online Database
    U Utku KAYA

    It was an intutition in the previous message. I have tried it with IIS and it worked. Oh no , you ask for only-FTP server?

    C# csharp database sysadmin question

  • Online Database
    U Utku KAYA

    First, be sure that the directory of your mdb is accessible in terms of user and directory permissions. Then just feed DataSource property of your connection string (for OleDbConnection object) with the path of your mdb relative to the application path. Give it a try....?

    C# csharp database sysadmin question

  • Tabels & Comboboxes
    U Utku KAYA

    If your OleDb code work then as you did last time, comboBox1.DataSource = table; combobox1.DisplayMember = columnNameYouWantToListInTheTable as string; should work. I dont know what the column name is. Try some possibilities. Sorry for incomplete help.

    C# database question

  • Get value using the name of property
    U Utku KAYA

    I am buIlding a library for developers so I dont know the type of the object. And another problem , in GetValue Method there is an object and an array of indexes that I couldnt give a meaning. Could you give me a real example please.

    C#

  • Tabels & Comboboxes
    U Utku KAYA

    First of all get rid of the new table names stuff and check if you can read data from the tables by using your OleDb code. Fill some sample data in Access and use .. . . . . string sqlSelectStatement = "SELECT * FROM "; OleDbDataAdapter adapter = new OleDbDataAdapter =(sqlSelectStatement,connection); connection.Open(); DataTable table = new DataTable(); try { adapter.Fill(table); } connection.Close(); Now look in table and tell the result.

    C# database question

  • Form Closing check
    U Utku KAYA

    May be dull but easy , Put a flag for your menuItem which will be set to one by menuItemClick event and directing the call into two methods by checking the flag. Have a nice day

    C# question

  • string problem...!
    U Utku KAYA

    Do not use quotation marks '"' for 1.0 and utf-8, you can use single quotes. If this will be an XML file I have checked single quote before and it has worked.

    C# help tutorial question

  • Tabels & Comboboxes
    U Utku KAYA

    Hi Use the following snippet for retrieving table names.... OleDbConnection connection = new OleDbConnection(); connection.Open(); object[] restrictions; restrictions = new object[] {null , null , null , "TABLE"}; DataTable table; table = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Columns,restrictions); connection.Close(); then, this.cmbTables.DataSource = table; this.cmbTables.DisplayMember = "TABLE"; I hope it works for you.

    C# database question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups