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

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

MariaJeff

Member List

TylerDurden
TomGao
Haake
Davidkapp
fenrir
Wellnow
slippery
Nose
Sunrise828
vatsan
Manoj G
d1mann
Chris Wr
ktegels
Byrd Man
Warren Jans
Jurgen Wondzinski
fanboy
Matthew C Hill
Mishkina
Only Title

MariaJeff's Q&A profile

  • Windows Forms How to make a form full-screen in C# 2005?

    Hi, I am trying to make one of my application forms full-screen - no borders, no task bar, etc. How can I do this Thanks! -- stockcrack What you are trying to do is a three part thing, first, hiding the taskbar: In order to show and hide the taskbar you can use this: [DllImport("user32.dll")] private static extern int FindWindow(string className, string windowText); [DllImport("user32.dll")] private static extern int ShowWindow(int hwnd, int command); private const int SW_HIDE = 0; private const int SW_SHOW = 1; and then to use it ...Show All

  • Visual Basic Making a picturebox have a transparent background

    I have a picture of a panda with a pink background (panda_down.bmp) and I was wondering: how do I get that pink background to be transparent Never say never, my friend! I ran into the same program you're having. The EXACT same problem.... Well.... I didn't have a pink panda.... But still.... The SHORT answer to your question is that you can't have transparency in a picturebox control without doing some pretty complex coding. If you want the contents of a picturebox to be transferred into an image object, you can just go: Dim I as new Image I = Picturebox1.image or something... But, when I had your problem, I learned ...Show All

  • Visual Studio Tools for Office VSTO Installation

    I am trying to install VSTO 2005, but I continue to get a message stating that "Visual Studio requires that Office 2003 with Service Pack 1 be installed on your computer before you install Visual Studio" However, I do have Office 2003 with Service Pack 2 installed. I also have Visual Studio 2005 installed. I would greatly appreciate any help that I can get. I have searched the forums and the web, but haven't found anything related to this problem. I am stuck!!!!!! Thanks Developing and running Office customizations built with Visual StudioR 2005 Tools for Office requires at least one o ...Show All

  • .NET Development Data files?

    Is it possible to use datafiles in C# if so how i have a project to do in C# and Data files would help bunches. Could you be a little more specific What do you mean by data files exactly --mc ...Show All

  • Software Development for Windows Vista Custom Condition Activity

    Hi, I am using a custom activity which takes in parameters and has a public method. When I use this activity before an ifelse activity and set the condition to CodeCondition on it I am not able to use the custom activity code(public method) as the code condition. The designer doesnt give me the option. Or How to make a reusable condition for an ifelse activity that also accept parameters from the designer Thanks Your method needs to have the expected signature: public void MyCodeConditionHandler(object sender, ConditionalEventArgs e) Additionally, you will need to bind to the method ins ...Show All

  • SQL Server Problems Creating a Full-Text Catalog

    When I attempt to create a full-text catalog on a database, I receive the following error: Create failed for FullTextCatalog 'AccountNotes'. (Microsoft.SqlServer.Smo) ------------------------------ An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo) ------------------------------ SQL server failed to communicate with Full-Text Service (msftesql). The system administrator must make sure that same service account is used for both services and the service account has the permission to auto start the full-text service. (Microsoft SQL Server, Error: 9955) --------------------------- ...Show All

  • SQL Server Data Access to SQL Server 2005 from remote computer.

    We have a program (Hindsite) that we're using on our LAN. It uses ODBC to access data on the server from client PC. Hindsite directory on the server is mapped drive on each client in the office. We would really like to be able to access the same program database on the server from the remote PC over the internet. Can SQL Native Client do that What would be the best way to accomplish it How to make this application to be able to access it's directory on the server over the Internet like it was a mapped drive on the remote PC Thank you very much in advance. SQL native can do that. You need to make sure your server is ...Show All

  • SQL Server Updating data

    Hello. Is it possible to somehow update data as it is copied from source to destination using SSIS. Currently I extract data from Database A, load it into database B, then clean/update the data in database B and then load it into database C using DTS on 2000. What I would like to do is extract data from database A, clean/update it, then load it straight into database C without having to load it into database B first. I am unable to clean/update the source data in database A, as this would be the obvious thing to do. Thanks. The way to do updates from the pipeline is to ...Show All

  • .NET Development app.config issues

    I am getting errors saying that they can not find my xml elements in the file......what should i do so the app.config can get to them.... < xml version = " 1.0 " encoding = " utf-8 " > < configuration > < system.diagnostics > < sources > <!-- This section defines the logging configuration for My.Application.Log --> < source name = " DefaultSource " switchName = " DefaultSwitch " > < listeners > < add name = " FileLog " /> <!-- Uncomment the below section to write to the Application Event Lo ...Show All

  • Visual Basic IDE not picking up my 'Backspace' or 'Enter' keystrokes in the debugger

    The debugger isn't picking up my keystrokes for my 'Backspace' or 'Enter' (carriage return). As far as I can tell those are the only two keystrokes from my keyboard that are not being caught. Any ideas Logitech wireless keyboard. Great that did it, deleting 'Default.vsk'... Thank you! After deleting 'Default.vsk', I immediately went back and tried to reset my profile and got the following error: Your settings were reset, but there were some errors. Error 1:  Projects and Solutions: Unable to import property 'ProjectItemTemplatesLocation' because it contains invalid data '%vsspv_visualstudio_dir%\Templates\ItemTemplates'. Error 2:& ...Show All

  • .NET Development Scada and HMI

    Hi all, Is there classes in the .Net framework for Scada and HMI development for industry and automation . Regards... Dear Frank, Do you have good information of industrila software. I want to ask you more deep questions. Thanks... ...Show All

  • Smart Device Development evc++ application in vs2005

    Hi all I am trying to run a evc++ ppc application on VS 2005.I have manually added all the files except stdafx.h and .cpp.I also added additional include files in stdafx.h.But I am getting the following 3 errors. Error 1 error C2065: 'T' : undeclared identifier D:\Program Files\Windows CE Tools\wce420\POCKET PC 2003\atl\include\atlbase.h 1053 Error 2 error C2061: syntax error : identifier 'T' D:\Program Files\Windows CE Tools\wce420\POCKET PC 2003\atl\include\atlbase.h 1100 Error 3 error C2065: 'ppT' : undeclared identifier D:\Program Files\Windows CE Tools\wce420\POCKET PC 2003\atl\include\atlbase.h 1102 . Any suggestio ...Show All

  • SQL Server DTS package failing with Object required WScript

    I have the following error when I try to execute a DTS package. All the package is doing, is a bit of WScript to map a drive (need it for other packages), so: [code] Function Main() Dim WshNetwork Set WshNetwork = WScript.CreateObject("WScript.Network") WshNetwork.RemoveNetworkDrive "S:" WshNetwork.MapNetworkDrive "S:", "\\myserver\folder1\folder2\folder3\folder4" Main = DTSTaskExecResult_Success End Function [/code] If I copy it out to a .vbs file and execute it logged in as the SQL Agent profile, it works. Execute the package under a job, or just execute it, it fails with the ab ...Show All

  • SQL Server Unable to set Default Schema for a group

    We're using Windows Authentication with our SQL Server.  We've added a domain group to the SQL Server groups and would like to give it a default schema.  The properties window is the same for users and groups but the default schema field is enable only for user entities.  We cannot add a default schema to a group.   Is this by design,  a bug or a problem with our SQL Server installation Updated on 2005/08/29 My first try was done at through Database\Security\Users.  I tried going through Server\Security\Logins and I got this error message    Alter failed for User 'Domain\Group ...Show All

  • Visual Studio AssemblyName in Project VSTemplates

    Hi, I've encountered the same problem as described in http://groups.google.com/group/microsoft.public.vsnet.enterprise.tools/msg/8786e4671dffbaa9 and http://groups.google.com/group/microsoft.public.vsnet.general/msg/918043fb21d008c8 , which is that the AssemblyName present in .csproj files deployed using VSTemplates aren't parsed or used. In my case, I tried the following in the Controls.csproj : <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ... <RootNamespace>Client.WebSolution.Controls</RootNamespace> <AssemblyName>Client.WebSolution.Contro ...Show All

©2008 Software Development Network