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

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

foobish

Member List

Grigory_
TRAIN MAN
paburgos
JoeSmoe
Mogli9
EricHurl
sunwei2004
MannyH
Jose Ferreira
carl lorentson
Najmeh
aande2003
irenec
Tim Bederka
praveen jalasutram
efindley
Stezza Stereotype
Tuulia
Romty
jordan kaliher
Only Title

foobish's Q&A profile

  • Visual C++ Linking with extension dll

    hi, I am working with a old project using VS 6.0. The exe uses an extension dll. I dont know how the exe is linking with the extension dll. I checked for the following 1. If the client exe has AfxLoadLibrary - for explicit linking. 2. If the import library is included in the client project settings linker option. 3. any # pragma statements which do the forceful linking. None of the 3 methods is used. Is there any other method to link an extension dll. I assume that extension dll also requires either implicit or explicit linking like regular dlls. Please Correct me if i am wrong.   regards, sk80.   & ...Show All

  • Visual C# OleDbException

    Hallo, ..... oleDbConn = new OleDbConnection(connection); oleDbConn.Open(); When i use this to establish a connection to database, and if wrong username or password is given, then gets an exception.  Invalid User Authorization Specification:Invalid UserID or Password. Can i identify with exception number or thru any other way what exactly cause the exception. I mean is it because of userid or password.Ist it possible to distinguish it from exception number thanks n regards swingme Generally speaking, for any exception that involves invalid authorization, it is not possible to distinguish between a u ...Show All

  • SQL Server Querying Analysis Services 2005 Cube with SSIS

    Hi, I've been trying to use Analysis Services 2005 Cube as a data source, query it via MDX and then use the data returned elsewhere in SSIS. However, I've been unable to get this working and can't find any information regarding how this can be done. Surely it should be possible when I can get this working even in Excel I've looked in December edition of BOL and no luck - have also sent a feedback to BOL regarding this and have been told that "it should be possible, since there is a way to send SQL queries to AS." However the person I was speaking with knew of no one who had actually tried this scenario and to try posting h ...Show All

  • SQL Server Find my Syntax Error!! (Because i cant see it)

    Im getting an syntax error in the insert into statement is what my error message says, but i cant see it. So if you could take a look and maybe find the problem it would greatly help. You need to delimit all column names that have spaces. Change Contact Name to [Contact Name] , etc. A good way to debug a SQL statement that you generate is to look at the commandtext string either from debugger or by printing it out and inspecting from SQL Editor in SQL Management Studio where you get basic color coding help. Hope this helps. ...Show All

  • Visual Studio Crystal Report: indentation for text field only

    Hi all, How can I perform indentation in hierachical group for text field only in Crystal Report 9.1.5 for Visual Studio .Net 2003 Thanks in advance! ...Show All

  • Visual Studio Team System TFS backup

    Hi there I have read http://blogs.msdn.com/vstsue/articles/500334.aspx But how to make a backup from TFS server(SQL server) to a path on a server that needs an account-password to allow writting ...Show All

  • Visual Studio Setup project for VSTudio 2005 Addin. how to register in Addins folder?

    Hello, I'm really newbie in addin development. I already finished my addin, and also I created a setup project, but I don't know how to put my .addin file in the %VSMYDOCUMENTS%\Addins folder, I tried adding a custom folder in the File System Editor but doesn't work Any help is very appreciated Regards There are a few things you can do: 1) %VSMYDOCUMENTS% is the user's ...\My Documents\Visual Studio 2005 directory. When you create your MSI, right click on the left pane of the File System Editor, select Add Special Folder, and User's Personal Data Folder. This is equivalent to the ...\My Documents portion of the path. Th ...Show All

  • Visual Studio i want to use domain/user to login into vss 6.0d

     i want to use domain/user existing on the server where vss is installed. where can i configure it Hi Artur, When you create VSS users to match domain/user accounts you can assign random passwords to them, too (there's no need to have empty passwords). When you're using "Use network name for automatic user log in" VSS will not prompt users to enter their passwords. Setting some random passwords will make it less likely that users will be able to use other users' VSS names when opening the VSS database. Alin ...Show All

  • Windows Forms The most rational programming of "changed" controls

    Hello All. I'm developing some screen where I should display 3 possible views. Each view represent some control. Depending on what option user selected I should display corresponded view. But the problem is how to manage another 2 controls. For now I just hiding them but I'm not sure if it is correct. When I switch view mode I see controls "moving" what is bad (I ofter use DataGridView control with lots of items inside, so it takes some time to be repainted). Can youy advise something better p.s. I thougth about using TabControl, but I cannot hide tab headers there :( Thanks in advance 1. Try to first show the cur ...Show All

  • Visual Studio Remove temp

    Is there any automatic procedure to remove temp directory fromm vss databases No. I'm not sure what you're trying to do - if you just want to clean up the temp folder, either manually delete the files or use SSAdmin Tools/CleanUpTempFolder. Alin ...Show All

  • Visual Studio Express Editions How do I get different colors of text in a RichTextBox?

    How do I get the following to display "Light Blue" in light blue letters and "Black" in black type RichTextBox1.Text ="Light Blue " & "Black" richtextbox1.selectionstart = len(richtextbox1.text) richtextbox1.selectioncolor = color.whatever richtextbox1.selectiontext = "Light Blue" & vbcrlf richtextbox1.selectioncolor = color.whatever richtextbox1.selectiontext = "Black" & vbcrlf ...Show All

  • .NET Development Getting a picture by web service

    Hi all, I'm building a web service that gets a pupile details from a database by giving his ID number. I have no problem with the personal details. Now I'm dealing with the pupile picture. 1. How can I deal with the pictures in the database. 2. How to get them by the web service. 3. What is the format can I get the picture, can I get it as XML stream, and get it back. Please help me. and if you know a link for a web service tutorial that get a pictures. Best regards... If it was a permissions issue then you should probably get a Sytem.UnauthorizedAccessException with the error "Access to the path <path&g ...Show All

  • SQL Server Accessing from desktop - path not found.

    Hi, I am trying to write a desktop application using C# and .NET that can edit an SQL Server Mobile database stored on a device. The problem is no matter how I specify the data source, I get an error the path was not found. Heres the bit of the code: string strConn = "Data Source=" + "Mobile Device\\My Documents\\Nutricom.sdf"; SqlCeConnection connDB = new SqlCeConnection(strConn); connDB.Open(); And the error i get is.. The path is not valid. Check the directory for the database. [ Path = Mobile Device\My Documents\Nutricom.sdf ] Everytime it thorws an error saying the path is invalid and to check the locaiton of the dat ...Show All

  • Visual Studio hidden project

    Is it possible to have a project in the solution hidden What I am looking to do is create a project and load it into the solution, but have it be invisible to the user. My project would handle the loading and building of the hidden project. Thanks, Mike Hello Mike, It is actually very simple to make your project a hidden virtual project. One you have created your project you must query for the SVsSolution service and then call HRESULT AddVirtualProjectEx([ in ] IVsHierarchy *pHierarchy, [ in ] VSADDVPFLAGS grfAddVPFlags, [ in ] REFGUID rguidProjectID) Omitting the value ADDVP_AddToProject ...Show All

  • Visual Studio Express Editions LPCWSTR doesn't work with reg commands

    I am making some functions that use regcreatekeyex, regsetvalueex, ect. So I made them and tested them by making a command prompt program and had no problems. Then I tried using the in the form designer and the compiler keeps telling me it can't convert my parameters that are strings into LPCWSTR. So I add the (LPCWSTR) in front of the parameter to convert it. Well my project compiles but recreatekeyex and stuff never succeed. How can I fix this To be able to answer this one properly, we need to know what you are doing. So could you post the code that uses the RegCreateKeyEx function. ...Show All

©2008 Software Development Network