aoky's Q&A profile
Windows Forms Looking for Tutorial
Hi, I'm trying to embed my cutom windows control in asp.net pages. If anyone can point me to some good tutorial for beginer and intermediate C# programmar, it'll be great. thanks a lot. Furqan Thanks colt... The tutorial is exactly wh ...Show All
Visual C++ help deciphering an error...
When I try to compile my application that is a console application dependent upon a setup file I recieve the following error: Linking... LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16 Debug/runga.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe. runga.exe - 2 error(s), 0 warning(s) Could anyone tell me what it means and suggest a possible solution Thanks Alan Ho ...Show All
Visual Studio Team System which setup directory?
in the install help file, single server install, team server install, I do not see this specific folder on the DVD download from MSDN: \vs\atdt downloaded this image, en_vs_2005_team_suite_dvd_beta2 and extracted ISO files to hard drive folder using \VS\setup.exe returns error: "setup was unable to copy file ....\vs\deletetemp.exe to your temporary directory..." deletetemp.exe is not in \vs directory Help file snippet... 5. ...Show All
Windows Forms binding navigator toolstrip
binding navigator toolstrip I've added a button to the toolstrip for the purpose of canceledit. Here's my problem. I want the button to simply have a C on the face as text. No matter how I vary the properties - backcolor, font, tex ...Show All
Smart Device Development Programming the UTStarcom PPC6700 sliding keyboard
I would like to know if it is possible to customize the PPC6700 sliding QWERTY keyboard (like making a bilangual English/French keyboard). Regards JP This would be controlled by the keyboard driver supplied on the device by the OEM. You'd need to either replace or extend that somehow. This is not directly supported in the platform. ...Show All
SQL Server EXEC statement
Hi everyone, What is EXEC statement What is the usage and purpose of it It is really difficult to find ant resource about this keywords that's why I would like you to help me. Thanks EXEC is short for EXECUTE. If you look in BOL (Books On Line) for the topic EXECUTE, you will find the info you're looking for. /Kenneth ...Show All
Windows Forms how can i restrict domain administrators to not monitor or use my system in a domain
hi, how can i restrict domain administrators to not monitor or use my system in a domain Raheel I think you are in the wrong forum, this is a forum for .net databinding Remco ...Show All
.NET Development Question about List<T> and accessing a specific item
I'd like to know if there is way to acess a specific List<T> item by specifying a property of that class. (It's a simple question, it's hard to ask). Let me make this clearer... Let's say I have a simple class called Person, and it exposes three properties - name, age, sex. class Person //oversimplified for brevity { string Name; int Age; char Sex; } Now I define a List<T> of type person: List<Person> ...Show All
Visual Studio Installing Visual Studio 2005 on Windows x64
I am installing Visual Studio 2005 on a Windows x64 operating system. As you know there are 2 directories for Program Files on a Windows x64 system. The setup is stating that it is installing x64 components like net frameworkd and etc. but the default for the installation is in the Program Files (x86) directory. Is this correct or should it get installed in the Program Files directory VS ...Show All
Windows Forms versioning in .Net
I wrote the following code to display the version number of my app: strMajor = System.Diagnostics.FileVersionInfo.GetVersionInfo _ (Reflection.Assembly.GetExecutingAssembly.Location).FileMajorPart strMinor = System.Diagnostics.FileVersionInfo.GetVer ...Show All
Visual Studio Express Editions Launch IE and input data
I want to launch a few websites in IE automatically and fill up user ids and passwords. I know how to launch by using Process.Start( "IExplore.exe" , www.google.com ) Now, can I go a step further and input those user ids and passwords automatically Thanks, Antonio Please see: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=166883&SiteID=1 Autho ...Show All
Windows Forms regarding windows forms layout
Dear All, Is there any design guidlines to implement standard layout in windows form, I want to implement resizing/relocation of controls according to the form size. I'v tried few solutions my self but its preety difficult to control them, i'v tried using infragistic's layout managers. Plz advise regards faraz Salam Do you mean that you want management of controls, i think you can manage con ...Show All
SQL Server Lost tables and Stored Procedures after installing SP!
I installed SQL 2005 SP1. After the installation I cannot display tables that were created with SQL2005. Tables that were created with SQL2000 still display. Updates to the SQL2000 tables do not display. The Stored Procedures that were created using SQL2005 do not display. This is true of the original .mdf file as well as backup files. I uninstalled SQL2005 and re-installed it. No change. The file size is the same as the backups so I think the d ...Show All
.NET Development CoCreateInstance is called in VS 2005 and Multithreading, Urgent help !!!
Hello folks or guys from MS can help, My code structure like the following using VC++ : CIrDlg::OnInitDialog(){ ..... m_pWaitForMessageThread = AfxBeginThread(WaitForMessage, this ); //create a thread ..... } ClrDlg::WaitForMessage(){ AxCOM::Class2 * pObj = new AxCOM::Class2(); //AxCOM is managed component; hRes = CoCreateInstance(clsid,NULL,CLSCTX_ALL,iid, reinterpret_cast < void **>(&pObj)); ...Show All
Windows Forms Why can't I do this Thread t1 = new Thread(new ThreadStart(sweeper.Traverse(dir)));
It throws a error saying it needs a method, but obvisouly it is a method. but the method needs parameter to pass. Can anyone help Thanks a million in advance Nope, If you are going to start a thread and pass it data,&n ...Show All
