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

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

AlucardHellSing

Member List

maverick_majnoo
Drake1500
Rattlerr
Richard Fryer
JKountouroglou
ggolub
CTheSoup
cada0310
kymaita
sarika
Nick Colebourn
Greatestevil
meighlough
Seppe001
Coach24
Vinodonly
ea1
Raj S
ZopoStyle
Lovericky
Only Title

AlucardHellSing's Q&A profile

  • Software Development for Windows Vista how to restart workflow runtime after IIS restart

    My question is for workflow exposed as web service through webserviceinputactivty/webserviceoutputactivity. My impression is that workflow runtime is only started after the first web service call. My test workflow has 3 activities: webserviceinput, webserviceoutput, delay. SqlPersistence service is enabled. The workflow is activitied through a web call. When executing the delay activity, it's persisted to the database. Then I shut down the web server (ASP .NET development server). When the web server restarted, the timer already expired but the workflow was not resumed. Only after I made another call to the web service, the timer fired. I did an experiment in a winform application. When the application starts next time, the timer fir ...Show All

  • Software Development for Windows Vista Netfxlive off?

    Hi, I can't access www.netfxlive.com . The problem is with me or the project is off It can be access by the IP - and should be up by EOD today. http://72.232.20.154/ ...Show All

  • Visual Studio 2008 (Pre-release) Drag and Drop with Multiple Selection ListViews

    Hello, I'm trying to build a WPF application which contains a ListView that allows multiple selections and allows the user to drag and drop selected items into another listview. I've been able to get drag and drop to work fine, but I'm having some trouble working with the behaviour of ListViews when dragging the mouse on them. I've experienced the following problems when I've been working with ListViews and supporting drag and drop on them: If the user clicks on an item and holds down the mouse button and then begins to drag, the ListView will change the selection as the user drags over other items. I don't want it to do this- when the user clicks an item and holds the button down, I want the item that they clicked on to always be selecte ...Show All

  • SQL Server Cannot Remotely Access SQL Server Standard Named Instance

    Good Day, I am creating a SQL Named instance as a testing environment. This instance is on the same physical box as my Development environment, both are SQL 2005 standard edition. From the server in Management Studio, I can load, and interact with both instances. From a remote connection (e.g., my pc) I cannot access the named instance. I am getting the following: Connect to Server X Cannot connect to <server>\<named instance> Additional Information An error has occured while establishing a connection to the server. When connecting to SQL Sever 2006, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections (provider: SQL Network Interface ...Show All

  • Visual Studio 2008 (Pre-release) Returning an "large" response?

    I have tested my WCF web service for simple messages that return relatively small responses. Now I have run into a problem where I am returning an array of about 129 structures that are not that big. I am getting the error message outlined below. I have run it in the debugger up until the array is returned and all seems OK. Also as part of the stack trace that I have not included the exception seems to be raised in the handling of the response. Any ideas as to what the cause of this exception is or how would be the best way of diagnosing the problem TestCase TestGetOrderHeadersWildCard' failed: System.ServiceModel.CommunicationException: The maximum message size quota for incoming messages (65536) has been exceeded. To increase the ...Show All

  • Gadgets inline g:text and addGlow method

    Hi everyone, The addGlow method works perfectly when using it as in : var mytext = bgid.addTextObject('TEXT',fontfamily,textsize,fontcolor,posx,posy); mytext.addGlow('white',3,100); However, I can't seem to have it work when the gText element is "hardcoded" in the document, as in : <g:text id="mytext" class="..." style="..." onmouseover="handleglow(this)" /> With the function function handleGlow(obj) { obj.addGlow('white',3,100); } Am i doing something wrong Should I prefer the addTextObject method and then attach an event to the object thus created If so, how Thanks for your answers :) What you're doing is correct - although g: elements do not fire events. So the onmouseover will never fire. If ...Show All

  • Visual Studio Team System Bad mapping DebugActiveProcess in UseManagedEquivalentsOfWin32Api rule

    The mapping for the UseManagedEquivalentsOfWin32Api rule says to use Debugger.Launch instead of kernel32!DebugActiveProcess. "Remove the declaration for 'NativeMethods.DebugActiveProcess(UInt32):Boolean'. Callers should use the following managed alternative: System.Diagnostics.Debugger.Launch " This is a bad mapping. The APIs are radically different and aren't interchangable : System.Diagnostics.Debugger.Launch will (i) launch a (ii) managed debugger with the intent of attaching it to the (iii) current process. The debugger process will be determined by (iv) registry settings . In contrast, kernel32!DebugActiveProcess will tell the current process to start (i) attach as a (ii) native debugger to the (iii) specifi ...Show All

  • Visual Studio Team System How to fix CA 1062 and CA1063

    I have one property public string Name         {             get             {                 return name;             }             set             {                 string valueTrimmed = value.Trim();              & ...Show All

  • Microsoft ISV Community Center Forums VBA freeze

    Hello, I have 2 questions related to VBA for Excel: -after work when i lock my computer and leave a Microsoft Excel window open the next time i unlock it the Microsof Visual Basic window pops-up. Is this natural I preffer leaving Excel open cause i have some custom lists activated. -after running some macros with the VBA window activated even after it finishes running it freezes and i can't see the other Excel windows opened. Even if i close the VBA window i still can't view other excel pages so i have to close all opened workbooks and start all over. Somebody has any ideea ...Show All

  • Windows Forms Object Construction and the firing of Events...

    hi, i searched in the forum for this problem but came up empty handed, hoping one of you can help me out with something... i have this nifty winforms app (C#) which contains a usercontrol. the usercontrol (call it AAA) is instantiated in the class directly. AAA's contstructor calls the InitializeComponent() method. after InitializeComponent() returns construction of the AAA class continues, some additional objects are instantiated here. inside of InitializeComponent() are some events that are hooked up. now for the interesting part... on my machine (and many others) the order of operations is as follows: the main Form begins construction usercontrol AAA begins construction usercontrol AAA's InitializeComponent() is called then returns cons ...Show All

  • Visual FoxPro Make thumb nails

    What is the easiest way to auto create a thumbnail from a large image in FoxPro Thanx Sam. For previous VFP versions like VFP7, you can use GPIMAGE2 to resize an image. This is the main link to the class http://cchalom.sites.uol.com.br/GPIMAGE/index.htm Here you'll find some code samples showing some usages. The first sample shows one way to resize images using the class. http://cchalom.sites.uol.com.br/GPIMAGE/faqs.htm#Resize #INCLUDE gpImage.h IF Not " gpImage " $ SET( "Procedure") SET PROCEDURE TO gpImage ADDITIVE ENDIF gdip = CREATEOBJECT(" gpInit ") img = CREATEOBJECT(" gpImage ") lcFile = GETP ...Show All

  • Windows Forms Num Lock

    I use key down event to check if num key is on or off the problem is if the form not focus the event will not work also I cant use timer tick event hope someone understand what I mean and help me to find the solution I found this code: Public Class Form1 Sub New () InitializeComponent() AddHandler Application.Idle, AddressOf Application_Idle End Sub Private Sub Application_Idle( ByVal sender As Object , ByVal e As EventArgs) If Control.IsKeyLocked(Keys.NumLock) Then labelNumLock.Text = "ON" Else labelNumLock.Text = "OFF" End If If Control.IsKeyLocked(Keys.CapsLock) Then labelCapsLock.Text = "ON" Else labelCapsLock.Text = "OFF ...Show All

  • SQL Server Remote access to sql server

    Hi, I use a VS2005 application with a sql database. All is working well over a local network but I now want remote access to the system via the internet. Is this possible I have a fixed IP address & am wondering if I can just use the ip address as part of the connection string (And if so - how!) There are many details steps and security concerns if you want to enable SQL connection to the public internet. SQL server is definitely enabled for such. Can you be more specific If you only want to use IP address to connect to SQL, you can replase the servername in your connection string with the IP addresss. It should work if your IP connectivity is available to the general public internet. For nam ...Show All

  • SQL Server MSSQLSERVER login failed for user 'MACHINE\user'. [CLIENT: <local machine>]

    I just did a fresh install of SQL Server 2005 Developer Edition and SP1. I elected Windows auth during install. After rebooting I get 2 errors in my Application Event Log: MSSQLSERVER Login failed for user 'COMPUTER\user'. [CLIENT: <local machine>] (event ID 18456) and Report Server Windows Service (MSSQLSERVER) (event 107) which says: Report Server Windows Service (MSSQLSERVER) cannot connect to the report server database. In the data section it says it can't connect to the machines "master" database. I can manually login. How can I fix the problem and get rid of these messages Thanks. Mark I also had this problem but my user/service account had sysadmin as a role. I eventually tracked do ...Show All

  • Visual Studio Express Editions how to save file?

    hi there... my problem is.. how to save a file (text, excel or doc) based on datagrid output Dim sw As System.IO.StreamWriter = New System.IO.StreamWriter("C:\abc.txt") sw.WriteLine("This is my text") sw.Close() Dim swExcel As System.IO.StreamWriter = New System.IO.StreamWriter("C:\abc.csv") swExcel.WriteLine("Akbar khan,akbar@akbar.com,www.akbarbuneri.googlepages.com") swExcel.WriteLine("Akbar khan,akbar@akbar.com,www.akbarbuneri.googlepages.com") swExcel.WriteLine("Akbar khan,akbar@akbar.com,www.akbarbuneri.googlepages.com") swExcel.Close() ...Show All

©2008 Software Development Network