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

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

nano2k

Member List

Christian Kleinerman - MS
James Alexander
bistok
Udi Azulay
Nimble
Phantasm
SQL User
Vijaya Kumar M
Steven Benjamin
barbarian
oxomichael
Myrkky
Tups
BeeNeeB
Roar
rfryer
Juniorscone
Jonas Roineslien
WhPonds
m4yster
Only Title

nano2k's Q&A profile

  • Visual C++ Is it a BUG? regarding AutoComplete Menu for User defined lib

    Hi, Iam using Visual Studio 6.0. I Created my own library.  In the IDE under tools Options i supplied  the source directory, Lib Directory, Include Directory. in the OS Environment path i appended the  DLL path.. When iam using my dll in another project, It is working fine. BUT, the functions are not displaying(AS Tool Tip) (Auto Complete). when i press . or -> even i pressed <Ctrl> And <Space> ...Show All

  • Visual Studio Team System All Unit Tests abort immediately

    I've been using the TestManager extensively in Studio 2005 Team Version for months running dozens of unit tests as I develop. Recently, every time I try to run a unit test *in Debug mode*, it aborts immediately with no message. When I open the test results, all I get is this: Test Name: <test name> Result: Aborted Duration: 00:00:00 Computer Name... Start Time: 1/1/0001 12:00:00 AM End Time: (the real date time) ...Show All

  • Visual Studio Express Editions CDate function returns 'IndexOutOfRange' error - also in VB.Net 2005 Beta2

    Hi folks, I have already reported this error in the VS 2005 Beta2 forum, but was told that it was not reproducible (VbCity and VBug, and your UK Launch team were also unable to reproduce the problem). I think I now have a lead on the issue! It also looks similar to a problem reported yesterday on the VB Express forum - 'I keep getting the out of range exception'. I have condensed the problem to two lines of code:    &nb ...Show All

  • Visual C++ File open errors returned when trying to open a file for appending

    I am trying to open a file for appending. ie. if the file exists, open it for appending, if not, create it. I am getting back a NULL pointer, and do not know why. Here is my code excerpt. It is a C file. FILE *pFile; char *cFileName; cFileName=argv[++i]; pFile = fopen(cFileName,"a"); cFileName has a valid filename ('apm.dbg'), and I have full write permissions in the directory. I can step into fopen and when the file is opened, ...Show All

  • SQL Server Using SQL Server Reporting Services on a local machine without IIS

    My question is: Is it possible to use SQL Server 2005 Reporting Services without having to have IIS installed on a machine I have a scenario where I will be installing SQL Server Express on machines without IIS (I don't want to force corporate users to have to install IIS) and would love to use SQL Reporting Services to perform a reporting function. I should not need IIS installed as the report server will be on the same machine, but i ...Show All

  • Windows Live Developer Forums C# - What references, namespaces to add?

    Hello there, I want to develop an activity with C#. What references and namespaces I should add Regards, Muhammad Hegab While it is possible to write an activity in C# (compiled not even asp) it requires some knowledge of marshaling code between the managed and unmanaged world. Its not easy. I have seen a research Intern do it here once, but I have not seen anything else since. We are continually looking at tho ...Show All

  • Visual Basic How to specify Directory for a FileStream

    I am trying to read and write a image using a "stream" from one directory to another directory and need to know how do you specify the directory....   Dim ImageStream As IO.FileStream Dim ImageFile As IO.FileInfo Dim ImageByte() As Byte   '**** please specify here how to ADD directory and FILENAME ********* ReDim ImageByte(ImageFile.Length) ImageStream = ImageFile.OpenRead ImageStream.Read(ImageBy ...Show All

  • Smart Device Development error when compile Projet Pocket Pc 2003

    Hi, all I installed VS 2005 beta 2, and make some example program for pocket pc 2003. Each time i compile, i appears a lots of warning, did you see this Like the SDK pocket pc 2003 in visual studio 2005 miss something If you met this, what did you do to pass it However, the program still run. Julien   secchk.lib(seccinit.obj) : warning LNK4099: PDB 'secchk.pdb' was not found with 'E:\Program Files\Microsoft Visual Studio 8\Smart ...Show All

  • SQL Server Error Message on Preview

    I am now getting this error mesaage when I try to preview my report [rsInvalidToggleItem] The table ‘table1’ has ‘siteref’ as a toggle item. Toggle items must be text boxes that share the same scope as the hidden item or are in a scope that contains the hidden item, and cannot be contained within the current report item unless current grouping scope has a Parent. What does that mean in english Also, if I can't fix this, is there a way t ...Show All

  • .NET Development What a Laugh

    I could not help laughing when reading my server logs, besides the usual traffic, there are a few trying to launch games (none on my site) run perl scripts (no perl on my server) and hunt for some linux oriented folders etc. All I can say is good luck, because the server is secure, and the firewall prevents anything but port 80 requests in. www.greenrelations.com Now, the x64 machine I use is now doing better. Been upgrading the site, with ...Show All

  • .NET Development Problem with .net COM Application when i use 2 Frameworks[v1.1.4322, v2.0.50727]

    Recently i developer an application with microsoft .net[v2.0.50727]]to close the moviments of the bank. This application is working very well. The problem is when one machine(server) have 2 frameworks installed [ v1.1.4322, v2.0.50727]. This machine have .NET applications[v1.1.4322] registred in COM, when i installed the .net Framework [v2.0] there applications don't work correctly, i resource in the internet and my conclusion is when one machin ...Show All

  • Software Development for Windows Vista How to use DirectShow to save a vidieo as a file of frames?

    I want to save a input vidieo as a file frame by frame.Can you tell me how to realize it by Directshow I'm fresh to using Directshow.Can you help me Thank you very much! I'd like to save a vidieo as a file frame by frame.Can anybody help me Thanks very much!! ...Show All

  • Visual Studio 2008 (Pre-release) VisualBrush at Runtime BUG?

    Hi, I'm filling a visualbrush using a custom control at runtime. I have something like this in my main window: <object> < DiffuseMaterial > < DiffuseMaterial.Brush > < VisualBrush x:Name = " visualBrushCustom " ></ VisualBrush > </ DiffuseMaterial.Brush > </ DiffuseMaterial > In the code behind: void Window1_Loaded( object sender, RoutedEventArgs e) { customControl = ...Show All

  • Software Development for Windows Vista How to Obtain Fault from child activity in FaultHandler?

    How does a child activity obtain access to the Fault captured by a FaultHandler I have a code activity as a child of the FaultHandler. I simply want to spit out the message from the exception that was caught. I tried using the Parent property, expecting that to give me back a reference to the containing FaultHandler, but it was null. The only way I can figure is to add a property to the workflow to store the Fault in through a binding so t ...Show All

  • SQL Server June CTP - Multi Value Parameter

    I have a string report parameter with Multi-value checked. The multi-value list generated does not contain quotes around each string values. Is there a simple way to accomplish this I want to include this list in the IN of the WHERE clause. Thanks, I am actually trying to execute a stored procedure to populate the report. So the dataset type is Stored Procedure instead of Text. Therefore the parameters are ...Show All

©2008 Software Development Network

powered by phorum