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

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

NZ

Member List

CodeDjinn
ManuFern
Bill Calkins
vagrant
Lesego
Rob Wheeler
Vladislav Pereiaslavets
AlexBB
Dyson47
Abhi Arjun
RyanB88
JohnmanCarl
sandsdad
Fluxtah
Martin Smith
Whoisit
RostaB
sdoc
Bryan Tang
JoshKorn
Only Title

NZ's Q&A profile

  • Software Development for Windows Vista Non blocked worflows do not resume after web service restart

    Hi, I'm using the default sql persistence service and manual scheduler and the generated web services for the workflow. If I restart the web service, the workflows that were executing are not restarted from their last persistence point. I can see the entries in the InstanceState table and the runtime picks them up using RetrieveNonblockingInstanceStateIds but then when they are scheduled to run nothing happens. For each workflow instance that should resume, the last lines I can see in the log are System.Workflow.Runtime.Hosting Information: 0 : WorkflowRuntime:ScheduleLoaded event raised for instance Id 454c0cf7-2117-4f29-bd3f-2d867118923e System.Workflow.Runtime Transfer: 0 : , relatedActivityId=454c0cf7-2117-4f29-bd3f-2d867118923e Syste ...Show All

  • Visual C# Setting supportedRuntime property for IE programmatically

    Does anyone know to set the supportedRuntime property of the internet explorer programmatically, from my window form application. I want to do it elegantly, not to change the supportedRuntime element in the "internet exploreriexplorer.config.exe" file, but to do it through the IE api. TIA, Hey ahmedilyas, sorry for the wrong and confusing phrasing. I want to set the supportedRuntime property of the internet explorer programmatically, from my window form application. But i want to do it elegantly, not to change the supportedRuntime element in the "internet exploreriexplorer.config.exe" file, but to do it through the IE api. TIA, ...Show All

  • Visual Studio Team System ClickOnce Version Number as Team Build number

    I want to create a Team Build that does a ClickOnce publish for my testers that creates a build number that includes the ClickOnce version number. We are showing the ApplicationDeployment.CurrentDeployment.CurrentVersion to the testers as part of the test application. When they enter bugs into TFS, we want them to be able to easily pick a build (on the Details tab of the Bug work item) that correlates to that ClickOnce version. If have several of the pieces to do this figured out: 1) Change SolutionToBuild to SolutionToPublish in the build proj file. 2) Override the BuildNumberOverrideTarget to create my custom build number. I could use some pointers on these questions: 1) If I want to append to the standard Team Build bu ...Show All

  • Visual Studio Does VS2005 include Enterprise Library?

    Hi: I am using VS express editions to build services and find that I cannot build a WES because express edition is missing enterprise library. I realize that I need the full version of Visual Studio. However, I cannot find which version has enterprise library from the documentations. Before I spend the $, I need to make sure I am getting the right version. Does Visual Studio 2005 include the enterprise library Or is it Microsoft Visual Studio Pro with MSDN Pro Or some other component Could someone please confirm the right VS set Thanks for the help in advance! Ying ...Show All

  • Visual C++ Capturing API Calls

    What would the easiest way of capturing an API call in C++ For example i run IE, my application counts how many times IE calls GetActiveWindow(). <<only an example. cheers, metz-. Try this Google query ... ...Show All

  • Visual C# Last chance exception handler

    Hi, Just in case anything goes horribly wrong in my app, I was wanting to trap any unhandled exception. So I did this in Program.cs: // Last chance exception handler. try { Application .Run( new MainForm ()); } catch ( Exception ex) { ExceptionLogger .LogException(ex); } That works fine when I'm debugging (F5) in VS, but doesn't work when I double-click the .exe file, either debug or release mode. What am I missing here Thanks, Mike In that thread, look way down - you actually need to do three things to catch almost all exceptions: 1) wrap in the try...catch (like you did 2) Attach a handler to Application.ThreadException 3) Attach a h ...Show All

  • Software Development for Windows Vista dsnetwork problem

    I am having problems programming the dsnetwork interface in my application. Strange errors show up and its help on msdn is totally messed up. Firstly, I wanna ask about the IID_IMulticastConfig. Where is it defined. I have added the dsnetifc.h as well but to no use, I cant find the CLSID for it. I hope someone here has worked on DsNetwork. I really need help on it! I think I have zeroed down on the problem I am getting. The thing is I am using the VC6.0 compiler to compile my application. It already defines an OLD strmif.h that has no entry for the IMpeg2Demultiplexer interface. However even when I try to add the path to the include for the Platform SDK strmif.h, it does not work. I guess it still ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Quaternion Tutorial

    Could someone school me in using Quaternions in XNA I'd love to have a tutorial specfically for XNA. I read a tutorial that helped me to understand them a bit better, but still not sure how to plug it into the game. If you can believe it, the documentation doesn't explain it to well. I guess that won't make much sense if you don't know what a quaternion is. The mathmatical explanation is complex and I've stopped caring about it. If you remember complex numbers from high school, then I'll warn you beforehand that quaternions are much much wierder. A quaternion is a 4 dimensional number. Mind you, I mean a 4 dimensional number, not a vector of 4 elements. For comparison, a complex number is two dimensional. ...Show All

  • Windows Forms Control Array

    Hello to all if i create multiple controls (10 buttons for example), how is it possible to address each control individually usin g indexes button[0].text = "some text"; button[1].text = "some other text "; ... 10x danych wrote: i mean can i have a single function instead of 8 trackBar_ScrollChanged (...) functions Yes sure you can do so, Create a function which's signature's Match with ScrollChanged event handler delegate and for each scrollbar's ScrollChanged event attach the same handler. Just a simple sample: Button b1 = new Button(); Button b2 = new Button(); b1.Click += new EventHandler(ButtonClick); b.2Click += new EventHandler(ButtonClick); He ...Show All

  • Visual Studio Express Editions Code cleanup Needed

    Using VS 2005 I would like some opinions with this code will anyone look it over I can't seem to figure -out the few quirks it has. 'Project Name: My Craps game Project 'Project purpose: The project simulates the dice game craps which use's two dice 'Created/revised by: David Barselow/Present time & date Option Explicit On Option Strict On Public Class MainForm Dim point As Integer Dim die1, die2, die3, die4, die5, die6 As Integer Dim dice1 As Integer Dim dice2 As Integer Dim Dice3 As Integer Dim Dice4 As Integer Dim Dice5 As Integer Dim Dice6 As Integer Dim Dice7 As Integer Dim Dice8 As Integer ...Show All

  • .NET Development Help on regex

    I need a regex for a timespan .. from 15 min to 24 hour. input is something like 00:15 I'm not very good in building the pattern. Thanks, (Moderator: Thread move to Regular Expression forum and Title changed from "Help on regex" to "Regex and Timespan" for quicker thread understanding during a search) Now how exact to you want this So far, you've only given us examples of two good value. To write a regex pattern, we really need to know what you want to reject. Is any time good, or are we only accepting 1/4 hour increments Is 24 hours a hard limit, or is is an upper limit of 29:59:59 acceptable (it would make things a whole lot easier) If you'll accept any value from 0:00 to 29:59 than this should wo ...Show All

  • Windows Forms Changing Form size at run-timeI

    When i change the size of my form at programmatically according to a selectedItem in my combobox. There's a little flicker on the form ... the form contains lots of usercontrol. It isn't smooth... How can i fix this I agree with Andreas totally, the more controls you have the more time it will take to draw them to the screen. Sometimes it also depends on the graphics card (going down low level) on how fast it can draw to the screen - not saying that this is the only problem - not at all, there are many problems to consider and what Andreas said is totally correct. As they say, there can be many solutions to 1 problem.   you may wish to add Application.DoEvents after you resize your form progra ...Show All

  • SQL Server Filtering data

    I need to filter data. In dataset/ Filter tab, I have entered: Expression: =Fields!PRACTICE_ID.Value Operator: = Value: 20 and get this error: The comparison failed. Check the data type returned by filter expression. Practice_id has int data type. How else can I check the data type returned by filter expression I tried to filter on table level the same way, and get the same error. Could anybody help, please, to make it work Thank you gndsp I had the same error and strange as it may seem, I found that explitly casting the LHS to a string fixed the issue. Try changing your expression to: =CStr(Fields!PRACTICE_ID.Value) ...Show All

  • Visual FoxPro Interface in Polish

    Hi everyone: I'm developing an multilanguage application. Till now, we were working with: English, German, French, Italian, Spanish, Portuguese (both, also Brasilian Portuguese) and Romanian. Everything runs well, but I can't manage with some Polish characters. The captions are stored in tables DBF, which were populated from Excel files. As soon as information is imported from Excel to VFP DBF file, the Polish character (something between e and c) is substituted by e. What should I do Do you have any advice for me Thank you !! -- Regards, Ana Madrid, Spain www.amby.net Hi David: Thanks for your help. I wasn't able to reproduce your idea. I save the Excel document as HTML and then I ...Show All

  • Windows Forms how do you pass a text string to a windows form text property

    ok here goes i have a form text property =form1 i have a control on the form textbox as i enter text into the control i want it to display on the from title ie the text property of the form how do you do that c# visual studio 2005 neewbie Hi, I just love databinding, so here's a alternate method using that. Basically the below code binds the form's Text property to your textbox as a data source: public Form1() { InitializeComponent(); this .DataBindings.Add( "Text" , textBox1, "Text" , true , DataSourceUpdateMode .Never); } Andrej ...Show All

©2008 Software Development Network