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

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

we3dyz

Member List

David Guyer MSFT
Joe Black
KarimRadi
mamatham
rcurrie
Bo Yu
Fahad349
twaltz
BrianXXX
Ryan_H
Computer Guy69146
Abhishek_SE
Wojo
Sylpheed
sfabriz
Tryin2Bgood
QuinDennis
Johan Nordberg
GazCoder
Kamii47
Only Title

we3dyz's Q&A profile

  • Visual C# Start.process Issue

    I am running into a bit of a roadblock with my current project. I am attemtping to create a program that allows user to pick from a selection of software title they want to install, after selecting the software, a vbs script file launches and installs the software with all appropirate switchs (E.G. silent installations etc). Problem: When the program executes, it finds the VBS file and executes, however, it immediately closes without installing the software. (On a side not, when I double click the .vbs file, everthing works fine) Any help would be much appreciated. Thank You Here is my Main (); static void Main() { // Get the path that stores favorite links. string pathtoscript = Environment .GetFolderPat ...Show All

  • Windows Forms edit button

    hi, i have create a grid view and with the edit button on each row in VS 2005 web form. but my row didnt change into a textbox inorder for me to edit. Anyone have idea protected void GridView1_RowEditing( object sender, GridViewEditEventArgs e) { GridView1.EditIndex = e.NewEditIndex; GridViewRow Row = GridView1.Rows[e.NewEditIndex]; } oh that's the problem i had. How do i actually create a textbox in that column inorder to edit the data in the row. Any idea CIndy ...Show All

  • Visual FoxPro Emailing newly converted reports.

    Hi; I have converted some older Foxpro reports to VFP9. Everything looks great, but: Before the conversion I could very easily save the report to file and then email it. After the conversion, obviously, I can't do that anymore. I have tried the ASCII option but it is not very good with spacing and columns don't line up etc. What is the best way to solve this issue Do I need to create a pdf/rtf/tif etc or is there a built in VFP feature that can help me Thank you all. Wow!!! What I wanted and much more. Thx. I didn't venture into report listeners yet, but I guess that gives me native graphic functionality for report output files. Thank you so much!!! Alen. ...Show All

  • SQL Server Report Builder Error - Novice please suggest !!

    I created report model based of three relational tables(SQL Db). When I try to run it gives me error 'cannot run this report - A filter must be specified'. When I supply filter it will go head and run. Basically I have three relational tables from SQL database. one is the Master say A and other two are related tables say B and C. I joined with id1 to B from A and id2 to C from A. A(id1) ----> B(id1) A(id2) ----> C(id2) 1.Why is it asking me the enter filter 2.Also, when I created a report based on fields from A,B and C I tried to do the click through. I can able to click through to table B by clicking on the fields of B but similarly I am unable to do for the fields from the C. 3.Can I create a report model bas ...Show All

  • SQL Server Any way to create one subscription which delivers server email and file share at the same time??

    Hi, I need to know if it's possible to send out a notification email and deliver the report by file share with one subscription or at least send out a notification email depending on the event of a subscription which delivers the report file share. My goal is not to have 2 separate subscriptions. Thanks You will need to have your own delivery extension created for this,as there is no composing of different delivery methods. But as the classes already exists for those two method you can just call that within your own extension. HTH, jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Audio and Video Development XPath - selecting an element by index

    Seemingly this should be a valid XPath select for a <cue> or <par> -- why does it's inclusion cause iHDSim to report an "Unknown Exception" //div[@id=$chapter]/button[1] This should identify a specific <div> (using an XPathVariable set in script), and get the first button it contains. In fact it seems that the bracketed subscript notation doesn't work at all... Your question as I understand it is "how to select and element by index ", so why not just go straight to the button with "id('button_id')[state]" Is this a case where buttons under different divs share ids Otherwise I don't see why you need to handle div selection in the script. Right ...Show All

  • Visual Basic Media Player gets resized after form is closed...

    Hi, I've placed a Windows Media Player control on one of my forms, and works great. The user then plays a song, and that works great also. When he/she closes the form, and reopens it afterwards, and pushes the 'play' button, the Media Player gets resized to... almost 1/4 of the original size. What can I do about this Regards, Francois vdv, Netherlands ...Show All

  • Windows Forms Mouse Leaving/Entering Bounds of Panel Covered in Other Controls?

    I have a panel on a form that is completely covered in other controls (and it isn't determined until runtime which and where those controls are on the panel). There is absolutely 0 space of the panel which is exposed. I need to find out when the mouse enters and leaves the bounds of this control. The MouseEnter and MouseLeave events don't work because for those to fire, the mouse has to be directly over the panel (and instead it is directly over the panel's controls). I've printed out the WndProc messages, and I noticed that sometimes WM_NOTIFY or WM_SETCURSOR messages are fired, but it is sporadic. It seems like if I move the mouse fast, those events don't ever get fired. Does anyone have a tip for how to handle som ...Show All

  • SQL Server The return of Problem Assigning Value to Package Variable From Data Flow Script Component

    I have a Data Flow Script Component(Destination Type) and in the properties I have a read/write variable called User::giRowCount User::giRowCount is populated by a Row Count Component previously in the Data Flow. After reading http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=97494&SiteID=1 it is very clear that you can actually only use  variables in the PostExecute of a Data Flow Script Component or you will get an error "Microsoft.SqlServer.Dts.Pipeline.ReadWriteVariablesNotAvailableException: The collection of variables locked for read and write access is not available outside of PostExecute." What I need to do is actually create a file in the PreExecute and write the number of records = User::giRowCount as&nbs ...Show All

  • Smart Device Development Porting code from EVC4 to VS2005 for PocketPC 2003

    I am porting a project developed on EVC4 to VS2005 for a PocketPC 2003 device. The problem I am running into has to do with the "DEBUG_NEW" define. In the preprocessor defines I see "DEBUG" defined, but I do not see "_DEBUG". The code snippet below is at the top of all of my .cpp files. #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif Since _DEBUG is not defined, I get a compiler error of Error 1 error C2065: 'DEBUG_NEW' : undeclared identifier c:\Copy of Apps\DocuCam\DcCameraInterface.cpp 99 If I define "_DEBUG" I still run into the same error. Any ideas on getting around this would be greatly appreciated. Thanks! ...Show All

  • Visual Studio 2008 (Pre-release) How to add some custom configuration information for a special endpoint in Service side?

    I host my service in IIS, I want to add some configuration for a special endpoint in web.config. For example: I want to add a option "ApplicationName=SZ" for a special endpoint. The question is how to put it and How to get the configuration info in Service code <system.serviceModel> <services> <service behaviorConfiguration="returnFaults" name="NCS.IConnect.CodeTable.DbCodeTableProvider"> <endpoint binding="basicHttpBinding" contract="NCS.IConnect.CodeTable.ICodeTableProviderBase"> </endpoint> </service> </services> <behaviors> <serviceBehaviors> <behavior name="returnFaults"> <serviceM ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. need help..

    im kinda new to xna and c# and when i tried to debug now i get some errors that i dont know how to fix lol. heres the errors i get this is what i wrote in: protected override void Draw(Microsoft.Xna.Framework. GameTime gameTime) { this .graphics.GraphicsDevice.Clear(Microsoft.Xna.Framework.Graphics. Color .Black); this .spritebatch.Begin(Microsoft.Xna.Framework.Graphics. SpriteBlendMode .AlphaBlend); this .spritebatch.Draw( this .mytexture, this .spriteposition, Microsoft.Xna.Framework.Graphics. Color .White); this .spritebatch.End(); base .Draw(gameTime); } and heres the errors: error 1 = Error 1 The best overloaded method match for 'Microsoft.Xna.Framework.Graphics.SpriteBatch.Draw(Microso ...Show All

  • Visual Studio 2008 (Pre-release) WPF Bug or What????

    While debugging throught WPF (NO COM) I am running into this again and again. I had posted this earlier too but nobody responded back. Just wanted to know where exactly is COM coming into play. Since we are aiming for production release of our app too, wanna make sure where exactly the things are going sour. Managed Debugging Assistant 'ContextSwitchDeadlock' has detected a problem in 'C:\XYZ..\bin\Debug\NoGen.Sandbox.WPF.vshost.exe'. Additional Information: The CLR has been unable to transition from COM context 0x1a1598 to COM context 0x1a1708 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait or processing a very long running operation without pumping Windows m ...Show All

  • .NET Development fileSystemWatcher to watch a file modified within Visual Studio 2005

    Hi, everyone! I have a windows application that creates text files and, later, watches for any modification those files may suffer outside the application. The application uses the fileSystemWatcher window control to watch for those modifications, and has an event to respond to the "Changed" event. I coded this event to reload the file into the application once it realizes the "watched" file has been modified. So far, when the editors used to modifiy the file (outside the application) are Notepad and Textpad, the control works perfectly. The application reloads the files as expected. However, when the editor used is the Visual Studio editor, the watch does not work. Nothing happens. The application does not reload the ...Show All

  • SQL Server version of sql server 2005?

    I have run exec xp_msver on the sql server management studio please can anybody tell me which edition of sql server 2005 i am using... is it ENTERPRISE EDITION or EXPRESS edition. thanks in advance regards, pranav 1 ProductName NULL Microsoft SQL Server 2 ProductVersion 589824 9.00.1399.06 3 Language 1033 English (United States) 4 Platform NULL NT INTEL X86 5 Comments NULL NT INTEL X86 6 CompanyName NULL Microsoft Corporation 7 FileDescription NULL SQL Server Windows NT 8 FileVersion NULL 2005.090.1399.00 9 InternalName NULL SQLSERVR 10 LegalCopyright NULL c Microsoft Corp. All rights reserved. 11 LegalTrademarks NULL MicrosoftR is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark ...Show All

©2008 Software Development Network