Software Development Network Logo
  • Game Technologies
  • VS Team System
  • Visual Studio
  • Visual C#
  • Visual Basic
  • Microsoft ISV
  • Smart Devicet
  • Windows Forms
  • Audio and Video
  • Windows Vista
  • SharePoint Products
  • Visual C++
  • .NET Development
  • SQL Server
  • IE Development

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

DarelLuechtefeld

Member List

laboremus
PhilipDaniels
wandasoozq
gabit7
PanzerDivisionMarkus
AndyL
2162
Karrar
dabd
Ishtiaque Hussain
Saiboro
TonyMcQ
Satya vani
Visual Basic Expert
Alex cai
Duncan Woods
NeoNmaN
mclaurentiu
RichardCasey
MShetty
Only Title

DarelLuechtefeld's Q&A profile

  • Visual Studio Tools for Office URI Formats are Not Supported

    Software:  VSTO SE, Visual Studio.NET 2005 Solution Platform:  MS Word 2003 Template I'm using the following code to open the SaveAs dialog with file name created in prompt, and set to the path of a common web folder.  However, the error I get back says that "URI Formats are Not Supported".  Please advise as to how I can edit this code for the save to web folder. Thank you, for any assistance you can provide. sample code: Private Sub FileSaveWebFolderWithNamingProtocal() Dim eRom as string eRom = " http://www.eromaddress.org/erom/foldername/subfoldername/ " ChDir(eRom) With Application.FileDialog(Microsoft.Office.Core.MsoFileDialogType.msoFileDialogSaveAs) .InitialFileName = varia ...Show All

  • SQL Server Configure Integration Services on a Cluster

    Hi I am having an active/active cluster setup where there are 2 virtual SQL Servers one with default instance and other with named instance. 1) i need to know how to cluster integration service. 2) how are the integration packages are run, are they run by the integration services service, or by the SQL Instance 3) When fail over happens from one node to other will my packages continue to run i had setup Integration Services on a Cluster per the following article: http://msdn2.microsoft.com/en-us/library/ms345193.aspx .... but when i do fail over or move the group to another node ... getting an error indicating: An error occured attempting to read properties for the 'xxx IntegrationServices' resource. The object alr ...Show All

  • SQL Server Error: The buffer manager failed to create a new buffer type

    Hi I have a master package that executes a series of sub packages run from a SQL Agent job. One of those sub packages has been stable for a week, running at least once per day, but it just failed despite having been run once already today with the same set of input data. There were a series of errors showing in the event log for the Execute Package Task starting with "Buffer Type 15 had a size of 0 bytes.", then "The buffer manager failed to create a new buffer type.", then "The Data Flow task cannot register a buffer type. The type had 32 columns and was for execution tree 3.", then "The layout failed validation." and finally "Error 0xC0012050 while loading package file "C:\[Package] ...Show All

  • Visual Studio 2008 (Pre-release) Finding Object Parent (Events)

    I am confused about how to get the parent element of an object that is embedded within other controls when an event fires. I have put an event on the stackPanel to catch the mouse up event of a label and when i click on any portion of the label whether it be the image, the textblock or the label the event fires. This IS the functionality that I want except I need the label object as being the source, but for instance if i clicked on the image object then I get the image object as the source and not the label. I need the label object! I believe a solution might be to loop through each parent object until I have the typeof label but I am not sure if this is the right way to go about it. My XAML layout is as follows (this isn't actual code) & ...Show All

  • .NET Development Windows service to check for file when F1 is pressed

    I need a program that will do the following: When the F1 key is pressed the program looks at a certain location after say 5 seconds on that PC's C: drive for a file. If the file is not there then it pops up a message box, if it is there then it does nothing. Can I do this with a windows service running in the background If so can someone point me in the right direction. If not, what would you recommend for this Thanks in advance, Kevin Hi Kevin, As fas as I know it's not possible from that moment that F1 is interfering with usual F1. You can do a service using c# or vb which looks for files all day long with File Watcher Class or something like that. But maybe there is some method f ...Show All

  • Visual Studio Express Editions IDE Issue

    I'm coding in unmanaged code. And the intellisense is bad for unmanaged c++. I have to close the project and open it up over and over to get the intellisense to work for like 2 times then it dies ;_;. How can I fix this issue hello have you tried to close project, delete .ncb file, open project If this doesn't help, I think you should report this issue to https://connect.microsoft.com/ . thanks rico ...Show All

  • SQL Server migration from sql 2000 to sql 2005

    Hi I am trying to migrate Databases from MS SQL 2000 (server A) to MS sql 2005 (server B). The problem i have when i use database copy wizard is that it gives an error and the login will not be migrated . I tried backup and restore of the databases as well as detach and attach.All cases the logins will have a problem. For example say for database intranet all the tables stored procedures etc gets migrated but under security >>users (say intrauser) i double click user and the the login name wont appear .and when i try to close the window it says login name must be specified(SQLmanagerUI) Please help. Hi .. thank you very much for the reply...... when i executed sp_change_us ...Show All

  • Visual Basic RTC Automation error

    Hi all, I need your urgent help. I developed PC2Phone using RTC but when i am trying to call from windows which is not having any SP. i am getting Automation error. But on SP2 or greater than this working well. Here is my full error: Run-time error: '-2131885963(80ee0075)' Automation error Please help me i will be apricate for ur replies. Thank You Abdul ...Show All

  • Windows Forms ListView help

    hi I have a ListView setup with items and subitems but i cant get it to do anything when i click on it I have looked through the MSDN library and found nothing that can help. The view mode set as Detail so that i can see all the contents but i wanted a messageBox to appear when i click on an item in the list. can anyone plz help. thanks Hi, They're seperate files. .pdb means program debug database. If you compile the project in the debug mode, then it'll be generated. .dll is dynamic link file. It is mainly used as the auxiliary file, to provide services for other programs. You can have a look at the assembly options. e.g. /debug [= IMPL | OPT ] Includes debug information (local variable and argume ...Show All

  • Visual Studio Tools for Office Saving excel as an image file

    Anyone knows how can I save an Excel file to a image file (.gif or .jpg ) using VSTO Note that, I want to export the entire worksheet (there are no charts in it). Thanks. Douglas, I want to use a VSTO solution and of course this is a VSTO forum. Any other tecnology should be posted in other forum. I’m sorry.. So, could you help me to find out a VSTO solution to my problem Thanks again. ...Show All

  • Visual C# Two questions about Windows Services

    Hi I have written a Windows service that sends me an e-mail every three seconds. At first, the e-mail contained the text "Hello". But then I wanted to change the text, so I stopped the service, uninstalled it, changed the source code so that the e-mail should contain the text "Hi there", compiled it and installed it again. But I still get "Hello" every three seconds. Even tried to reboot the computer. Another problem is that the e-mails don't arrive in real-time. They seem to queue up and get sent as a batch when I stop the service. So if I let the service run for a minute, nothing happens, but when I stop it, I suddenly get a whole lot of e-mails. Any help would be much appreciated. Thanks ...Show All

  • SQL Server Linked View from SQL2005 timeout in Access database

    We have a process that inserts aggregated rows from many primary SQL 2005 databases into rows in a local Access 2000 database.  The view from each SQL database is linked in Access, and some VBA code loops through the views running sql statements to insert the rows from the linked view to a local table. Only the largest databse presents a problem, and it only fails occassionaly.  When it does fail, it is a timeout error. I know there is the OLE/DDE timeout setting in Access, but I don't think that is where the problem is.  Because I'm using DoCmd.RunSQL, I don't have the standard connection timeout settings for the individual connection. I know I can do something like push out the results from SQL side to t ...Show All

  • Visual C++ _AFX_NO_OLE_SUPPORT

    I'm working in VS2005 I have created the MFC extention dll, and specified _AFX_NO_OLE_SUPPORT because i don't need the OLE support. It gives me the error c:\program files\microsoft visual studio 8\vc\atlmfc\include\afxdllx.h(57) : error C2039: 'm_pFactoryInit' : is not a member of 'AFX_MODULE_STATE' c:\program files\microsoft visual studio 8\vc\atlmfc\include\afxstat_.h(206) : see declaration of 'AFX_MODULE_STATE' And this is true, in the AFX_MODULE_STATE is declared : class AFX_MODULE_STATE : public CNoTrackObject { public: ... #ifndef _AFX_NO_OLE_SUPPORT #ifdef _AFXDLL COleObjectFactory* m_pFactoryInit; #endif CTypedSimpleList<COleObjectFactory*> m_factoryList; #endif ... } But in the afxdllx.h: BOOL WINAPI ExtRawDllMain( ...Show All

  • Windows Search Technologies WDS 3.0 adm

    Hi Does anyone know if/when ADM files will be released for WDS 3 to manage through GPO Or know anyone the reg-keys to manage it regards, This was answered in the " Windows Desktop Search Help " fourm. WDS 3.0 does not completly contain all GP settings. The .adm file will be included with the 3.01 release. ...Show All

  • Visual C# RichTextBoxScrollBars

    I have downloaded a program called "Reflector" I dont think I should explain that what program does.. because the name says it all :-) but if you want me to I will... anyways... I have a richtextbox in one of my programs (one of my old post has the codes.. but anyways) now.. I am trying to learn how to read the fields that the program has out putted for this function...... public enum RichTextBoxScrollBars { // Fields Both = 3 , ForcedBoth = 0x13 , ForcedHorizontal = 0x11 , ForcedVertical = 0x12 , Horizontal = 1 , None = 0 , Vertical = 2 } how do I apply that.. to.. txtArea = new RichTextBox(); txtArea.Size = new Size( w - 6, h - 56 ); txtArea.Anchor = ( AnchorStyles.Bottom | AnchorStyles.Top | AnchorStyles.Right | An ...Show All

©2008 Software Development Network