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

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

SIYER

Member List

EastShores
Attila Fogel
cdaviduik
xlordt
JeffK_
kirank_gh
smoothdogg00
Pratyush
Fei-tian
mthierauf
ken9865432
Babak Farahani
Glyn Darkin
irohan_fernando
Vile
__gapman__
Douglas H. Troy
John Wesley Harding
Jon Braganza
zoomCrypt
Only Title

SIYER's Q&A profile

  • Visual Basic Error BC31019: The specified image file did not contain a resource section???

    Hi, I've just added an icon to my project and set it to be the main icon for the program. However, I keep getting this error message: vbc : error BC31019: Unable to write to output file 'C:\blah\blah.exe': The specified image file did not contain a resource section. I've tried creating the icon in two different programs (which didn't fix it), however when I tried with an icon I'd made with one of these programs before, it works fine. Can anyone help shed some light on this Thanks! What type of project is this Class Library, EXE. What code are you using to try and access these icons . Try and provide as much details as to what your doing - which options your using to add the resou ...Show All

  • Visual Studio 2008 (Pre-release) Custom TransportChannel with IDuplexSessionChannel shape

    I’m implementing a custom transport channel based on IDuplexSessionChannel shape. Corresponding listener and factory look as shown bellow: public class MyTransportListener : ChannelListenerBase < IDuplexSessionChannel > and public class MyTransportFactory : ChannelFactoryBase < IDuplexSessionChannel > I found that in this scenario following methods play important role. OnBeginAcceptChannel and OnEndAcceptChannel. To test this behavior following code has been used to in my custom listener: private Thread m_ReceiveThread; private void receiverThread( object param) { AsyncResult ar = ( AsyncResult )param; ...Show All

  • SQL Server How to know if SQL Server 2005 trial version is installed?

    When I ran @@version I get this: Microsoft SQL Server 2005 - 9.00.2047.00 (Intel X86) Apr 14 2006 01:12:25 Copyright (c) 1988-2005 Microsoft Corporation Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 1) I assume this is a licensed version because the std edition does not have a trial license Can someone confirm this If this were a trial version, what could I expect to see Prior to expiration of the trial version, you can upgrade to the full version by using the SKUUPGRADE command-line parameter as documented at http://msdn2.microsoft.com/en-us/library/ms144259.aspx . You can determine you have the evaulation version by running this T-SQL command against the server: SELECT SERVERPROPERTY ('Edition') ...Show All

  • SQL Server SQL Server 7.0 maintenance plans and job server access.

    I have a legacy system running SQL Server 7.0 SP4, and it is automatically backed up using a SQL Server Agent maintenance plan. Unfortunately this has stopped working (no change was made to SQL Server), and I do not know why. The message that appears in the Event Viewer Application Log is... SQL Server Scheduled Job 'DB Backup Job for DB Maintenance Plan 'eChange DB Maintenance Plan 1'' (0x5F4E8115DCF5B843B83FAE6AFD48DFEC) - Status: Failed - Invoked on: 9/26/2006 4:00:00 PM - Message: The job failed. The owner () of job DB Backup Job for DB Maintenance Plan 'eChange DB Maintenance Plan 1' does not have server access. The job is owned by a domain account which is a member of the Administrator's group on the server, and until now ha ...Show All

  • SQL Server Troubleshoot Distributed Service Broker App

    Hi There Ok i have done the following on my target instance i have created an endpoint, xml schema, message types, contact, activation sp , queue and service. On the initiator i have created an endpoint, a route to the target service, same xml schema, same message types, same contact, queue and service. When i try test this by doing the following: SET @msg = CAST ( @body AS XML ) BEGIN DIALOG CONVERSATION @dialogHandle FROM SERVICE [http://ewx.co.za/DemoInitiatorService] TO SERVICE 'http://ewx.co.za/DemoService' ON CONTRACT [http://ewx.co.za/DemoContract] ; SEND ON CONVERSATION @dialogHandle MESSAGE TYPE [http://ewx.co.za/DemoMessage] ( @msg ); END CONV ...Show All

  • SQL Server Does "Current time member" on the KPIs designer do anything?

    The "Current time member" on the KPIs designer is poorly documented and that's an understatement. Does it actually do anything or is it unfinished code Has anyone else come to the conclusion that KPIs in SSAS were never "finished" We've found numerous holes in the way KPIs have been implemented. Matt, thank you for your response. That's exactly what I needed to know. How could the company I'm with get more involved in defining enhancements for Analysis Services You mentioned the KPI Browser UI is "intended only as a sample browser" and that KPIs are fully functional; however, the more we dig into it the more we lean toward implementing our own architecture for KPIs because what is in SSAS f ...Show All

  • Smart Device Development debug output message

    Hi... another newbie question. When iam debugging my product everything works like I want it to do but int the debug output i see exceptions like this: A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll A first chance exception of type 'System.IO.IOException' occurred in mscorlib.dll A first chance exception of type 'System.IO.IOException' occurred in mscorlib.dll 'Pelle.exe' (Managed): Loaded 'c:\documents and settings\administrator\my documents\pellets\pellets\obj\debug\af-za\Pelle.resources.dll', No symbols loaded. A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorli ...Show All

  • Windows Forms capture volume control HELPPPPPP LOL

    ok im working on a laptop and it has a capture controle volume bar and it controles all the volumes but i dont want it to i wanna use the mater volume and recording volume controles how do i stop the capture volume controles from taking over the other volume controls please help me if u can thanks Hi, This forum are related to programming issues on Winforms.net, so please post questions related to Winforms.net only. Thank you, Bhanu. ...Show All

  • SQL Server SQL 2005 error

    Hi, When i tried to double click on the stored procedure in the SQL server 2005 management studio I have received following error. If you know anything about this message please let me know. ------------------------------------- See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.ArgumentOutOfRangeException: InvalidArgument=Value of '1' is not valid for 'index'. Parameter name: index at System.Windows.Forms.ListView.ListViewItemCollection.get_Item(Int32 index) at System.Windows.Forms.ListView.set_VirtualListSize(Int32 value) at Microsoft.SqlServer.Management.UI.VSIntegration.AppIDPackage.RightPaneListViewer.set_ ...Show All

  • Microsoft ISV Community Center Forums Problem: Macro not deleting columns I select

    Hi all, I have a section of code in my macro which tells it to delete a selection of columns: Columns("C:F").Select Selection.Delete Shift:=xlToLeft this is the first bit of code in my macro but isn't working correctly. Instead of deleting columns C to F its deleting columns A to H. Any ideas why this could be happening Its more about filtering and removing data so I am only left with the 4 required columns and the data for the columns. I am then pulling this data from this worksheet into another worksheet and doing a compare with other data but they need to be in a specific format. The workaround seemed to work though but that problem is still very odd ...Show All

  • Visual Basic Textbox Focus From Form Load

    I am trying to focus a textbox when the form loads. Although TextBox.Focus() works with most events, It do not work when in form load or activated. I would be grateful for help The problem with the Load event is it is one event in a series of events currently in the queue. Calling a Focus method while processing the Load event means any subsequent Focus-changing events in the queue will simply overwrite it. The other problem is the Load event is one event in a series of events that occurs when a Form is created, loaded, and displayed. At the time of the load event not all of these events that will occur are in the queue yet. In the same fashion, those soon-to-be-created events will also overwrite y ...Show All

  • Commerce Server CommerceProfileSystemException: Failed to initialize profile service handle

    Hi, We are working so thad whe have an integration server on with Commerce Server and SQL Server are running. Each developer has now local his own Commverce Server and connects to the database on the integration server. Everything was running fine till last week and now we get a rely strange error. If i start the Website on the server itself it loads and works correctly but if I start the local website on a developers PC I get the error that it Failed to initialize profile service handle. Its so strange then the code of the website is at the momment exactly the same as on the Developer's PC and i get the error way before it really goes into the code. What could here be the Problem It was really working fine last week even the Prof ...Show All

  • .NET Development Can't pass a datetime parameter from C# application to MSSql server

    I use a condition in my query WHERE (ussrf1.rdate >= @aa) In code set parameter this .sqlDataAdapter1.SelectCommand.Parameters.Add("@aa",SqlDbType.DateTime); CultureInfo culture = new CultureInfo("ru-Ru"); culture.DateTimeFormat.ShortDatePattern = "dd.MM.yyyy"; DateTime date = DateTime.Parse("31.12.2005", culture.DateTimeFormat); this .sqlDataAdapter1.SelectCommand.Parameters["@aa"].Value=date; after call this .sqlDataAdapter1.Fill( this .dataSet41); it fails what's wrong the following error display "An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in system.data.dll Additional information: System error." ...Show All

  • .NET Development Exception Class not deserializable

    I have a very simple Exception class that when thrown from a COM+ object generates the following stack. The Exception is marked as serializable and has an "empty" constructor. How can I throw an Exception from a COM+ object. trace: System.Runtime.Serialization.SerializationException: The constructor to deserialize an object of type UnitedMobile.Provisioning.eServGlobal.PI.PIException was not found. at System.Runtime.Serialization.ObjectManager.CompleteISerializableObject(Object obj, SerializationInfo info, StreamingContext context) at System.Runtime.Serialization.ObjectManager.FixupSpecialObject(ObjectHolder holder) at System.Runtime.Serialization.ObjectManager.DoFixups() at System.Runtime.Serialization.Formatters.Binar ...Show All

  • Visual Studio 2008 (Pre-release) Custom Control, Converter parameters, Trigger using parent property

    Hello all I am trying to create a custom text box which uses the next template: < Style TargetType = " {x:Type local:XTextBox} " > < Setter Property = " Template " > < Setter.Value > < ControlTemplate TargetType = " {x:Type local:XTextBox} " > < Border Background = " {TemplateBinding Background} " BorderBrush = " {TemplateBinding BorderBrush} " BorderThickness = " {TemplateBinding BorderThickness} " > < TextBox x:Name = " txtVal " Background = " Beige " IsReadOnly = " True " Text = " {Binding RelativeSource={x:Static Relati ...Show All

©2008 Software Development Network