Software Development Network Logo
  • Windows Vista
  • .NET Development
  • VS Express Editions
  • Windows Live
  • Visual Studio
  • SQL Server
  • Game Technologies
  • Visual FoxPro
  • Smart Device
  • Windows Forms
  • Visual C#
  • VS Team System
  • Architecture
  • Visual J#
  • Microsoft ISV

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

StormChaser46678

Member List

CTARP2
Angusl
CJ_
Yashwant
C McGlothen
KimberlyL
FlyingCarrot
Moutso
TMurnion
Little John
dragank
WernerKossack
Roy Griffiths
BlueRonin
Matt Tompkins
ingriT
Leon Zhu
SQL-PRO
doener
Zaba
Only Title

StormChaser46678's Q&A profile

  • .NET Development creating web crawler and search engine

    i am trying to develop a web based search engine and web crawler so i need help from all the experts out there. i would like to use SQL Server 2005 as by data backend. please help me and point me valuable resources and provide some insight to this difficult endeavour. i have a developed a simple user directed web crawler, that searches the web using google as a seed url. anybody interested i will mail the source code to you email me at connect2sandeep@gmail.com. its just basic stuff so don't expect some fireworks. ...Show All

  • Visual C++ ATL included in PSDK?

    Is the ATL included in the Microsoft Platform SDK So can I use the WTL with Visual C++ 2005 Express and the PSDK thanks! I looked in the latest Platform SDK ( Windows 2003 Server SP1 ) in the include folder and I see that alot of ATL code is included in the PSDK. So I see not reason why you couldn't use the ATL headers (which contain most of the ATL library ) from the SDK to build applications using Visual C++ Express Edition. This, combined with the use of WTL (which offers abstractions for Windows controls ) should enable you to build MFC-like apps using only free tools / libraries (I'm going to ...Show All

  • Visual Studio Express Editions Book Recommendation to Learn C#

    Hi Everyone, Anyone know of a really good book on learning C# 2005, that is easy to read and understand, without a lot of fluff and page fill Two that I have been looking at are "Learning Visual C#, 2nd Edition, by Jesse Liberty, and the Microsoft Visual C# 2005 Step by Step, by John Sharp. Both about 500 pages. I have the MSPress "Visual C# 2005 Build a Program Now", that the Express CD comes with, but need more information about things like delegates, interfaces, abstraction, collections, etc. that are to the point and won't put you to sleep in less than 1 page. Any thoughts would be very much appreciated. Tha ...Show All

  • Windows Forms Auto-expanding TextBox?

    Hi, Am I mistaken or is there no automatic way of getting a multiline TextBox to grow as the number of lines in it increases and when the form is resized I'd think something like this would be standard in a mature UI framework like WinForms Many thanks, Jiten There is no built in way to automatically grow the number of lines in a TextBox as you enter more and more text into it. Instead, make sure you have scroll bar support setup. When you’ve got the MultiLine property set to true, also set ScrollBars property to Vertical. As for growing the TextBox when the form is resized, change the TextBo ...Show All

  • Windows Forms Hosting controls in IE 6

    Can anyone tell me what I'm doing wrong I'm running XP SP1, IE6 SP1 and IIS 5.1. I have installed the .NET framework v1.1, the .NET SDK v1.1, and Visual Studio .NET 2003. The quickstart sample for hosting a control in IE works fine. Now, I want to host my own controls in IE. I created a simple control which inherits from UserControl, and con ...Show All

  • Visual Studio Step over (F10) responds slowly

    Hi, I have start using VS 2005 this week and i notice that when i am using the step over while debuging it is response very slowly compered to VS -6. I notice that the call stack and Autos windows also addes to the poor performance, and each step the auto windows refresh. 10xs alon The autos window has always refreshed on every step, and performance has always been affected by what Windows you have open. Can you be more specific about what you are seeing: 1) What do you mean by 'poor' performance 1/10 second per step, 1 second per step, 10 seconds per step 2) What kind of hardware do you have 3) What kind o ...Show All

  • Visual Studio Team System "Start selected test project without debugger" problem

    Hi, I have a unit test that fails when I click "Start selected test project without debugger". If I run the same tests with "Test manager" or "Start selected test project with debugger" they pass. I've worked out that it is because VS copies different assemblies to the out directory of the test. When it fails it copies my "orders" assembly for some reason, even though it isn't referenced or needed by any of the unit test code when it runs. (This causes some reflection based code I have to fail as another assembly related to orders isn't present). When it passes this assembly isn't copied Does anyone know why VS does this It seems prett ...Show All

  • Visual Basic how i can get connection string of db on host computer??

    as my code is dependent on the database so whenever i take my code on the different computer, i need to set connection string for it and recompile the project.. can i get this string by using any api.. at run time i don't want to give it string every time when i change pc or database server.. If the database resides on the same computer then nothing should change; unless you change the name of the database, of course (you are always on the local server). If it's a remote database then you should program in a way for the user to select the database. The simplest way, as stated, is to store it in a config f ...Show All

  • Smart Device Development Is there any battery low notification

    Hi All, a) Is there any battery low notification sent to running PocketPC 2003 application b) wht happens if my battery goes low and suspends PPC c) if an application is running huge task and PPC goes in suspend mode wht happens Will it resume after power is made available Any inputs or link to any document appreciated. -Seemit Hi Seemit, WinCE4.0 onwards supports power manager that provides power notifications.  An application has to explicitly request to receive power notifications using RequestPowerNotofications() API.  See below link for power management API http://msdn.microsoft.com/lib ...Show All

  • Visual Studio Team System list of all checked out files

    Hi, How can I build a report of all the files in my team project / folder that were checked out Thanks Michael Are you asking about how to create a report in the reporting service or about getting a list of the checked out files (i.e. using "tf status") Also are you asking only for files in your current workspace, your current user or for all users across all workspaces Thanks. Robert. ...Show All

  • .NET Development Embeddable database or DBF Library?

    I have been using the Pocket Access database format for my applications as they do not need SQL Server and the customers do not need SQL Server / MSDE on their desktop. I don't feel that XML is a valid option for a database but I may be wrong. Any alternatives to Pocket Access and or SQL Server would be appreciated. I was wondering if anyone had seen a DBF library in C# that can be used in the Compact Framework. Thanks in advance for ANY help or suggestions. RE: I could accomplish the same effect with code as you stated above but I would basically be writing my own database correct Well, .Net handles most o ...Show All

  • Windows Forms Controlling Control Painting using Clipping Rectangle

    Hello, I am using a 3rd party library's control. I am adding child controls (like ComboBox and Checkbox) to this control and want them painted over the 3rd party library control. I am running into a problem when the 3rd party library draws scrollbars, because stupidly they draw the scrollbars as part of the client area and not the NC area. The result is that my child controls paint over the scrollbars. To fix this I tried overwriting the OnPaint method and changing the ClipRectangle in the PaintEventArgs, as well as the ClipBounds, VisibleClipBounds, and Clip properties of the Graphics object in the PaintEventArgs, and then pas ...Show All

  • .NET Development Biztalk Help needed

    Hello Friends, I am new in Biztalk server 2004. I need a solution for my project. Below I give my problem, Please give me a good solution for me. I have a C# application. It has an upload page. If user uploads a XML file,the C# application reads it and send this to MSMQ as a Message. The code is below. StreamReader sr = new StreamReader(Path); string str; str = sr.ReadToEnd(); System.Messaging.Message mm = new System.Messaging.Message(); mm.Formatter = new ActiveXMessageFormatter(); mm.Body = str.ToString(); mm.Label = UserID; mq.Send(mm); I create a Orchestration with receive and send ports. The receive ports looks message from the MSMQ ...Show All

  • SQL Server Can't connect with Visual Web Developer Express

    When attempting to use VWD Express' built-in web server I recieve the following error in browser window: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) I've done the following: Followed advise on How to: Configure Express to accept remote connections Retrieved port_address from SQL Server Configuration Manager (i.e. SQL Server 2005 Network Configuration > Protoco ...Show All

  • Visual Basic Vb.NET 2003 setup Wizard problem

    I tried to create a setup for vb.net 2003 project. The tab 3of 5 "Choose what project outputs to include" is missing from Setup Wizard, it goes directly to "Choose files to include" and as a result it did not create proper setup for my project. I just started experimenting with VB.Net and it seems that this option worked before. Recently I installed VB.NET 2005 express edition and it does not have any Setup Wizard option. Could anyone help with this issue Appreciate your help in advance,   ddb007   VB Express does not include setup projects. You need the Standard edition or greate ...Show All

©2008 Software Development Network