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

Software Development Network >> Andretti Fan's Q&A profile

Andretti Fan

Member List

Selea
VenkatDR
CindyKS
Dhivya
neris
Daan Banaan
Bogdan Trcek
bennettdan
marcvs
Anujoy08
Nung
Jayadev
StLuisRey
BA08
Glenn Slayden
HMoutawakkil
Theisos
dogboy ff
Tanveer Rashid
Oliver77
Only Title

Andretti Fan's Q&A profile

  • Visual Studio Tools for Office Visual Studio 2005 for Office over VS Standard 2005

    If I install VSTO 2005 over VS Standard 2005, will I loose any of the language support in VS Standard   Basically, there needs to be an option between Professional and Team that is the VS Pro with the Office Tools. Thanks, Mike. So installing both with give me an integrated development environment where all features of both VS Standard and VSTO are seamlessly available. Mike. ...Show All

  • Visual C++ Tab is not working with my VC++ Dialog !

    Dear All, In my VC++ Dialog, Tab is not working when ever i call that dialog from the Menu. However Tab works absolutely fine whenever I call same Dialog from another Dialog. I have tested it, Tab on My Dialog (say Dialog-A) works fine when ever i called it from another Dialog (say Dialog-B). But when ever the Dialog is called directly from the Menu, Tab doesn't work. I am really struggling to get rid of the simplest thing (As I am new to VC++). I will really appreciate quick response/idea from you. Thanx in advance. Regards, Nawaz Ijaz. I think I have the same problem. I have a COM object in a ...Show All

  • Windows Forms read CSV or an easy way to convert to Access

    I have to import files into a database, and i have that capability but i would like to do some checks before this takes place, such as verify that the appropriate columns are present, verify that the number of rows are a certian number, make sure there are no blank rows all just to make sure the DTS import goes smoothly and if not i ...Show All

  • .NET Development Design Question

    I have a socket layer in my ASP.NET application. 1. User fills parameter boxes and submits page. 2. Application frames proper command lines based on parameters submitted. 3. Application calls SocketHElper.cs class to pass framed lines to the other machine. The same class also recives responses back fro the other machine. I require help categorising each of the above actions under UI,Business and Service layers. 1- UI 2 - Business logic 3 - Business Logic Thank you. Hi, ASP.Net related inquiries should be posted on forums.asp.net . You would have a good chance of finding an answre there. cheers, Paul June A. Domag ...Show All

  • SQL Server Cannot connect to SQL Server 2005 April CTP from remote computer

    Hi, I am trying to connect to a SQL Server on a Windows2003 w/sp1 Server from a remote computer but always seem to get the infamous "Access is denied or Server Does Not Exist" error.  However, if I try to connect from the machine that is running the server, there is no problem. (Used sql account, server=mixed authentication) The windows 2003 Server is a single server installation with .Net 2005 Beta 2 Team Suite, Team Foundation Server and Sql Server - Installing these items  took me a while, but eventually I managed to install from scatch to end without any installation errors. I have triple checked that both TCP 1433 and UDP 143 ...Show All

  • SQL Server RS Security Best Practices

    Dear Anyone, Does anyone know where I can find some papers regarding best practices on how to implement security in reporting services   Thanks, Joseph Books Online should be a good start for overview.  There is a whitepaper on how to develop a custom security extensions, but that might be beyone what you're looking for.  If you have specific questions, please ask. -Lukasz --- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • Visual Studio 2008 (Pre-release) Add image to scroll bar

    Hi is it possible to add any image or text to scroll bar Thanx-Nagu Sure, you just need to edit its template. Scrollbars are pretty complicated beasts though, so we'd need to know exactly where you want to add it. In the up/down buttons The scroll region The thumb Let us know and someone might be able to whip together a little sample for you. If you have Expression Interactive Designer installed, add a ScrollBar control to your design surface, right click it, choose Edit Template and then Edit Copy of the Template. That will start you off with the default elements of the scroll bar and you can go i ...Show All

  • Smart Device Development Calling managed code from native code using COM interop

    I'm trying to write COM wrappers around an existing C++ library so that it can be called from managed code, and for the most part I have been successful. The managed application can create COM objects in the native library and call them. I've been getting nothing but crashes, however, when I try to make calls in the opposite direction, and I'm wondering if there might be a known problem in this part of COM interop. What I've done is created a COM interface in the native code that is never actually implemented in the native code. The native DLL is then referenced by the managed project, creating an interop DLL. I then have my managed C# form ...Show All

  • SQL Server Results displayed in visual studio, but not on website

    I've created a simple report (June CTP) based on a paramaterized stored procedure using integrated windows security.  When I preview the report in the designer, I get results as expected.  Deployment to the web server was successful.  After entering paramaters and clicking [View Report], the page refreshes with no data - just my paramater bar.  I am using the same paramaters as in the designer.  Any ideas Figured this out.  I didn't really remove the SQL paramaters, just ignored them in my SP.  Apparently, even though I was allowing empty strings in one of the paramaters, ...Show All

  • Visual Studio 2008 (Pre-release) Is VisualBrush the only way to display DrawingVisual?

    Hi, Is VisualBrush the only way to display a DrawingVisual Kind Regards, Rana Rana, once you have a Visual, then you use VisualBrush, but if you originally had a DrawingGroup, then you could pass that directly to DrawingBrush [not ever making a DrawingVisual]. ...Show All

  • Visual Studio Express Editions Dynamic Help

    I was just curious about where dynamic help is in the VBEx IDE.  It is referred to in the help files but there is no entry for it in the help menu, nor in the options dialog and the suggestion of adding it using <view><otherwindows><command window> does not work for me since there is no command window sub menu item   I guess I must be missing something     Jon       The dynamic help window is not included in the Visual Basic 2005 Express edition. Best regards, Johan Stenberg ...Show All

  • Visual Studio Changing bin and obj folders location

    Greetings, I redefine the OutputPath, the IntermediateOutputPath and the BaseIntermediateOutputPath, but I still get some empty bin and obj directories under the project folder. Is there some other properties that I must override Best regards, Gustavo Guerra That's the VB/C# project system creating those folders. There's a harder dependency on obj. It's where, for example, refactoring builds its temporary assemblies to. Still, we ought to make it completely customizable -- it just isn't yet. Sorry Dan ...Show All

  • Visual C# Inheritance in C#

    Hello Friends How can I inherit class usign Access Modifier (public, protected, private, internal) in C#. for e.g. in C++ we can derive as follow class DeriveClass : public BaseClass{ } or class DeriveClass : private BaseClass{ } or class DeriveClass : protected BaseClass{ } how can i do the same in C#. try the below code. using System; namespace mainN { class A { public void methodA() { Console.WriteLine("A"); } } class B : A { public void methodB() { methodA(); Console.WriteLine(" ...Show All

  • Visual Basic "hello world" won't run

    I am a newbie who just downloaded visual web developer 2005 express on my xp home system.  It installed without errors as far as I can tell.  Is express really stripped-down, and they don't tell you what is missing Like this "hello world" program example:  I can't paste the example page here, Right-click WON'T LET ME! Anyway, the page says "create visual basic console application project".  The closest I could find was a "create text template"  So I pasted the example code on that.  Then it says choose the appropriate "build command".  The choices I get are "build selection" or "build solution".  ...Show All

  • Visual Studio Express Editions Uses of VC++

    What does it mean on the download/install page where it says: "You can use Visual C++ Express to build powerful .NET Framework applications immediately after installation. In order to use Visual C++ Express to build Win32 applications, you'll need to take just a few more steps." And is there a button to compile and run your C source code without messing around in a cmd window Hi! It's advertisement :) Visual Studio have "Run and Debug" button by default on toolbar (F5) and Ctrl+F5 used to "Run without Debug". It will compile source if necessary. ...Show All

©2008 Software Development Network