Software Development Network Logo
  • Visual Basic
  • Smart Device
  • Game Technologies
  • VS Team System
  • Windows Forms
  • Visual Studio
  • Visual C++
  • Windows Live
  • Visual C#
  • Visual J#
  • Architecture
  • Microsoft ISV
  • Visual FoxPro
  • VS Express Editions
  • SQL Server

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

zdeer1

Member List

Zartaj
cbenesh
magiccode9
GeorgeDe
scheperw
Devin G
Yitzhak
Scale_Oven_Stove
decrypted
Tim Golisch
Naveen G
Tal Kedem
Jimmy Bergmark
awe
DONG
NOODLEBOY79
Blicos
XgenX
BrandyR
Soon Lee
Only Title

zdeer1's Q&A profile

  • Software Development for Windows Vista How to make a design view of a workflow execution easily ?

    Hi all, i have to make a design view of a sequential workflow execution. The user have to see the executed activities, those who are currently run, and those who are not reached. Is there a sample of this I dont see an answer in this forum and in the HOL. Thank you. (sorry for my poor english.) Hi, There is a sample installed with Beta1 entitled "Workflow Monitor."  This should be exactly what you are looking for. Thanks, Angel ...Show All

  • SQL Server Encryption and database restore

    Hi Can anyone help I have a database using encryption with symmetric keys created using asymmetric keys. I backed up this database and restored it on another machine along with the service master key. I can read the encrypted data fine. But all the encrypted stored procs that are associated with the application that uses the data cannot read the data, they just return Nulls. If I regenerate all the encrypted stored procs from script they work fine again. Is there a way to restore the database without having to regenerate all the encrypted procs You are probably missing this sequence after ...Show All

  • Visual Basic porting from GWbasic to visual basic

    hi,       is it possible to convert code of GWbasic in to visual basic if yes then how i also agree on non GUI porting if not possible with GUI. please help me. thanks. I'm thinking that the language is basic but you are moving to an event driven model in most cases so you may be able to reuse some of you program logicusing simple cut/paste but anything that deals with user interface, input/out is going to need to be reworked and the fact that VB works in an event driven model and GWBasic doesn't means you may just end up rewritting you code and simply cut/paste and modify appropriate bits where necess ...Show All

  • .NET Development Reflection.Emit issue

    I am using Emit to instrument applications in the following way, I create a dynamic assembly, and replicate all the uninstrumented methods verbatim, and instrumentated stubs that call them. I replicate the method by interpreting the source msil data, and calling appropriate Emit overloads to generate the new method. This works very simply as long as the original and replicated code sizes are the same which they should be; i.e. no fixups required on branches - just copy the operands verbatim. I have hit a problem with exception blocks though. I use ilgenerator.BeginException, BeginCatch etc at the appropriate points (from Excepti ...Show All

  • Windows Forms Oh, the magic that the Tab key does (focus)

    [Using VS2005 Beta2...] The FocusRectangle is a very fickle thing. Create a form with two buttons on it. Create a KeyPress event for the form that cycles focus between the two buttons (turn on KeyPreview for the form): private void Form1_KeyPress( object sender, KeyPressEventArgs e) {   if (button1.Focused)   {     button2.Focus();   }   else   {     button1.Focus();   } }   If you press any key other than the Tab key focus will cycle between the two buttons without ever showing the dotted FocusRectangle. Now hit the Tab key and the nifty FocusRectangle sho ...Show All

  • Smart Device Development loading symbol

    Hi there, I was wondering how to show the loading symbol (that square divided into 4 colours (red, green, blue and yellow)... Please help... Alex May be you are talking about displaying the wait cursor: If this is the case you may do the following: //display wait cursor Cursor.Current = Cursors.WaitCursor; //do some processing .. //restore default cursor (hide wait cursor) Cursor.Current = Cursors.Default; ...Show All

  • Visual Studio Express Editions How To Make Printer Friendly Page?

    Hi, My Question iz how can we make a printer friendly page with the datagrid populated. any ideas Thanks in Advance Try using System.Windows.Forms.Control.DrawToBitmap method: this method prints the data grid view to a bitmap. Hope this helps. ...Show All

  • Visual Studio Express Editions Local Host Username And Password

    Hi Im a total newbie to web developer 2005 and more-or-less a newbie to any form of coding though i have done some work in VB.net. Ive downloaded and successfully installed visual web 2005, sql etc etc i downloaded as much as the options had to offer. When running the program for first time i create a personal site, it says to run do ctrl+F5 for a preview of the auto generated basic layout, when i do this i get prompted for username and password for the local host but im not sure why. i switched between firefox and ie same results, my own username etc doesnt work is there a default i dont know about i have a missed something i need to c ...Show All

  • Microsoft ISV Community Center Forums Need recommendation on Office/VBA/.NET/C# solution (cross-posting from the VSTO Forum)

    ****** The reason that I am cross-posting this from the VSTO froum is to reach the widest expert base. Thanks. ****** We want to move logic currently in Word XP VBA to C# component(s). What the VBA code basically does is calling Web Services that are implemented in Java, and display the returned data in Word documents. Our requirements are: improved performance easiness to install the components on end-user's PC's ability to be shared the components across all the products in the Office suite After doing some reading, there seem to be 2 solutions to me: Register the C# components as plain-vanilla COM objects using COM interop and call ...Show All

  • Visual Studio Team System Rules of Engagement

    Greetings, Now that I have got the CTP and can play around I need some information on the proper way to report "issues". Can any one respond with:- Where should I report what appear to be "bugs" in the program Where should I report problems with installation & setup Where should I request enhancements Where can I just whinge about what peeves me I've been waiting for some time for a tool like this and I appreciate the opportunity to get an early look at it. -- Regards, Neale NOON I've taken a look at Microsoft Connect which is the replacement for t ...Show All

  • SQL Server why doesnt this work?

    i am new at T-SQL and am trying to delete entries in a column that are not integers. i have the following code. why does it not work. T-SQL select invoicenumber from [control register] where convert(int, invoicenumber) like '%' if @@error > 0 begin delete from [control register] where invoicenumber = invoicenumber end go gives me the error in Query analyser: Server: Msg 245, Level 16, State 1, Line 1 Syntax error converting the nvarchar value '10-3-05' to a column of data type int. @@error is supposed to pick up the error. why is it not. please could you reply urgently at chris@captivedesign.co.za thanks in advance ...Show All

  • Visual Studio Express Editions About Combobox

    Hi friends. I'm newest user for Visual Studio 2005 VB, i couldn't find right way, I need some information. Sorry My English is not so good. I can explain so; I have one combobox, i connected that to my db(Access) There is so much Column, When i select somthing in Combobox i wish textbox show what a that row compoist for other column. ----------------------------------------------------------------------- | Sno     | asd        |  312sad |      kashs| sakd   | sadas|  yuha | > Column name -------------------------------- ...Show All

  • Visual Basic VB6/VBA question: execute a string as code

    Hi all, I am working on an Excel project with huge amount of VBA classes and modules. My question is how can I execute a line like: Dim tmp as Variant Call ExecuteLine("Set tmp = New " + ClassName) ' Where ClassName is a string of a certain class name Since the number of classes are large and there are new classes being inserted constantly, it would be very nice to have this two lines of code rather than many lines of Switch-Case. I searched from web, there is one approach of using VBA6.dll function "EbExecuteLine". However I'd like to avoid using it since: 1. I failed calling the library; 2. I believe I canno ...Show All

  • .NET Development Programmatically creating a PPTP/L2TP server-side session via ASP.NET?

    I have a need to monitor and accept a PPTP or L2TP connection from a remote VPN client and dynamically create a VPN session just for that client.  What's a good approach to this problem  Perhaps I've overlooked a Win32 call, but I think I'm going to need an end-run manipulation of address books or other non-obvious methods.  I need to implement this in ASP.NET. Any ideas or pointers is greatly appreciated This forum is dedicated to questions relating to the System.Net namespace.  If you are set on an ASP.Net implementation, I suggest reposting this to the forums at www.asp.net as they ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. MDX 2.0 FrameHierarchy problem...

    Hello everyone, I'm playing around with MDX 2.0 and while converting my code from MDX 1.1, I suddenly got an error while trying to load a FrameHierarchy from an .x-file. I've adjusted the code according to the changes in the api and the code compiles just fine, but when it tries to call the Mesh.LoadHierarchy method, it gives me a DirectXException. The ExceptionHelper doesn't really live up to it's name in this case as it offered me no further understanding and I can't find any information on the internet either. Does anyone know if I have to change something in the code to adjust to MDX 2.0 or if there's some kind of bug with this method si ...Show All

©2008 Software Development Network