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

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

VizCoder

Member List

gldnratio
HSheridan
ReneeC
Dave Dumas
Andrew Lynes
m3rLinEz
Kunal Sharma
Greekmaz
MF Newbie
Sevugan
astrocrep
BioGeek
Chris_Chris__
DamsDev2007
Scott Boyd
hye_heena
Tamim Sadikali
MeanMisterE
SoniaJulka
mszlazak
Only Title

VizCoder's Q&A profile

  • Gadgets brin gadget to front

    hi every body plz any one know a function to bring a gadget to front thanks Compile this with AutoIt: AutoItSetOption("TrayIconHide", 1) Send("# ") ...Show All

  • SQL Server How to connect to AdventureWorks database

    I'm trying to connect to the AdventureWorks sample database, after just installing it from the SQL 2005 setup. I was expecting it to automatically appear in SQL Server Management Studio, but it's not there. H ow do I get it to show up there -Alex refer this KB http://msdn2.microsoft.com/en-us/library/aa992075(VS.80).aspx Madhu ...Show All

  • Visual Studio 2008 (Pre-release) Binding problem after selection on ListView

    I have created a binding style1 which binds SelectedItem to a DependencyProperty and is programmatically applied to a control. If a style is applied to a control before making selection the binding works, but if a selection is made first and style is applied after that the selection binding will not work... Is that a bug.. or am I missing something (Try this code and see if you hit the breakpoint) < Window x:Class ="BorkenBindingAfterStyleSwitch.Window1" xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x ="http://schemas.microsoft.com/winfx/2006/xaml" Title ="BorkenBindingAfterStyleSwitch" Height ="395" Width ="499" Name =&qu ...Show All

  • Visual Studio TableAdapter and Crystal Report

    I have just upgraded from vb6 to vb8 and have never used the TableAdapter before. I have mastered the TableAdapter and the TableAdapter Query but i am looking to connect a TableAdapter to a Crystal Report, can someone help with this Regards Darren. If you set the "ReportSource" for Crystal report viewer object instance to the Typed Dataset you have filled, your report will be displayed. ...Show All

  • Visual C++ how to detect which line of code causes a particular memory to be written

    I'm debugging now, and there is a location in memory 0x0046B238, which I want to know when it is written when my program is running. Right now, i'm pressing F10 to step through the lines of code one by one. Is there an easier alternative THanks. Open Debug->Windows->Breakpints. In the break point window click New->New Data Breakpoint. There you can add an address to watch for changes. -- SvenC ...Show All

  • Windows Live Developer Forums Problem Photo Upload Dialog: "THis folder has a new image format. The COnverter is downloading."

    Does anyone have any insight as to what is causing the photo uploader not to recognize any photos in the My Pictures folder It shows "No photos in this folder" (when there are) and when you change to another folder containing photos it gives a dialog box " There are images with a new format in this folder. The converter is downloading". Well, there are the typical jpg photos in the folder, and when the dialog box goes away by itself, it still shows "no photos in folder". I've tried the whole reinstallation procedures, clearing cache, removing objects, etc. Every reinstall has the same problem. Any insights please -David hi i have tried a 3rd party web browser and it ...Show All

  • Visual Studio Introducing HelpStudio Lite

    The VS 2005 SDK contains a new tool for authoring Help and integrating it with VS 2005. The tool is called HelpStudio Lite. It is lightweight version of the full HelpStudio product, developed by Innovasys . HelpStudio Lite is recommended for anyone extending VS 2005 - for example, by creating add-ins, controls, or packages. You will likely also want to author and include Help content with your extensions to VS. You can use HelpStudio Lite to author your content and compile it to the Help 2.5 (hxs) format, so it can be integrated with VS 2005. The HelpStudio Lite documentation includes details on how to create deployment projects for your content (your hxs files). There are a couple options. One option is to use the Help Integration ...Show All

  • .NET Development Update statement

    why isit i am still able to get a successful update for a row when there is not such a row. ie try to update a row where id=10, but there is no id10 and im still able to get a success reply. what is wrong i shld have found the solution to my problem. but i do need to know how i can perform a check on another table before i perform the update on this table. how will the sql command be like eg. will be reading user input table 1 , table 2 i wanna check on table 1 whether (a and b) exists and if exists, i will den update table 2 user input. ...Show All

  • Visual FoxPro Tables Relation

    Dear reader, I hope you can help me. I dont know how to relate two dbf free tables files. Table Sub (submenus Items belongs to) ID OWNERID USERNUMBER SHORTNAME LONGNAME EXCEPTIONS ITEM01 ITEM02 ITEM03 ITEM04 1000 0 1000 Entradas Entradas 0 1001 1002 1003 1004 1100 0 1100 Ensaladas Ensaladas 0 1101 1102 1103 1104 1200 0 1200 Sopas Sopas 0 1201 1202 1203 0 1300 0 1300 Cremas Cremas 0 1301 1302 1303 0 1400 0 1400 Ex tico Ex tico 0 1401 1402 1403 1404 1500 0 1500 Aviant\nCuisine Aviant Cuis ...Show All

  • Windows Forms Runtime vs Designtime

    Hello all I've made a very small UserControl with a TextBox. In the Load-event of this UserControl, i say: Me .TextBox1.Text = System.ComponentModel.LicenseManager.CurrentContext.UsageMode.ToString When i add this control to a Form, it says: Runtime. I was however expecting Designtime (also because the title-bar of Visual Studio is mentioning "Microsoft Visual Basic .NET [Design]"). And when i'd press the run-button, i was expecting to see "Runtime" (when the title-bar is showing "Microsoft Visual Basic .NET [run]). Could somebody tell me how this comes and what i should change to get into a LisenceUsageMode.DesignTime Thanks, John. Well, this may not answer your ...Show All

  • Windows Forms Unable to get the window handle for the 'WebBrowser' control. Windowless ActiveX controls are not supported

    Hi! I'm trying to load asynchronously a web page in a embedded webbrowser, but i get this Exception: "Unable to get the window handle for the 'WebBrowser' control. Windowless ActiveX controls are not supported" My code: public partial class Buscador : Form { private delegate void InicializarWeb_( string url); InicializarWeb_ IW; public Buscador() { InitializeComponent(); IW = new InicializarWeb_(InicializarWeb); } private void InicializarWeb( string url) { webBrowser1.Navigate(url); } private void FinInicializacionWeb(IAsyncResult IA) { try { IW.EndInvoke(IA); } catch (Exception Ex) { MessageBox.Show(Ex.Me ...Show All

  • Visual Studio Express Editions C# Service Pack problems

    Hi, i'm having problems installing Service Pack1 for Visual C# Express Edition. I've downloaded the ISO version and it installed just fine, i also downloaded XNA Express Edition and it installed fine too. Now the problem comes with installing Service Pack1 for C#, here is what it gives me: http://storage.xfear.org/c%23.JPG I am running WindowsXP Pro SP2 with the latest DirectX and .NET Framework 3.0. Are you sure you downloaded the correct SP There are different versions for each Visual Studio Express flavor. The one you want is VS80sp1-KB926749-X86-INTL.exe ...Show All

  • Software Development for Windows Vista getting an error when creating XOML based workflow

    I must be stupid and am missing something, but I made a simple workflow using the code separation file with .xoml extension. When I try to create an instance of the workflow using a XmlReader, I get the following error: Cannot create workflow definition...Input markup is invalid. The calling code is simple like so... WorkflowInstance instance2 = workflowRuntime.CreateWorkflow(new XmlTextReader("Workflow1.xoml")); instance2.Start(); and my XOML only contains the default bare minimum <SequentialWorkflowActivity x:Class="CompositeActivitySample.Workflow1" x:Name="Workflow1" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns="http://schemas.microsoft.com ...Show All

  • Smart Device Development Stock Por sample "How tro write an ActiveSync Service provider"

    Can anyone tell me how to get the StockPor device application to load on one of the devide emulators in VS2005 It would really help me to learn what the code is doing much faster it I could trace the code.. I have tried to load it on every emulator(I think) in the device manager in vs2005 with no luck. What version of Pocket PC is it written for Thanks Jon Stroh I hope I am giving you the right info here. What I found in the readme file was Windows Mobile Pocket PC Version 5.0 SDK. I am only pursueing the StocPor sample because I need to learn to write a ActiveSync Service provider, is it true that RAPI and C# there is no way to accomplish accessing the object store and checking for changes at the record level in a database fi ...Show All

  • Visual Studio 2008 (Pre-release) Actor ?

    Hi I am doing interop to a java web service and I am getting this error here : "Cannot find security header with actor '' in message." can anyone give me some pointers on this error message, what does it mean cheer @llan Are you getting this error on the client or the server A security header can contain an actor attribute which indicates who it's intended for. If there is no actor attribute in the security header (and there can only one of these in the envelope) then it's implicitly intended for the final destination. It looks like something is requiring the use of the actor attribute. Go ahead and set up tracing/logging and post your envelope if you would so we can t ...Show All

©2008 Software Development Network