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

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

Wings_That_Fly

Member List

John Spano
enric vives
MarcoB
Chuck Turner
Santosh Thankachan
roy.wanglifeng
yamobe
hakan Altıntaş
mahdi
maverick_majnoo
SomeRandomName
Go4More
webbda
Rajesh batchu
Michael Hansen
bookysmell2004
Meisash
JawKnee
Stéphane Beauchemin
RMan54
Only Title

Wings_That_Fly's Q&A profile

  • Visual Studio Team System Data Compare against a blank db or project

    Why is it that I can do a schema comparison against my project but I can't do a data comparison against the same project (The option isn't even available in the data comparison wizard.) I could easily be missing something since I'm quite new to this. Thanks for any info or help on this. Sincerely, Steve Mayhugh GweiloMacau - We don't store any data inside the database project, so any comparison would always result in a big set of insert statements. Let me back up a moment and try to better understand the problem you're trying to solve here. How would you use the ability to compare your database to a project thanks, ...Show All

  • Visual Studio 2008 (Pre-release) How can I instantiate several collection of elements?

    I'd like to instantiate many time the same collection of elements inside a Canvas. I tryed with the XAML below creating a resource and instantiating it using StaticResource element, however I get an error: "Unespected UIElementCollection Child. StaticResourceExtension" Can somebody point me to an example The closest example I found so far is: http://bloggingabout.net/blogs/erwyn/archive/2006/09/09/Neave-Strobe-using-Windows-Presentation-Foundation.aspx Here below my attempt: < xml version="1.0" encoding="utf-8" > <Page xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " x:Name="Document ...Show All

  • Windows Forms splashscreen problem

    Hi, I've got a problem with my splashscreen; I want to show my splashscreen as long my application is not fully loaded and I don't want to use a timer, it must be "real", so I realy want to see it as long as the application isn't fully loaded. And how can I see what the application is currently loading give me an answer if u know something about it regards tom sorry I still don't have the delegate conversion to vb.net stratight in my head. how would this look in vb.net thank you !! -greg public delegate void FinishSplashScreen(); public static event FinishSplashScreen OnEventFinishSplashScreen; //splash screen constructor: public Splashscreen() { MainForm. ...Show All

  • .NET Development FtpWebResponse downloads images unreadable

    Hi again, I'm downloading files and images from a ftp site with the following code, and yes, it downloads all of them, files are ok, but images (jpg) are unreadable even when I use binary mode, any ideas Private Sub DownLoadFiles( ByVal xServer As String , ByVal xFile As String ) Dim request As FtpWebRequest = CType (WebRequest.Create(xServer & xFile), FtpWebRequest) request.UseBinary = True request.Method = WebRequestMethods.Ftp.DownloadFile request.Credentials = New NetworkCredential(xUsername, xPassword) Dim response As FtpWebResponse = CType (request.GetResponse, FtpWebResponse) Dim responseStream As IO.Stream = response.GetResponseStream() Dim reader As IO.StreamReader = New IO ...Show All

  • Visual Studio 2008 (Pre-release) How to display data in Gray16 format?

    I've got some image data streaming in from hardware in 16-bit grayscale format and I need to display it on the UI as smoothly as possible. WriteableBitmap won't work with PixelFormats.Gray16 . Does anyone know the best way to get this data on the screen, bearing in mind I want to refresh it several times a second I'm currently keeping the data internally in a short[] and copying it (with a right-shift) into an 8bpp WriteableBitmap . I do the copy on a timer. With a 1024x1024 bitmap, setting the timer to fire every 100ms maxes out the CPU. I've tried various strategies to reduce the amount of copying and conversion going on, but nothing helps all that much. Interestingly, I notice (using reflector) that the guts of the WritePixels call is ...Show All

  • Visual Studio 2008 (Pre-release) Resource Dictionary "Adding Stroke/StrokeThickness" IsMouseOver

    How can i get the Stroke/StrokeThickness to appear on IsMouseOver in the Resource Dictionary I have a custom button Style <Style> the Stroke appears in the <Rectangle x:Name="GlowBg" Opacity = "1" RadiusX="9" RadiusY="9" Fill="[TemplateBinding Background}" StrokeThickness="0.5" <Rectange.Stroke> I want the button to have "No" stroke until the IsMouseOver is Triggered,I have excluded some of the Xaml for my Custom Button <ControlTemplate.Triggers> <Trigger Property="IsMouseOver" Value="true"> <Setter Property="Rectangle.Fill" Tar ...Show All

  • Windows Forms Converting .Config files to .Deploy files using Mage.exe at command line

    How can i generate .deploy files using Mage.exe at commandline. I am facing problems with .Config files download at client systems, as IE do not allow to download .Config files for security reasons. If i do it manually, ie. using DOS ren command, it throws errors. Thanks. hi kcongdon, I think you are adding the .Deploy extension before running Mage command. You need to run the mage commands first, then add .Deploy extension to all the files you have except .manifest and .application files. Add the argument mapFileExtensions = "true" to the deployment tag in .application file. Sign the .application again and Finally, run the URL.   Regards Anwar Hussain   ...Show All

  • Visual Studio Express Editions Rich text box text formating problem

    I have developed a C# user control. This user control contains a Rich text box. We are using this user control in an ASP .NET site for rich text editing. The problem is losting test formatting. First we have changed some formatting displayed texts (formatting means BOLD, Underline, font size change, font change, etc), Then lost these formatting after minimizing and maximizing the internet explorer. How to solve this problem One more thing is this problem not there when use this control in a desktop application.. pls help me...... Jefy Well, you can deliver it to asp.net forum , there you may find satisfactory answers. Thank you ...Show All

  • SQL Server Read CSV file - Save Columns into rows

    I want to import CSV file and convert columns into rows depending on Customer count(2nd record in each row of CSV file) and save to SQL table --CSV file format State, Customer_Count, Name_1, Total_1,Name_2, Total_2,Name_3, Total_3..can go upto 350 GA,2,'John Doe',14.00,'Roger Smith',15.00 FL,3,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00 SC,5,'John Doe',14.00,'Roger Smith',15.00,'Sally Cox',16.00,'James Brown',17.00,'Rick Davis',18.00 Data in SQL table from csv file should look like this State,Name,Total GA,John Doe,14.00 GA,Roger Smith,15.00 FL,John Doe,14.00, FL,Roger Smith,15.00 FL,Sally Cox,16.00 I have multiple CSV files with millions of records. How can i achieve this using Integration Services or Bulk Data I ...Show All

  • Visual Studio Tools for Office Working with VSTO, sending data to Excel from Visual C++

    I installed VSTO, but I don't know how to use the assemblies they have. I can't find Microsoft.Office.Interop.Excel. Please explain me how add this assembly to my project. Or how to send data from VC++ to Ms Excel 2003 Thank you. I have some data to send in my Excel worksheet, maybe some text, and want to print out from my program. But I don't know how. I read in forums that it works with Visual Basic and I thought it works with Visual C++ too. They write that it needs some Microsoft.Office.Interop.Excel assembly. I found it in my GAC but i don't know how to include it in my VC++ Project. Plese help me if you know how to do it. Thanks. ...Show All

  • .NET Development WMI Problem

    I've tried these two methods of accessing Win32_Account from WMI, from two separate PCs, each trying to access both itself and the other PC. In all cases the For Each loop does not execute as if the Instances collection is empty. Any attempt to inspect the Instances collection with a debugger hangs. I can run similar code in VB6 using objects and it works perfectly and lists accounts on each machine. Is this a bug in System.Management or am I doing it wrong Dim wmi As New System.Management.ManagementScope( "\\" & "somepc" & "\root\cimv2" ) Dim sClass As String = "Win32_Account" Dim opt As New System.Management.ObjectGetOptions( Nothing , New System.Ti ...Show All

  • Visual Studio Express Editions Failed to map the path '/QuickStartv20/App_GlobalResources/'.

    I am getting the below error inspite of follwing all the woekarounds in this forum.Please Help. Failed to map the path '/QuickStartv20/App_GlobalResources/'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.InvalidOperationException: Failed to map the path '/QuickStartv20/App_GlobalResources/'. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Error - Spacewar Starter Kit (GSE Beta2)

    Hello, I can't run Spacewar Starter Kit, I get an error: Error 1 Error code: -1 encounted when initializing FBX file loader. The file is either corrupted or it is not a valid FBX file. C:\Documents and Settings\ma o\Dokumenty\Visual Studio 2005\Projects\MySpacewarWin1\MySpacewarWin1\Content\Models\p1_pencil.fbx MySpacewarWin1 You don't need *any* DirectX SDK for XNA. if you use the runtime installer it will put all the relevant runtime bits out there for you. http://www.microsoft.com/downloads/details.aspx familyid=2DA43D38-DB71-4C1B-BC6A-9B6652CD92A3&displaylang=en ...Show All

  • Smart Device Development Pass sounds through the phone's modem over the cellular network (PPC Phone)

    Hi I have a question. Can I pass sounds through the cellular network via the phone's modem So for example I dial a TTY number (teletypewriter; used for the deaf and hard of hearing) and tap Send/press Enter to submit. From there, an application will dial the number over the network. Once I establish the connection to a network and caller answered the phone, the caller will start typing. Thus, an application's job is to receive sounds from the network and translates it back to text, so I can start typing. As I start typing, my application will translate text into sound and pass it through the network to the caller that I'm talking to. There is a TTY program called CallTTY, and it's used to interface with the sound card without a voice ...Show All

  • Visual J# ToolStrips, Text Boxes and loads of trouble

    ok, essentially what I'd like to do is add a rich text box to a toolstrip. I really dont have much of a clue of where to even start with this. Thanks a bunch - worked fine. Is it possible to add a UserControl to a toolbar Tried it with the following code to no avail. Workspace.Modules. Notepad notes= new Workspace.Modules. Notepad (); ToolStripControlHost host1 = new ToolStripControlHost (notes); toolStrip1.get_Items().Add(host1); toolStrip1.Refresh(); ...Show All

©2008 Software Development Network