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

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

savadi

Member List

sridhar reddy mitapalli
goranV
derker
sptma
MarianL
Sukha
MikeBe
KCD
Monta
vchu
John Taylor
Karlo S
Gajab
jmealing
JAT60
sfx1
Vania B
G_Zola
GregoryI
Dj Jamminx
Only Title

savadi's Q&A profile

  • Visual C# No clue about arrays, everything fails ...

    I want to fill an array in the constructor of my object, and then use it in in another method. But no matter what I try, I can't get this right. It is too different from how arrays used to be. Either it does not compile, or the array remains null as in the example below. How should I do it class Calendar { private static int day,month; private static int [] daysPerMonth; public Calendar() { day=16; daysPerMonth[1] = 31; daysPerM ...Show All

  • SQL Server Replication between SQL CE 2.0 and SQL Server 2005 not working

    Hi, I've been trying to get my merge replication to work with a sql ce 2.0 on sql server 2005, but it keeps generating shapshot scripts my pocket pc can't execute. Example of my table.sch file in my snapshot folder: drop Table [dbo].[Application] go SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Application]( [AppID] [nvarchar](20) NOT NULL, [AddOnInfo] [nvarchar](50) NULL, [MaxClients] [int] NULL, ...Show All

  • Smart Device Development resource or assembly not found when catching exceptions

    Hi. I swear I've been able to do this before. Using .NET CF 2.0, WM5 smartphone. Anytime there is an exception being caught, I want to see the inner exception message or just the general exception message but everytime I look at it, no matter what type of exception, i always get the message that a resource or assembly could not be found. The proper namespaces have been declared, what am I doing wrong Can it be NETCF V1 app ...Show All

  • Visual C++ who may help me

    I am a vc++ beginner.I need about vc++ book.so,i hope somebody can  help me that tell me some as to vc++ ebook site.   Here is a link of some VC++ Books that you can buy. http://www.amazon.com/exec/obidos/tg/detail/-/0201721481/ref=pd_sim_b_4/102-5393407-4543349 %5Fencoding=UTF8&v=glance Also, the online VC++ help at http://msdn.microsoft.com  is always helpful specially for samples. In addition, I believe if you sea ...Show All

  • Visual Studio Express Editions revealed source code in shared dll

    Hi All I'm developing dll's to share with another part. I discovered that my source code is visible for the deploying part for example if he's in debug-mode and steps into one of my functions. Naturally the assembly contains IL and definition code but is it possible to hide the implementation C# source code when published I'm running VS C# 2005 express. /regards Soren That means that you must have d ...Show All

  • Visual Studio Team System Visual Studio 2005 and Team Foundation Server

    Hi Everyone, I am trying to connect visual studio 2005 to team foundation server, but it won't connect. The team foundation server is installed on windows 2003 server server that is connect to a Linksys wireless router (WRT54GS) with a static ip, while I am running visual studio 2005 on my laptop running windows XP SP2. Is there a specific port that I have to configure the router to forward to TFS Also when I installed TFS, I did a si ...Show All

  • .NET Development Marshalling complex parameters in C# (legacy C dll, with cdecl callbacks)

    Hi all, I'm writing a C# application which accesses a legacy C-Dll. The C-Dll contains a number of C-functions, each of them has a couple of parameters. All but one of these parameters are pointers to structs. The remaining parameter is a pointer to a callback function. I managed to marshal the structs so far that I'm able to call the C-functions in the Dll successfully. Only when it comes to triggering the callback function ...Show All

  • Visual Studio 2008 (Pre-release) ContextMenu and Data?

    I would like to add a ContextMenu to objects in a ListBox. These objects have a DataTemplate. I got it to add a ContextMenu to the DataTemplate so it was displayed on each item. But how can I react to any Click Event I tried to use <MenuItem Click="OnItemMenuClick" /> but how can I get a reference to the data the ContextMenu lies on top Parent properties point to nothing ... Well I'd have to think about it some more, but just like yo ...Show All

  • Visual Basic Number Only Input

    First of all, Sorry of this is a really simple question. I'm a bit of a noob. Is there anyway to make an input box that will only allow the input of numeric characters Thanks in advance. EDIT: The following code was taken straight out of help and was used to allow only numbers to be entered into a textbox.     ' Boolean flag used to determine when a character other than a number is entered.     Private ...Show All

  • Visual Studio Team System TFSBuild exception

    I have TFS Beta3 and TeamBuild both installed on the same physical server:SRBUILD. I login to server SRBUILD as service account: builder and run: C:\Program Files\Microsoft Visual Studio 8\Common7\IDE>TFSBuild start http://srb uild:8080 SRTEST2 ThirdDebugBuild Microsoft (R) TfsBuild Version 8.0.0.0 for Microsoft (R) Visual Studio 2005 Team System Copyright (C) Microsoft Corporation 2004. All rights reserved. System.Web.Services.Proto ...Show All

  • Visual Basic App terminates when loses focus in VB.NET 2005

    My app just disappears when I click in another window. I've tried running it in the IDE and compiling it. There's no error generated - it just goes away when it loses focus. It doesn't show up in the task/processes list. Any ideas Thanks in advance. Adrian Ceheck the system event viewer and see if there are any system or application exception when this happens. You can get some of the most amazi ...Show All

  • Visual Studio Express Editions Newbie - File copying confusion

    Hi I am severely struggling with even the basics of this part of my project. I have a destination path in a variable, selected via the FolderBrowserDialog function, and this works fine. I have a ArrayList of source paths, mixed folders and files. eg a file as C:\My Documents\TextFile.txt eg Folder as C:\My Documents\Folder1 I am trying to copy each item as follows: if it is a file, copy to destination folder, if it exists, ...Show All

  • Visual Basic Creating your First Database (VB.Net 2005)

    The above topic in MSDN Online gives the following instructions: To create a database On the File menu, choose New Project . In the New Project dialog box, in the Templates pane, click Windows Application . In the Name box, type FirstDatabase and then click OK . A new Windows Forms project opens. On the Project menu, choose Add New Item . In the Add New Item dialog box, choose SQL Database . In the ...Show All

  • SQL Server Cannot deploy assembly from VS.NET into SQL server 2005

    Hi, when deploying assembly from VS into SQL Server 2005, deployment fails with these error messages: Msg 0, Level 11, State 0, Line 0 A severe error occurred on the current command.  The results, if any, should be discarded. Msg 0, Level 20, State 0, Line 0 A severe error occurred on the current command.  The results, if any, should be discarded. I'm deploying assembly with UNSAFE permission setting. What's wrong, please Than ...Show All

  • Windows Forms Exporting OCX files

    I have created a control in Visual Basic 2005 Express Edition Beta. When I build it, it just makes a dll files. Where is the OCX toolbox file   Now I am getting the error again :( "Object Refrence not set to an insta ...Show All

©2008 Software Development Network

powered by phorum