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

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

birdman82

Member List

Spyder_Snyper
Divyajosephjohn
satya31237
Selvaraj Anantharaman
Kees_de_Waard
Mairéad - MSFT
kuntushi
JBartz
me113
chuckdawit
awesj
vicky_dceian
Lance55
yxq
JeffSkla
mszlazak
ErnieIII
AlbertG
Matt A
aero1
Only Title

birdman82's Q&A profile

  • Visual Studio How to reset all menus and toolbars that were created by my addin

    I have addin and want to delete all current toolbars and recreate my new toolbars. How can I do that I checked your suggestions. However they do not work. The problem is that I create submenus in some menus (Tools for example). When VS tries to setup it do not delete submenus. So that I left my sub menus after uninstallation. I fixed this problem in following way. I've created command that deletes my command bars (in my case submenus) and I call it during uninstallation. ...Show All

  • Software Development for Windows Vista Is there a problem with the DelayActivity with Sequential workflows?

    If I enable my DelayActivity at the bottom of a SequenceActivity inside a WhileActivity, It doesn't continue back to the top of the loop. If I disable the DelayActivity it works, but of course doesn't wait between Activities. I have a timespan set to 00:00:01... I've tried 00:00:05, and 00:01:00 i.e. SequentialWorkflow structure looks like this... WebServiceInputActivity CodeActivity - WhileHasObjects - SequenceActivity CodeActivity CodeActivity Invoke Web Service Activity CodeActivity IfElseActivity IfElseBranchAct IfElseBranchAct DelayActivity (end of SequenceActivity) ---> go back to top of WhileHasObjects CodeActivity WebServiceOutputActivity ...Show All

  • Visual C# C# and SQL Query

    Ok... Ive started learning C#. I have loaded a datasource odbc connection and dropped 1 of my tables onto my form. Now I also have a textbox and button on my form. The text box takes the current date and converts it to excel serial date and stores that into a variable 'serial'. Now I need to make a query on my table. I can create a query comparing 2 columns without a problem. My problem is that I cannot use my variable 'serial' in my query. Here is what it looks like: SELECT ... FROM ... WHERE WHERE TranDetail.EndDateTime = TranHeader.EndDateTime AND (TranDetail.EndDateTime >= @serial) I am using the query builder. I cannot get the TranDetail.EndDateTime >= @serial to work. I know its not able to use my variable ...Show All

  • Visual Basic The referenced assembly is not installed on your system. (Exception from HRESULT: 0x800736B3)

    I have an application that is distributed with click-once. One of my users already makes use of it for quite some time without any problems. Only recently, he is not able to launch the application anymore. During the check that is made to see if there is a new version of the software, he gets the message: "Application cannot be started, contact vendor" If I copy my application manually, he is able to launch it without any problem. I included the detailled log below. Any suggestions PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.0 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA GSE runs on XP SP2 ... also Media Center??

    I'm about to buy a new PC and want to be sure XNA GSE works with MS Media Center OS. Thanks. Thanks Mark. Do you also know if XNA GSE "undersatnds" XAML, i.e. if I use MS EGD for UI design will I be able to use the files in XNA GSE ...Show All

  • Visual C++ BITMAP pixel information

    Hi, I need to get pixel by pixel color information from a bitmap, how can I do that, I'm new in Visual C++ 2005 so I don't have an idea on how to do this. Any advice would be great! Thanks! You cannot select a bitmap into a device DC (the one returned by GetDC or GetWindowDC). You need to create a memory dc for this: CDC* pDC = GetDC(); HBITMAP hBitmap = (HBITMAP)LoadImage(NULL, "D:\\Visual Studio 2005\\Pruebas\\PruebaCLR\\superman.bmp", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE | LR_CREATEDIBSECTION | LR_DEFAULTSIZE); CBitmap myBmp; myBmp.Attach(hBitmap); BITMAP bm; myBmp.GetBitmap(&bm); CDC memDC; memDC.CreateCompatibleDC(pDC); HBITMAP hOldBitmap =(HBITMAP) dc.SelectObje ...Show All

  • Software Development for Windows Vista Workflows vs. ThreadPool

    As I understand it, there is one thread allocated to each workflow instance that is loaded & running. And you can adjust the size of the ThreadPool that these threads are allocated from. What happens when the number of loaded & running workflows exceeds the number threads available from the pool Say I have set the ThreadPool to have 100 threads available and I have 100 workflows running which will never go idle. When that 101st workflow kicks off, what should happen Will the 101st workflow execute at all How does the WF runtime handle this Thanks, Matt Thanks Jon. That's what I wanted to know. Is that something I can have control over with the manual workflow scheduler service And i ...Show All

  • SQL Server ReportViewer Height

    Hello, I try to embed my Reports of Reporting Services to ASP .NET Application. I use ReportViewer component of Visual Studio 2005. When I try to set Height property to 100% there is no report content shown. I tried to set SizeToReportContent property but there wasn't success. At the same time when I set Height to any particular value e.g. 400px, everything is OK. But of cousre I can't know particular height for every reports. Did you have any such problems Can you help me Thank you, korggy wrote: When I set AsyncRendering=true, I get an error message when the user tries to navigate to the second page of my report: " Page navigation is out of range." When I set AsyncRendering=false, it works correctly. ...Show All

  • SQL Server INSERT INTO table From EXEC -

    Hello, How can I insert values from a query directly to a table in my database the query gets values from a linked server and i want to directly insert the results in my local database. This is how i thought would be done: CREATE PROCEDURE dbo.SP_INSERTfromEXEC AS BEGIN INSERT INTO dbo.mytable EXEC dbo.QuerytoLinkedServer END When i execute dboSP_INSERTfromEXEC procedure, then i get this error: The operation could not be performed because OLE DB provider "SQLNCLI" for linked server "blahblah" was unable to begin a distributed transaction. Now, when I execute dbo.QuerytoLinkedServer procedure, i do get the values, there is no error. It just doesn't want to insert it I suppose. Any help would be greatly appreciated! ...Show All

  • Visual Studio 2008 (Pre-release) Returnvalue from server is null

    I have a problem when making a call from a client to the server. The call is supposed to return a custom object for the client to do some work on, but the object doesnt seem to reach the client. Here's my setup: Service Contract: [ ServiceContract ] public interface IClientControllerServiceContract { [ OperationContract ] TestStructureElement ClientReady(); .... }   Contract Implementation: [ ServiceBehavior (InstanceContextMode= InstanceContextMode .PerSession,ConcurrencyMode= ConcurrencyMode .Multiple)] public class ClientControllerService : IClientControllerServiceContract ..................... public TestStructureElement ClientReady() { List <System. Ty ...Show All

  • Visual Studio Express Editions Scanning a Drive

    Hello all. I am currently working on an Anti-Spyware program. I am needing to know how I can scan all the fiels on a Hard Drive, Floppy Drive, and CD Drive and show the fiels that are being scanned in a labelbox. I have got it to where it shows all drives on the system. Now I am needing to when the user slects the drive they want scanned from the listviewbox it will go If drive.drivetype = 0 Then Call DriveType0Scan Then it will continue and scan all the files on the drive and look for harmful files using info from my ref files. Thanks in advance and I hope you can help me. Microsoft does have an AntiSpyware program fyi. Simply, when the user selects the drive they wish to scan, simply perhaps do this: foreac ...Show All

  • .NET Development Customizing a custom user interface for a windows installer in .net 2005

    Hi All, I m creating a windows installer for a windows database application. While the setup is in action i need to accpet the database server name & login credentials for the same from the user. For this, i have created a cutom user interface & able to accept the values entered by the user which i use to execute a database script at the end of the installation. Now the problem is that if i want to test the connection right away while accpeting the database server credentials from the user then i need to right some code to validate the connection on pressing the "Next" button & i can't find the event for the "Next" button so that i can write some custom code to validate the connection. Is there any ...Show All

  • SQL Server New version of MSSQL CE RC1

    I noticed the new date on the download page for RC1 of MSSQL CE. I downloaded it and compared it to the last one (I think it was maybe dated 11/17/06 ) and found there are differences between the 2 msi files. That leads me to some questions: 1. What has changed with this latest RC1 release Any fixes that would make this a "required" download 2. Can I get away with just uninstalling the old MSSQL CE RC1 and reinstalling the new one i.e. without having to go through all of the other prerequisite, exacting steps required to get MSSQL CE working with VS.NET. 3. Why wouldn't this new file be named RC2 Slipstream releases are never a good idea, as they just add confusion. Thanks for any input. Dan ...Show All

  • .NET Development CSV Data

    Hallo, I want to create a comma seperated file of columns with specific length. How can i specify the length of each column and may be also define the type of the data. regards swingme A small issue with Nightmare_BE 's sample is that this doesn't append a new line at the end of each record. The following sample would do this: using (System.IO.StreamWriter writer = new System.IO.StreamWriter("data.csv")) { foreach (Record record in Records) { string line = string .Join(",", record.Values); writer.WriteLine(line); } } ...Show All

  • SQL Server SQL 2000 Report services incomplete export to excel

    I have a report that I am trying to export to excel.   The export seems to work but the data in the spread sheet is incomplete.   The document map is completely exported but the work sheets are not.   The links in the document map stop being links after the first occurrence of the lowest level detail.   All the data is visible in Report services and all the data exports to PDF.   There are 5 levels and 124 pages in the report in the report.   I have other reports on the same server that are larger (7 levels and 512 pages) and they work just fine.   They export to excel with no problem.   Any ideas or input would be very appreciated.   Ayla ...Show All

©2008 Software Development Network