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

Software Development Network >> Best Ordinary Man's Q&A profile

Best Ordinary Man

Member List

msdobrescu2
Jim Carnicelli
wsalomon
Jacco Mintjes
nbrege
Ayala24
Matt Stum
B.Stark
Pavan Apuroop
Corrado Cavalli
Arunkjose
X.K.
bgrva
Jamie Thomson
NickNRuth
dimitrod
CharissaJB123
hye_heena
Indigo Cowboy
xanadont
Only Title

Best Ordinary Man's Q&A profile

  • Visual C# Everybody fails this test: C# strange inheritance

    Hi, can someone explain the strange behaviour of c# . The output of this code below is: "class B froma A". But more intuitive would be "class B from C". When one changes keyword override for new every things works like it supossed to (for me at least ). using System; namespace ConsoleApplication1 { public class A { public A() { } public virtual void Halo(C objectC) { Console.WriteLine("Class A"); } } public class B : A { public B() { } public void Halo(A objectA) { Console.WriteLine("Class B from A"); } public override void Halo(C objectC) { Console.WriteLine("Class B from C"); ...Show All

  • Visual Studio Express Editions idiots code book

    hi everyone, i am a beginner to vb as are many who post here, i am putting together a book that explains all code statements and explains how they work and what they are doing better then some of the books i have read. i there is anyone who can submit their error mesages and solutions that will be great, also i will be posting all kinds of command questions as i have already done to others on other posts and i would be gratefull for yoiur explanation comments. i want to start with accept changes why do i use it and wehn dio i use it, what is it for thanks chaza wrote: but i see from your respones that this forum is not for what i want, do you suggest i stop using it, ...Show All

  • .NET Development An existing connection was forcibly closed by the remote host, ConnectionReset Error

    Hi, I am implementing an UDP client using asynchron methods. While implementation, I have realized an interesting error. I have tested the client without there is no server in connect. When client want to send an information to server, client get the error in receive callback not after send command. My Code is: private void Form1_Load( object sender, EventArgs e) { data = new byte [3000]; socket = new Socket ( AddressFamily .InterNetwork, SocketType .Dgram, ProtocolType .Udp); IPEndPoint localPoint = new IPEndPoint ( IPAddress .Parse( "127.0.0.1" ), 19250); socket.Bind(localPoint); socket.BeginReceive(data, 0, data.Length, SocketFlags .None, new AsyncCallback (OnReceive ...Show All

  • SQL Server The media set has 2 media families but only 1 are provided. All members must be provided.

    I tried to restore database using following sql command RESTORE Database RALMYT FROM DISK = 'G:\RALMYT\RALMYT_20060523_3.3.0.0.42_stripped.BAK' but i got this error Msg 3132, Level 16, State 1, Line 1 The media set has 2 media families but only 1 are provided. All members must be provided. Msg 3013, Level 16, State 1, Line 1 RESTORE DATABASE is terminating abnormally. when i run the RESTORE FILELISTONLY FROM DISK = 'G:\RALMYT\RALMYT_20060523_3.3.0.0.42_stripped.BAK' command i can see these data and log files RALMYT_Data RALMYT_Data_02 RALMYT_Data_03 RALMYT_Data_04 RALMYT_Log RALMYT_Log_1 what would be the error please help me RESTORE Database RALMYT FROM ...Show All

  • SQL Server Adventureworks BillofMaterials

    In this stored procedure the quantity of the parent is not included. It should multiply down the tree. Can someone explain how this recursive function work ...Show All

  • Windows Live Developer Forums Somehow deriving an AddPolygon() from a Live Search Collection

    Dear Group, I've recently begun to experiment with Virtual Earth. I do a fair amount of JavaScript programming in my real job; so I created a rudimentary script to allow me to plot a polygon representing a political district in my city. I'm an alderman running for re-election and I got interested in Virtual Earth as a means to make an on-line map of aldermanic districts. Anyway, here is my rudimentary page: http://www.swerbach.com/Neenah3rd/NeenahAldermanicDistricts1and3.htm Summary of functions: Start: Start recording mouse click positions as LatLong pairs Stop: Stop recording mouse clicks Del Last Line: Remove last polyline drawn on the map Display: Show recorded mouse clicks in new window So click the 'Start' button an ...Show All

  • SQL Server EXECUTE SQL string with parameter and return value

    Hi all, I would like execute an SQL string who calls a stored procedure with param and return a value: declare @query nvarchar ( 50 ) set @query = 'sp_test 1' declare @resultat int exec @resultat = @query select @resultat Its returns a error message: "Could not find stored procedure 'sp_test 1'" The command exec ( @query ) works fine, but I can't retreive the return value and I can't do exec @resultat = ( @query ) How can I do Thanks, Aurelien Thanks very much, With sp_executesql, the stored procedure is correctly executed, but it don't return the return value... exec @resultat = sp_ex ...Show All

  • SQL Server Data Source Views - Calculated Columns

    Q: How do I use Calculated Columns from a Data Source View in an OLEDB Data Source Adapter. I took the following steps: - Created new SSIS project - Added a Data Source connecting to a SQLServer2005 DB (MyDataSource) - Added a Data Source View based on MyDataSource (MyDSV) - Created a Calcualted field to Table Object MyTable (MyCalcField) - Added a Connection Manager based on MyDSV - Added Data Flow to Project - Added OLEDB Source Adapter to Data Flow - Attempting to Access Calculated Field MyCalcField to be used in Data Flow. ISSUE: I can't seem to find a way to get the Calculated field to pass through. It's as though this metadata is not available to the Flow. Anyone have any ideas Thanks - MikeyNero ...Show All

  • Software Development for Windows Vista Power icon problem

    Hello, I've just installed the Windows Vista Beta 2 (Build 5384) and so far so good, except for one thing: somehow i can't activate the option to show the power icon on the "notification are" of the "taskbar". When i go to the properties of the "taskbar", and then go to the "notification area" options, i'm allowed to select to always show the clock, volume and network icons, but not the power icon. Do you know what can i do to fix this problem Because of this problem, i never know when the battery is low. Thanks for your help!! If am not wrong it is because Vista do not have support for the smart battery system, as with linux,which is working very hard for ...Show All

  • Windows Live Developer Forums Thematic maps?

    Is it possible to build thematic maps using the virtual Earth SDK For example making regions different colours based on their population density. Thanks, Andrew Morten Nielsen wrote: Of course it is possible (well at least with the new API). See http://showcase.sharpgis.net/ve for an example. See that right there is a task that is easy in MapPoint as the boundaries are already defined in the application. However for example if you had point data with the location of every person and you wanted population density for every 100m cell of a grid covering an entire country you would find that this is beyond the functionality of MapPoint. ...Show All

  • Windows Search Technologies Desktop search does not think Outlook is installed

    I recently installed windows desktop search on my XP SP1 machine running Exchange 2003 in cached mode connecting to an Exchange 2003 server. Windows desktop search won't let me select Outlook because it doesn't think I have it installed. I checked from IE and Outlook is set to my default mail client. Any suggestions of other things to check is appreciated, searching through my mailbox and .PST files would be great! Thanks. Hi ya, Quick question... What did you mean when you said: Windows desktop search won't let me select Outlook because it doesn't think I have it installed What do you see when you go to the Desktop Search Options, Indexing, Browse At this point I'd Love to help but I'm reall ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. I need to Load my own graphics format file --> Custom Importer

    I need to Load into the content manager my own graphics format file, i already have the libraries to load this file and extracting it into a Bitmap Array , but i don't have any idea about how i can allow the content manager to load this info. I'm making a 2d videogame, my own graphics file format have a lot of extra information for each frame that it have, because of that i need to read this file extract the bitmap info and the extra info, off course i need that my Texture2D objects obtain the images from the bitmaps that i extract from my own file. something like that: **Solution Explorer --Content ----Textures -------MyFile.JKI Where MyFile.JKI is a file with my own graphic image format, i have the lib ...Show All

  • Windows Forms How to get the next item?

    If the user have selected an item, how I can work with the NEXT item (LISTVIEW) ...Show All

  • SQL Server SQL Server 2005 hotFix 2153 won't install

    I am trying to install sql2005-kb918222-x86-enu.exe, first one in the x86 family. I am getting "This machine does not have a product that matches this installation package". I have SP1 is installed. Version and patch level are 9.1.2047. on HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.1\Setup Any help is appreciated I have Intel Pentium M processor X86 family_6_Model. I had installed x86 SQL Server 2005 installation packages. But SP1 had failed on Client Components. ...Show All

  • SQL Server OLAP - EXCEL problem - urgent

    Hello, I have a dimension hierarchy with 2 levels, like this: A - X - Y - Z B - U - V - T And I have a cube with the dimension above and one measure (sum). The fact table of this cube has 2 columns (level2,sumvalue) and i have the values: Level2 SumValue X 1 Y 2 T 6 When I access this cube from Excel and use multiple selection weird stuff happends. So, I create a Pivot table, in which i select only X,Y,U: Level1 Level2 Total A X 1 Y 2 A Total 3 Grand Total ...Show All

©2008 Software Development Network