Software Development Network Logo
  • Windows Forms
  • Audio and Video
  • .NET Development
  • Microsoft ISV
  • Visual FoxPro
  • IE Development
  • Game Technologies
  • SQL Server
  • Visual Basic
  • Visual C++
  • SharePoint Products
  • VS Team System
  • Smart Devicet
  • Windows Vista
  • Visual C#

Software Development Network >> ly4587's Q&A profile

ly4587

Member List

kwyap
Peppermint
OldCDude
Roach
mastermemorex
Le Tigre
Thomas LEBRUN
BiBi MeiMei
Zombie_002
JB1863
gibic
--Alan---
brottmayer
cwhetsel
JEAN BAPTISTE LOTY
adi151478
vdv_phuong
nomad#1
Grant Jenkins
Thara Riaz
Only Title

ly4587's Q&A profile

  • Windows Forms Webbrowser Help needed

    This Script i found on msdn site is meant to update the url in the textbox u put a url in to i got it to work in visual basic but it won't work in c# and its the right code  update: also the enter button when pressed is mean to take u to the url but dosen't work either. [code] // Navigates to the URL in the address box when // the ENTER key is pressed while the ToolStripTextBox has focus. private void txtURL_KeyDown( object sender, KeyEventArgs e) { if (e.KeyCode == Keys .Enter) { Navigate(txtURL.Text); } } // Navigates to the URL in the address box when // the Go button is clicked. private void cmdGo_Click( object sender, EventArgs e) { Navigate(txtURL.Text); ...Show All

  • Visual Studio 2008 (Pre-release) [WPF Framework 3.0]How can i use a c# gauge component for WPF ?

    hello, i designing a WPF application for windows vista on visual studio and interactive desiger with using c#. i need to use a gauge component on my application. I was download some components for trying on the visual studio but many components not supported Framework 3. How can i use a gauge component for WPF. i want to add a gauge component on the *.xaml file. and my another question is : i try to open some WPF applications on visual studio or interactive designer, some sometimes i saw an error on visual studion xaml design window like this : "This is a placeholder. the visual designer for this type has not yet been implemented" this error message comes from microsoft media mania WPF demo program.program can be build succe ...Show All

  • SQL Server could i have missed Reporting services during installation

    I recently installed SQL Express advanced and came across something thats confusing me. When i look at my running services i see the advanced features like SQL Server Full Text Search and the like ,but cant seem to find the reporting service. Is there a chance i skipped over it in the insall I had assumed i would have a service running that would say something along the lines of SQL Reporting Services. I havent come across directions on how to turn it on, so i assume that i missed it during installation Have you installed Business Intelligence Design Studio (BIDS) from the 2005 express tool kit If so, were you able to start the application When I try, I get what seems to be sucessful install except when ...Show All

  • Smart Device Development a socket was attempted to an unreachable host?

    Hi, I have opened my middle tier application with VS2005,CF2.0 (which is developed with VS2003(CF1.1)). When I run on VS2003 and pocket pc emulator 2002 , it is connected to server with out any error. but when I open on VS2005 (pocket pc emulator 2003) It is giving the following error. A socket was attempted to an unreachable host. can u plz give me the solution fot this if u know. Thank you for responding. yes it is reachable outside the code. I am able to connect to my server through VS2003 (simulator 2002). but not with VS2005 (simulator 2003). If you know any solution please let me know. ...Show All

  • SQL Server Time Series only predicts one step

    I have a relational table with daily sales for 364 days (52 week span) for 60 stores. I have created a Microsoft Time Series model using store as the case and the historical/actual line charts appear in the Charts viewer for each store. But only one prediction step is shown no matter how many prediction steps I select. I have tried this with an OLAP-based model and also tried a simple DMX query, all with the same result. Thank you in advance for any help with this. P Taylor Jamie and Alexei, I did get more predictions with a compexity penalty of 0.96. I have some more data sets from additional groups of stores that I plan experimenting with. Many thanks for your help. Philip Taylor ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Tile Engine Tutorial Series Update

    I wanted to let everyone know what was going on with the Tile Engine Tutorial series I have been doing over at xnaresources.com . First, I've just uploaded what I'm calling " Part 4b " which handles having the Avatar leave the center of the screen. That's just a small tidbit though. I've also completed and am in the stages of doing final testing on a new Part 5 tutorial that covers creating a Game Component for Tile Engine work out of what we have learned so far in the Tile Engine Tutorial series. I've got the component and the tutorial finished, and Jason is running through it to make sure all everything is Ok. Then I've got two more sample projects using the engine to complete (they are very simple, since it's pretty easy to use). ...Show All

  • Visual Studio A4 paper size with winforms reportviewer

    Hi, Ive searced the web and found only a few dead ends, so i thought i'd ask in here, hope its the correct place! i have created a report that will use a localreport on a winforms app, the report works fine, however when i try to print it, it is always set to letter size paper, how do i change the print preview to be A4, and set the margins i have set the report size in the report, but it seems to make no difference. Regards, Russ Surely one of the benefits of the dotnet framework is that you generally don't have to convert code between one dotnet language and another With a C++ background and familiarity with he dotnet libraries it should take you about ten minutes to pi ...Show All

  • Visual Studio formatting messages written to MSBuild Console

    Hi, We use a lot of custom MSBuild tasks to build & deploy our code. I need to log message during the execution of these task & need some to the messages to be highlighted in red or green. I am using Log.LogMessage(), but I am not able to format it to display the messages in color. Does someone have an idea how it can be done I don't want to use Log.LogError() as it would get displayed with associated error information. Thanks in advance for all the help Ramya If you want to do custom colour formatting on the console you will need to create your own console logger and do your own writing of the messages to the console. Even if you inherit from the Microsoft.Build.Engine.Console ...Show All

  • Visual C# Capture Streaming Video

    Hi, I want to create a program that is able to save a (unprotected) video file from a mms-server. I tried different ways to get the stream and write it to the harddisk but I failed each time. Is there a way in C# to do this Thanks in advance. I found an open source program ( http://www.videolan.org ) who is able to record live streaming video files. This proves that their have to be away to create such a program. Any idea's to do it in C# or to import the DLL of this program. ...Show All

  • SQL Server DROP DATABASE -> database in use error

    when I do DROP DATABASE I'm getting errors because it's in use. But if I do a delete from the mgmt studio gui I have the option to close all connections as part of the delete. Is there a way to achieve the same effect from a sql script Here is an article I wrote about that: http://drsql.spaces.msn.com/blog/cns!80677FB08B3162E4!950.entry Basically: alter database <databaseName> set single_user with rollback immediate I find this indispensible when testing database creation scripts with a few windows open and I need to drop the database, recreate it with scripts, fix some stupid bug and then re-run things. Two tricks: First, most every dialog in SSMS and SSMSE ...Show All

  • SQL Server How to determine the number of cluster for the my clustering models?

    Hi, all here, Thank you very much for your kind attention. Is there any good way to determine the number of clusters for the clustering models Really looking forward to hearing from you for your guidance. Thanks a lot. With best regards, Yours sincerely, If you set the CLUSTER_COUNT parameter to 0, then the algorithm will try to determine automatically the number of clusters. Also, you could try to set CLUSTER_COUNT to a large value (say, 30). The algorithm will start looking for 30 clusters, then merge those that are really close, so the result will be less or equal to 30, and will give you an idea of how many actual clusters seem to exist in your data. You can also use the MINIMUM_SUPPORT parameter to add f ...Show All

  • Visual Studio Express Editions C# 2005 express edition + .net framework 2.0 sdk

    Hi everyone. I want to start using the features that sdk has. But i have a problem. Don't know how to start T_T. I have installed C# 2005 express and .net framework. But i don't know how to use the sdk features. I tried also installing the directx 9 sdk and i can't use it's features neither. I just don't know how to do it. If anyone could help it would be nice :P Thanks Everyone and excuses for my english which SDK are you referring to if you are referring to the DirectX SDK have you looked at the samples and documentation Samples contain everything you need to know about how to use the directx SDK really. you need to add references to those assemblies you wish to use which give you access to use those class files. ...Show All

  • Visual Studio 2008 (Pre-release) are there any plans for a FoxPro provider

    I have to support both SQL and FoxPro in my applications. Is there a plan to develop a provider for FoxPro Dinesh, in one of the videos with Anders, mention was made that there is a internal implementation of LINQ to Access. Will this be released at any point or is it simply an attempt to work through some of the provider model details Jim Wooley http://devauthority.com/blogs/jwooley/default.aspx ...Show All

  • Smart Device Development question about ActiveSync integration

    Hi all, I have CF 2.0 mobile application running on WM 5.0. This application can operate data at offline. But whenever device is on the Cradle or use ActiveSync, ActiveSync can sync data throught web service. That's no matter whether this application is running when ActiveSync is active. Does anyone have idea about that Thanks. I am C# programmer, could you please point out whether there is manage library or component we can use for this purpose Thanks ...Show All

  • SQL Server Integration services Globla variable and scheduling issue

    I have one main package from which i am executing 5 other packages.I want to use one single DB connection in all the packages which i am declaring in Main package and it should be available in all the child packages. How can i Do this Few Variables are common is all the packages so i want to keep it Globally so how can i access those variables How can i schedule package in sql server Thanks Instead of using variable, Can I use the same connection for child packages which I am using in Main package And if there is no other way then how can I asign a variable value(Connection Staring) to a Ole DB connection manager ...Show All

©2008 Software Development Network