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

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

JaQoB

Member List

Dong Xie
David Amador T.
Hunter0781
Javafun
Vahidiran
Keith Roe
colin c
Nattack
Lydon
gaffneyn
Daniel Celeda
Yuvaraj D
BPM
Gomathi Sarma
Island1
tbcarver
gogetsome
LearningASP.NET
PLechner
Shuvro Mazumder
Only Title

JaQoB's Q&A profile

  • Visual Studio Tools for Office Visual Studio Tools fo office

    I am trying to do a Visual Studio Word project to do a smarttag but i get following error The type or namespace name 'Tools' does not exist in the namespace 'Microsoft.Office' (are you missing an assembly reference ) when i am using "using Micorosoft.Office.Tools.Word" I am running Visual Studio 2005 but I can not see any office projekt or Word tempate. do i have to download som packets (Visual Studio Tools for office) but where and what I have been searching for them but not success. do i have to have office 2007 Hi, If you use VSTO, creation of the smart tag would be much easier. Unfortuantely, as I mentioned, VSTO does ...Show All

  • Architecture Who is the appserver in .NET?...IIS, the OS, BizTalk, SQL Server?

    Some days ago, a coworker ask me the following question: Who is the appserver in .NET ...IIS, the OS, BizTalk, SQL Server ...after thinking for 5 seconds, I decided to anwser...well...it depends...could we all of them or neither. What do you think about An application server typically provides the following services: Application connectivity Transaction management Component life cycle management Secuirty State management etc. etc. Application Connectivity is facilitated by IIS (for web apps), transactions are managed by Enterprise Services (or new inline transaction capabilities i ...Show All

  • Visual Basic Lrg Timer Delay

    Hi, does anyone know if there is some way to set a timer to fire with a large delay, ie up to 1 hour. I have looked at vb 2005's new timer classes but it does not seem to be able to handle my requirements Any ideas appreciated. .NET Framework Time Class http://msdn2.microsoft.com/en-US/library/xdh6857z.aspx Interval on this class appears to be an integer http://msdn2.microsoft.com/en-US/library/system.windows.forms.timer.interval.aspx which would imply a number of ms up to 2,147,483,647 as this is integer range in .Net which equates to around 596 minutes. Module Module1 Private myTimer As N ...Show All

  • Smart Device Development Missing assembly information in converted project

    This is a rather weird 'bug'. We upgraded a VS2003 Pocket PC project to VS2005. The conversion process didn't change AssemblyInfo.cs and when we go into the new Assembly Information screen in the project properties we see the settings as we set it. When we change it in that property screen, it does change in AssemblyInfo and vice versa. But when we build the project and have a look at the properties of the executable there is no version info at all. Within the same solution we have a normal desktop application and a pocket pc class library project. Both those projects were converted as well, but on the executable and DLL it builds ther ...Show All

  • Visual Studio VS2003 source control gone

    I have an aging machine which has VS6, .NET 2002, ,NET 2003 and .NET 2005 on. Since installing VS 2005, my VS2003 installation no longer supports source control. It claims to be using SourceSafe in the tools / options settings, but I cannot change any details. WHen I try and open a project which is under source control I get the famous 'The solution appears to be under source control...' message. There is no source control option in the files menu and in general it seems disabled. HOWEVER, source control works fine in VS2005 and VC6.0. and VSS 6.0 is installed and working. (btw, I claim it's since installing VS2005, but I'm no ...Show All

  • SQL Server How to get the Columns list to the end user?

    Hello Nilay here, How to display the coulumn list of the reports to the end user Thanks, In SQL Server 2005, you can use a multi-value parameter to prompt the user.  Then you can write an expression/custom function to parse the output of the parameter.  Call that expression/custom function in the visibility expression for the column in your table/matrix. You'll need to make sure the choices in your parameter list are are kept in sync with your fields list, that's something that we don't provide by default. -Lukasz --- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • Visual Studio Team System Duration of Manual Tests

    Hi, I was just wondering if it's possible to get the duration of manual tests I noticed that the 'Test Results' window is already recording the start and end times of a manual test, but 'Duration' always shows zeroes. Thanks for the help. This appears to be a bug -- and as such, theres no workaround. I would suggest you file the bug on the MSDN feedback center to ensure that we can track the bug and get it fixed for the next verison of visual studio. Yours, Dominic ...Show All

  • Visual Studio applying smart indentation rules

    Hi,  I have been facing a problem regarding the implementation of smart indentation rules in my custom language service. i am not able to find out which interface should i implement and where should i write my rules.   Please help me with the process.    Thanks in advance..   Hi, i have given indentation to my editor at the time of parsing by capturing the charcters in OnCommand method and then applying edits on textspan and it is doing perfectly fine. But the problem i am facing now is that when i opens more than one file of my editor in one project in expiremental hive i am not able to get in ...Show All

  • .NET Development Application updating itself

    Does anyone know what technique(s) programs like EverQuest, Norton AntiVirus, etc. utilizes to update themselves They certainly are not using ClickOnce, and unless you are an administrator or power user, programs don't normally have write permission to the Program Files path. Richard Rosenheim EQ and NAV indeed do not use ClickOnce. Basically, the applications poll the server to see if an update is necessary. If so they download the patch and apply it. In the case of NAV, when you install the application, the auto-update service gets installed to run as System so it has the rights to write to any f ...Show All

  • Windows Forms How to build the shell explorer on the TreeView component?

    Can anyone tell me how I build an explorer like the left pane in the Windows Explorer, using the TreeView component in VS-2005, C# What I need is the ability to browse from the desktop, and downwards on the disk structure. I found the dialog for folder browsing, but I need it to be a part of my main window - exactly like the windows explorer... Thanks a lot for your help... Best regards, Mikael Hi, Check following article: http://www.codeproject.com/useritems/TreeViewFileExplorer.asp Max ...Show All

  • Visual C++ Replacing Once

    Hello, I'm creating an application in Visual C++ 2005 in which I need to replace a certain char in a string only once to a certain value. For example, if I have the string "2113" I want the string "2913" (Replacing only once the '1' with a '9'). Is this possible With Thanks,                     Gal Beniamini. Hi Gal,  I don't believe that there is a built in method that does this. I would use the some algorithmic forums for such issues like: codeproject.com pr codeguru.com for such general "how to" issues. Try some algorithms yoursel ...Show All

  • Windows Forms (c# 2.0) Custom control and don't take a line in the .designer.cs file when property change

    Hello, (escuse me for my english) i make a new label (custom control) extended label. i add a new property to choice the look (ErrorMessage, Title1, Title2, FieldCaption...). when the property is selected the control go to the setting file, take the parameters, and assign the properties. for example errormessage -> forecolor = red; backcolor = yellow; textalign = middlecenter... when i design a form, i take a new form, add my label, select the look type, the control go taake the paramters and assign the properties value. and it's ok, i can view my label with the good properties. but in the .designer.cs file (I nitializeComponent() method) ...Show All

  • Visual Studio Question about using VSS database as a testing website

    Hi, We are developing our ASP.NET web projects locally and then checking them into our VSS 2005 database on our development server. We unit test locally but I would like to test the website on the development server (as we check in files compile and view the website on that box). Logically, I would create a website on the dev box and point it to the project. But VSS stores all the files in alphabetized folders so I'm not sure how to go about this. What is the best way to accomplish what I'm trying to do Thanks, Craig It sounds like you‘d like your developers to work on their own computers until ...Show All

  • Visual Studio VS2005b2 hangs while checking out

    There is VERY annoying behavior in one of my solutions with VB.NET code (no any problems in solutions with C#). I use SourceOffSite to connect to source control storage, but it seems that it isn't SoS problem. When I try to edit .vb file, VS automaticaly checks out this file, then appears a message: "Source Control: Your action caused a check out of the file(s) <path>, and a new version from source control has been loaded in the development environment." and VS hangs with 100% CPU usage. When I do the same with .cs file in the second solution, everything working correctly. In any case, is there a way to disable this annoying message T ...Show All

  • Visual FoxPro API call caused an exception

    The following is a program to convert HTML entities back into their original characters. Can anyone see why it would work on Windows 2000 and XP but not on ME & 98 I have gone through depends.exe to try and determine any dependencies that I have missed but everything seems ok. If the process is made to exit before the loop it doesn't crash VFP. I am running VFP6 SP5   #include <fstream.h> #include "PRO_EXT.H" #include <ctype.h>   // make the paramBlk structure easier // to manage by using #define shortcuts #define p0 (parm->p[0].val) #define p1 (parm->p[1].val)   void unescape(ParamBlk *parm) { &n ...Show All

©2008 Software Development Network