The former link was erronous. Working one is --> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetcomp/html/retrievedeviceid.asp[^]
Utku KAYA
Posts
-
I need get a serial number of Pocket PC hardware -
I need get a serial number of Pocket PC hardwareUsing 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 device ID as a clientTo recieve different solutions; I have built a mobile web application but it must be used only from certain PDAs.
-
Mobile device ID as a clientDear 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
-
opening files within .netYou 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.
-
newbie questionIf 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.
-
Has .NET destroyed the Programmer's spark?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
-
Starting an application minimizedThis works for me public Form1() { InitializeComponent(); this.WindowState = FormWindowState.Minimized; }
-
Multiple Criteria for Sorting ObjectsHi, 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.
-
Starting an application minimizedTry to make initialization in the constructor. Mine works like that. Why do you use hide?
-
Getting data from an array of objectsUse System.Reflection; MemberInfo[] mi = t[i].GetType().GetMembers(); MemberInfo type gives informtion about members
-
SynchronizerHi 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.
-
Online DatabaseIt was an intutition in the previous message. I have tried it with IIS and it worked. Oh no , you ask for only-FTP server?
-
Online DatabaseFirst, 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....?
-
Tabels & ComboboxesIf 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.
-
Get value using the name of propertyI 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.
-
Tabels & ComboboxesFirst 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.
-
Form Closing checkMay 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
-
string problem...!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.
-
Tabels & ComboboxesHi 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.