Yulia's Q&A profile
Windows Live Developer Forums Find results vary when compared to Local.live.com
Hi all, Please help me to figure out the cause of this problem. When i am searching what as "pizza" and where as "us" in the find text boxes of local.live.com, its giving around 10 results in the result panel. I put the map in lowest zoom position and checked it. Although in my project is giving me 10 results , its not exactly same as in local.live.com. I am using find(what,where,i,onfoundresults) for searching. How can i make my search exactly same as in local.live.com Thanks Sarath. I assume your using the get directions in the local live to do your find Lets say in start and end textbox your putting "pizza, us" and then in your VE find parameter is ( ...Show All
.NET Development using webusercontrols in many applications
Hi every one, I have many number of web applications with the same designe and some functional diffrences. Every time when i make a small change i need to change all the applications. So i am planning to create a new application for the only webusercontrols and use those controls in all the applications. I was not able to call these control in other applications. How to call the webusercontrols in some other applications. Please help. I am waiting for your help. Thanks in advance. I'll assume you've create a project that builds the webusercontrols.dll assembly. The easiest way to get started: 1. Open the project that should use webusercontrols, say it's called WebApp 2. Click File + Add + Existing Project and select the ...Show All
Visual Basic Updating bin/debug and bin/release After Rebuild
I am developing a VB 2005 windows app. When I make a change and then build the project it does not automaticallu update the stuff in bin/debug and bin/release folders. I can manually copy everything from the project to the bin/debug folder and then hit F5 to test my changes. There must be an option that I have not set properly but I cannot find it. IS there a way to have the debug and release files updated whenever I (re)build the project Thanks. Hmm, everything looks good. Your build trace specifically states that it copied both the .exe and the .pdb from the obj\Release to the bin\Release folder. Now, you are building the Release mode executable. When you press F5, you'd be debugging the Deb ...Show All
Software Development for Windows Vista RasEditPhonebookEntry() error
Using Visual Studio 2005 on Windows Vista Beta 2 Build 5472, RasEditPhonebookEntry() returns error 120 (ERROR_CALL_NOT_IMPLEMENTED ). Code that worked previously on Windows 98-XP SP2 is: #include "Ras.h" #include "Raserror.h" #pragma comment(lib, "Rasapi32.lib") DWORD dwRet = ::RasEditPhonebookEntry(m_hWnd, NULL, _T("Test")); The result is the same using the default or a specified phonebook. Will RasEditPhonebookEntry() will be implemented in Vista Graham You had to use RasEntryDlgW instead, be careful to use the Unicode version, that's the only function which woks under Vista whatever language you use. HTH Chris. ...Show All
Visual Studio Sandcastle Help File Builder
I've created an NDoc-like GUI front-end plus a command-line builder tool for automating help file builds with Sandcastle. It's available at: http://www.codeproject.com/useritems/SandcastleBuilder.asp Using the help file builder provides the following advantages: The GUI interface is almost identical to the NDoc interface so anyone familiar with NDoc should be quite comfortable using it. You can import several settings from an existing NDoc project to start a new Sandcastle Help File Builder project. The builder will automatically locate both Sandcastle and the HTML help compiler by looking in the system path and in the Program Files special folder on all fixed hard drives. Properties are also supplied for you to specify the ...Show All
Windows Forms drop down combobox via code more now
hi i need to open a combobox via code. how do i/ Private Sub myDGV_KeyDown( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles myDGV.KeyDown If e.KeyCode = Keys.Enter Then If ( Me .myDGV.CurrentCell.OwningColumn.CellType.ToString = "System.Windows.Forms.DataGridViewComboBoxCell" ) Then 'ctype(me.myDGV.CurrentCell,DataGridViewComboBoxCell) 'code to open the combobox and display the values End If End If End Sub Private Sub myDGV_KeyDown( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles myDGV.KeyDown If e.KeyCode = Keys.Enter Then If ( Me .myDGV.CurrentCell.OwningColumn.CellType.ToStri ...Show All
Smart Device Development NetCF2.0 SP1: CameraCaptureDialog, no longer works?? [i-mate SP5]
My camera capture method below, no longer seems to works on my i-mate SP5 (HTC Tornado).. The code worked and ran perfectly for the last few months, on both NETCF2..0 and the Beta of NetCF2.0 Service pack 1, but since I upgraded my device today to the new release candidate (non Beta), it no longer works and throws an InvalidOperation Exception on CameraCaptureDialog.ShowDialog(); method. The .Net themselves seem to work alright, except the camera functionality no longer works /********************************************************************** * METHOD: startCamera **********************************************************************/ public String startCamera(CameraCaptureMode incCaptureMode) { /*** ...Show All
Visual C# Delphi objects equivalents
Hi! I'm looking for some objects that in Delphi was very usefull for me. TStringList : In Delphi, a listbox is a graphical component with a TStringList, y managed code i can use TStringList like no graphical object but can use with strings .add, .delete, .insert .loadfromfile() ... is very usefull. ArrayList is the equivalent of TList, i'm looking for operate with strings. TThread: In C# i'm launch threads with Thread aganist a function, in Delphi i can define a TThread Object that is like a class with its own internal functions, and the thread runs like a little program in the app. Which ar the equivalents Regards. The closest equivalent to TStringList would be StringCollection , List<string> or Collection<string> dep ...Show All
Visual Studio Express Editions Everything is gone when I added Tab
Please Help! I have spent the past few days building a complex form and writing all the code for it. Last night everything was perfect, it build and published fine, it was running smoothly and I was excited about moving on to another part of it. Today I go to add a third tab page to a tabbed container, when I named it, suddenly every item on every page of the entire form is gone(including the menu)! All the code is there, but nothing will display. Also nothing I do works and I have no idea what else to try. Thank you in advance for any help. Try checking the properties tab, or the document outline when in the designer mode of the form you are talking about, see if the controls are still there, they could be ...Show All
Visual Basic Syntax Highlighting for vbs files in visual studio 2003
How do I turn on syntax highlighting for vbs file extension in visual studio 2003 ...Show All
Software Development for Windows Vista Manifest affect BAT file?
Is it possible to have a manifest affect a batch file E.g. MyBatchFile.bat MyBatchFile.bat.manifest And when you execute the batch file, it gets elevated permissions as per the manifest file Are you working in your area under program files Like Program Files\myapplication or just \Program Files. If not I would suggest working in your application directory and not program files root. ...Show All
SQL Server To find out the path
RESTORE DATABASE NewAbitaDB FROM DISK = 'c:\7augbkup.bak' WITH REPLACE, here, instead of "c:\" it has to take the current path that means where i loaded the backup file, how to find out If you want to make a file restore (like mentioned above) you will have to know and specify the path where the backup is located. Be aware that the absolute path syntax of SQL Server is always specifying the local drives on the server *not* on the client. HTH, Jens SUessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Game Technologies: DirectX, XNA, XACT, etc. XNA and Winforms - 2 questions/problems.
Here is a basic app (sample code from larger app) to highlight my problem(s): public Form1() { InitializeComponent(); pp = new PresentationParameters(); pp.AutoDepthStencilFormat = DepthFormat.Depth16; pp.BackBufferFormat = SurfaceFormat.Bgr32; pp.BackBufferHeight = 600; pp.BackBufferWidth = 800; pp.EnableAutoDepthStencil = true; pp.PresentationInterval = PresentInterval.Immediate; device = new GraphicsDevice(GraphicsAdapter.DefaultAdapter, DeviceType.Hardware, this.Handle, CreateOptions.SoftwareVertexProcessing, pp); device.DeviceReset += new EventHandler(device_DeviceReset); device.DeviceResetting += new EventHandler(device_DeviceResetting); device.Device ...Show All
Smart Device Development pocket pc and sql server 2000 database
Hello, I am Zafar from Pakistan.I am developing an application usign vs.net 2003 and vs.net 2005.It is pocket pc application i am doing connectivity with sql server 2000 database.I am doing it with VB.NET.I don't know why it can't work i add refrences sqlclient and sqlserverce and done same which i done with desktop application on desktop app it work but on pocket pc app it throw exception sqlexceptioni also try to done it with throguh webservice but it gives exception invalidcastexception. i don't know what's the problem is kidnly please solve this.i simple match username,password form sql table.My email is zafarpk786@hotmail.com Thanks ...Show All
SQL Server Fuzzy Matching - Address Cleansing
Hi *, does anyone know if MS supports some kind of breaking strategy within Fuzzy Lookup/Grouping Besides that, I'd like to perform a address cleansing operation on a CRM database. I don't have a reference table (Street, Zip, LastLine, etc.) for that. Where can I get an appropriate database Anyone has some experience with this issue Thanks a lot. S. I don't really understand what you mean by a breaking strategy, do you mean splitting an address out into its component parts, such as street, city, post code If so then there is nothing in the stock components that does this. You would really want some third-party address verification software. Many of them will have their own API that could then be used to integrate this into a SSIS d ...Show All
