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

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

bookysmell2004

Member List

Blakeyrat
prenney
Icanos
LSDeans
daniele bonini
cobain81
loonysan
George Waters
mike6271
Neels215375
JonnyAJAX
S Lyons
masom1773
Alex1st
JDCAMP
jinfeng_Wang
Minherz
Peter Richard
LiquidAsh
Greenies
Only Title

bookysmell2004's Q&A profile

  • .NET Development Technique for massive amount of data

    Hi, I'm working on an application, sort of like a BI (dynamic report). The user want to see a whole moth of data and the data is at the minutes, with multiple column/row and data at the munites for a whole month this equals massive amount of data. I'm looking for anything that could help me store/access/handle the data for faster result. I'm looking for .NET imbeded function/hack, and simple algorithm. I don't want to go as far as creating my own btree and balacing it myself in c and calling this function in .NET. I'm want to start with simple/moderate solution. Memory is also an issue, I cannot store multiple instance of the same data. Thanks!   (I'm using VB with .NET 1.x, vb does not support unmanage code) Sou ...Show All

  • Visual C++ VC++ Ignoring Property Page Preprocessor Definitions

    I'm using VS Team Edition, and noticing that the "Preprocessor Definitions" I'm setting on the project property page are being ignored by the compiler, but they are being respected by syntax highlighting. And yes, when I put a directive into this "Preprocessor Definitions" property, it does show up in the C/C++ property page "Command Line." In other words, it looks like VC++ recognizes it, and is ready to go, but no luck... To make this weirder, if I explicitly insert "Additional options" into the C/C++ property page "Command Line", like this: /D "MY_DEFINE" ...then it works normally. But as I said, if that preprocessor directive is placed in the convenient "Preproce ...Show All

  • Visual Studio Team System Connect to TFS window get programmatically

    Hi All, I want to do programmatically invoke the window which will show me the "Connect to Team Foundation Server" where you can add the server, edit or delete and once you added the List of projects will be displayed...... Will this exposed in OM Please help me in this regard. Thanks in advance. Regards, Kathir Hi Dennis Thanks a lot. Dennis. I invoked the same window through OM..and it is saved my time of creating the new customized window forms...thanks once again.... Can you please tell me, how to set the Multiple selection mode for the projects, i did like this. DomainProjectPicker picker = new DomainProjectPicker ( DomainProjectPickerMode .AllowProjectSelect); / ...Show All

  • Visual Studio Express Editions How to create Discussions forum in c#

    How to create forum using  c# /By using ASP.NET, which means the question is off topic here and belongs at www.asp.net . However, even there, you're not going to get a very satisfying answer, because your question is too broad. Buy a book on ASP.NET 2.0, download the web dev edition of Express, and ask specific questions as you work through your task. ...Show All

  • Visual Studio Express Editions I can't install!

    This is the error: Error 32003.File 'C:\Program Files\Microsoft Visual Studio 8\Common 7\Tools\vsvars32.bat' could not be opened for write. It won't install! Can anyone help I am out of ideas but maybe this thread will help you further. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=889624&SiteID=1&mode=1 ...Show All

  • SQL Server Transform SQL table data to XML

    I have a Teams table in MS SQL that contains a hierarchical structure (tree) as defined follows: Table Team: (TeamID , ParentID, TeamName). Each row has a pointer to its parent row. I need to come up with an XML in the following format: <DTreeNodeOfOBSTeam xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance " xmlns:xsd=" http://www.w3.org/2001/XMLSchema "> <val> <TeamName>Team0</TeamName> </val> <Nodes> <node> <val> <TeamName>Team10</TeamName> </val> <Nodes> <node> <val> <TeamName>Team1001</TeamName> </val> <Nodes /> </node> <nod ...Show All

  • Windows Live Developer Forums Getting the tic tac toe example

    Where do I get the entire Tic Tac Toe example mentioned in the SDK TIA English is my mother language either, funny to have a conversation in English then . To test the activity, you and your friend both need an XML file called msgrp2p.xml in your Messenger directory. Please see the Testing an Activity page for more information. ...Show All

  • Windows Forms Can someone explain why this SetCurrentCellAddressCore override does not work?

    What I'm trying to do is have a read only column (column zero) that never, ever gets the focus. This seemed like the proper approach, but it doesn't quite work right and I'm not sure why: internal class DataItemViewGrid : DataGridView { protected override bool SetCurrentCellAddressCore( int columnIndex , int rowIndex , bool setAnchorCellAddress , bool validateCurrentCell , bool throughMouseClick) { if (columnIndex == 0) columnIndex = 1; return base .SetCurrentCellAddressCore(columnIndex ,rowIndex ,setAnchorCellAddress ,validateCurrentCell ,throughMouseClick); } I've been at this for sometime now and have tried to handle nav keys by skipping the cell, and override ...Show All

  • .NET Development how to add a space after each four character in string

    is there any way to do that ... adding something something ( actually space ) after some number of chars in string (actually after four chars in a string) Here another simple method for you private string StringModifier(string InputString, int Interval, string InsertString) { int i = 1; int j = 0; while (true) { int NextPos = ((i++) * Interval) + (j++); if (NextPos > InputString.Length) break; else InputString = InputString.Insert(NextPos, InsertString); } return InputString; } //Call like this string MyString = StringModifier("thisthisthisthisthisthisthisthis", 4, " "); ...Show All

  • Internet Explorer Development using window.open want to get rid of url bar in new window within IE7

    Using the window.open method : The line below running in IE6 produces a new window with a only the top title bar and status bar.  However in IE7 there is always a address bar just below the title bar.  I can't get rid of it.  Surely there's a way! .  Does this have to do with the anti-phishing filter   If so is there a way to know that the client has that turned on so that I can't do a switch for window sizing based on what's going to be shown window.open( "StreamStageDisplay.aspx" , "_blank" , "directories=no, height=800 , left=800, location=no, menubar=no, resizable=yes, scrollbars=no, status=yes, titlebar=no, toolbar=no, top=100 , width=100 ) I found this in the MSDN blogs that perhaps answers the ...Show All

  • .NET Development Read image data from SQL and use it on web app

    Hi I'm developping an intranet and I wan't to view the images from a database, i allready save the files on a directory and read them from a datalist, what I want to do now is to get the images from SQL, I have done this in windows app but I have no idea how to do it from the web (no problem saving or shrinking the image, the problem is to retrive them to an image on asp net 2.0) thank's Pedro R. I went ahead and wrote a tutorial on this as I expect the question to come up again: Saving and Displaying Photos in SQL Server using ASP.NET and FileUpload Control It discusses displaying images using ASP.NET. You could display the images like: <asp:Image ImageUrl="DisplayPh ...Show All

  • .NET Development Sending mails on a localhost IIS SMTP Server

    Hi, I wrote a code to send mail and I want to test on my IIS server. I tried to set up my IIS SMTP server then I used Outlook to check my email but I had an exception Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Account: 'localhost', Server: 'localhost', Protocol: POP3, Port: 110, Secure(SSL): No, Error Number: 0x800CCC0F is there any tutorial for setting up IIS and Outlook to send and receive mails on the localhost server I saw in many WebCasts doing it but they didnt show how to set up the servers. Thanks in advance. That's right, I dont have a pop3 server, but I ...Show All

  • Visual Studio Team System CA1062 : unable to validate as requested

    In the code sample below the Mybase.New line generates an error CA1062 Since I am unable to test for the validity of the argument BEFORE calling the base constructor, should FxCop be telling me to do something that I cannot - or could someone provide me with an alternative way to this CA1062 : Microsoft.Design : Validate parameter 'eventArgs' passed to externally visible method MyKeyPressEventArgs.New(KeyPressEventArgs) Public Class MyKeyPressEventArgs Inherits KeyPressEventArgs Dim mintKeyAscii As Integer Public Sub New ( ByVal eventArgs As KeyPressEventArgs) MyBase . New (eventArgs.KeyChar) mintKeyAscii = Asc(eventArgs.KeyChar) End Sub Public ReadOnly Property KeyAscii() ...Show All

  • Software Development for Windows Vista TabletPC and Video Drivers

    I have a Toshiba TecraM7 tabletPC.  The display adapter on it is the nVidia Quadro NVC 110M.  Currently, Vista Beta build 5472 is installed with the latest of Windows Updates.  After the updates, the video display in the device manager is showing up as only "standard VGA."  I've talked with nVidia, who has this display adapter's drivers on hand, but they are only good for desktops [only].  I've talked to the tech support and they say that it is the manufacturer's responsibility for notebook and tabletpc drivers.  I then talked to Toshiba's tech support, and they have been almost no help at all.  The last response I got from them is "the driver must not be available yet."  Wel ...Show All

  • SQL Server Strange Login Failure

    I have two instances of SQL Server 2005 installed on a Windows 2003 Enterprise server.  I created a domain account to run the SQL Server Agent for both instances.  I made the service account a member of "SQLServer2005SQLAgentUser$<ServerName>$<InstanceName>" windows group for both instances. For some reason, my Event Viewer is receiving repeated Failure Audit messages like this one: Event Type: Failure Audit Event Source: MSSQL$STAGING Event Category: (4) Event ID: 18456 Date:  11/01/2006 Time:  10:55:00 User:  DM_MONTYNT\CLG_SQLAgent Computer: YKCLNSD Description: Login failed for user 'DM_MONTYNT\CLG_SQLAgent'. [CLIENT: 192.168.60.63] For more info ...Show All

©2008 Software Development Network