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

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

beakdan

Member List

Matty4242
schwarem
Dennis Clark
Morias
Inferno986
woon pun
Schwarzer Schmetterling
AndyBee123
forceinline
Whoisit
Patrick.I
thukralz
Vasic
simdoc
JCJCJC
DazlerD
gifuran
Zero_
SanthaMind
MarkBosley
Only Title

beakdan's Q&A profile

  • SQL Server Looking for suggestions Cluster or Mirror

    Hello, We currently have one instance of SQL2k5 SP1. We have a couple of publications, and 30 subscribers, on the instance and are considering going to either a cluster environment or db mirroring. Currently our instance seems to be busy and I am wondering if clustering really gives it a performance boost. What are your thoughts/suggestions on going to a cluster environment versus just db mirroring Can mirroring be used for real-time failover as we need to add that as well Thanks in advance. John Fail-over clustering and database mirroring are both high availability solutions that don't have any direct effect on performance. Fail-over clustering relies on shared external storage between the node ...Show All

  • Visual C# very strange System.Net.Sockets.SocketException

    What can be a possible cause When my program running on a notebook connects the server, it gets the System.Net.Sockets.SocketException. I try to ping the server by the domain name from the notebook. It's OK. So not related to domain name resolution or network stability problem. I try to telnet to the server from the notebook directly and issue some commands. It's OK also. So not related to any firewall. It just happens in a few notebooks in the same network.... what can be the possible cause The following is the code. if(ConnectSocketThread==null || !ConnectSocketThread.IsAlive) { ConnectSocketThread = new Thread( new ThreadStart(this.ConnectSocketThreadFunction) ); ConnectSocketThread.Name = "ConnectSoc ...Show All

  • SQL Server RDLC Client Report and query parameters and print button

    Hi, this is my first post here. I hope to be helpful trying to help and not only asking questions arround here. After I have my report ready I will share here the total experience from top to bottom!But for now, here's the issue: I'm building a RDLC Repor on my ASP.Net VB web application. I added the .rdlc file to the application and created a table to show lines of data binded from a dataset. The thing is: - The DataSet expects a parameter @intNumber, a identifier to get the correct data to display the correct report. - I'm using ReportViewer to view the report, and by code I've passed a Report Parameter to the *.RDLC report with success, just like this: Dim parms(0) As ReportParameter parms(0) = New ReportParameter("intNumber", ...Show All

  • Visual Studio VSS 2005 Crashes When Creating History Report

    My VSS 2005 is crashing when I - Open VSS 2005 Explorer - Navigate to subfolder - Right Click - Select View History - Check "Recursive" - Enter a recent date - Click OK - Click Report - Both Include Details and Differences are checked - Clicking either OK or Preview for any of the choices (printer, file, clipboard) causes a "MS VSS Explorer has encoutnered a problem and needs to close". Button choices are Debug, Send Error Report, Dont' Send. If I click debug, VS opens with a green arrow at the bottom of this method. Unforntuantely I dont know C++, so I dont know any other context to provide BOOL CStatusBar::SetPaneText( int nIndex, LPCTSTR lpszNewText, BOOL bUpdate) { ASSERT_ ...Show All

  • Visual C# How to deploy abc.reg file

    I have created abc.dll in c# .NET 2.0 Using regasm /codebase /regfile p:\dll\abc.dll i Have created abc.reg file. (where p:\dll is network folder) If i want to install this abc.reg file on user machine using msi package, how can i create this msi package. I have tried visual studio deployment project , but no luck to run abc.reg file on user machine. Any help would be appreciate. thanks You can simply write a small application (Console) which will run abc.reg file using Process.Start("abc"); Now put both this console application and that abc reg in the Installation Folder, Now Add a custom action under install and run the application you have created to change the registry. ...Show All

  • Visual Basic File not being released by operating system

    Hi I created an app in vb.net 1.1 which all worked well, I've upgraded the app to version 2.0 of .Net framework and vb.Net 2k5, all works well except for a file move (which works in 1.1.) the code is shown below. the application converts word docs to pdf, if there is one or more documents these are merged into a single PDF file, this newly created PDF needs moving to a permenant location after merging and encryption has taken place. 'loop while blnSuccessfull is not equal true and Counter is not equal to 5 While Not blnSuccessfull And counter <> 5 'send thread to sleep for one second, this increments by one System.Threading.Thread.Sleep(counter * 1000) Try 'move file <mergedFileName> to new location describ ...Show All

  • .NET Development Unmanaged DLL

    I have written Dll in Delphi 7.0. Its returning different kind of Data type like Dataset,Tquery and Array. How to I receive this output in C#.net. I am using DLLIMPORT function. while i am returing int,string,Float its working fine. if able please give me sample code. Advance Thanks. Elango.V You won't be able to use unmanaged Delphi class types like Dataset and TQuery with DllImportAttribute. You might have a shot at Array, provided it its binary layout is similar to 'C' arrays. Check out this MSDN library article ... ...Show All

  • Visual C++ error LNK2019: unresolved external symbol _wWinMain@16 referenced in function _wWinMainCRTStartup

    I am getting the following error: error LNK2019: unresolved external symbol _wWinMain@16 referenced in function _wWinMainCRTStartup I am building a .NET application (not console). I am using Unicode and I did change the entry point in project settings to wWinMainCRTStartup. Can anyone suggest what might be wrong Thanks, Michael Check your project's main file, named project .cpp. It will looks something like this: #include "stdafx.h" #include "Form1.h" using namespace WindowsApplication1; [STAThreadAttribute] int main(array<System::String ^> ^args) { // Enabling Windows XP visual effects before any controls are created Application::EnableVisualStyles ...Show All

  • Windows Forms User interface forms programming

    Hey guys... i am programming a user interface on a windows mobile form with c#, and the problem is, i will have much layers ( with panels and stuff ) so sometimes it get's confusing programming with so much things in site... is there a way to make visible and invisible one part while i program another UsingBytes wrote: With a control library you will need to add a referance to the dll of the project in your application. If you just create a user control in your application it will then be visible in your toolbox. Also if you referance the dll of your control library project any user controls you created in that library will then be added to your applications toolbox. Hope this helps, if yo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Build speed with many projects

    I've been working on my first large XNA project and am finding that building my projects takes forever. I have both my Windows and 360 projects in the same solution, and there are 5-6 projects each. Normal setups like this in Visual Studio are a incredibly quick to build on average, but with GSE I notice that it seems to be invoking MSBuild for every project regardless of the solution configuration or dirty state. For example, if I have platform set to x86, my build output window still scrolls the 360 projects, each one taking 1-2 seconds to find out it's not set to build. Worse yet, it does this for every project, every time I build, even if I just made a one line change in an assembly with no dependencies; builds take 25-30 seconds! M ...Show All

  • SQL Server Site-Wide Security Deletion Issue

    I am trying to delete some users from the site-wide Security.  The server is no longer on the same domain as the users I am trying to delete.  The error it gives me is below: The user or group name 'abb\kgreer' is not recognized. (rsUnknownUserName)  Is there another way of deleting the accounts instead of using the Site-wide Security   Please let me know.     ...Show All

  • SQL Server Problem when passing parameter to Execute SQL Task

    Hi! I have a execute sql task to create and drop logins. I want to create/drop the ASPNET login, but I need to pass the domain using a parameter. So I mapped a parameter: Variable name: User::serverName Direction: Input DataType: Varchar Parameter Name:0 and the sql is the following: CREATE LOGIN [ \ASPNET] FROM WINDOWS But I get the error: Executing the query "CREATE LOGIN [ \ASPNET] FROM WINDOWS failed with the following error: "Windows NT user or group ' \ASPNET' not found. Check the name again.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. What am I doing wrong ...Show All

  • Visual Studio 2008 (Pre-release) Working with WCF Service

    I am trying to use the Entity Framework with a WCF service. It is giving me the following exception: System.ArgumentException was unhandled by user code Message="The default entity container name 'eKnowledgeSpaceDBModel.eKnowledgeSpaceDB' is invalid. The required mapping and metadata information could not be found.\r\nParameter name: defaultContainerName" Source="System.Data.Entity" ParamName="defaultContainerName" StackTrace: at System.Data.Objects.ObjectContext.CreateMapConnection(String connectionString, String defaultContainerName) at System.Data.Objects.ObjectContext..ctor(String connectionString, String defaultContainerName) at eKnowledgeSpaceDBModel.eKnowledgeSpaceDB..ctor(String connect ...Show All

  • .NET Development Creating Voice applications with VXML and ASP .NET

    I m about to develop a web application where in i need to create a VXML based on the request send by an IVR enabled server to my webserver (Which inturn receives a request from auser upon dialing a tel no) & send it back the VXML generated by my web application on the basis of the request received to the IVR Server so that it reads out the VXML & make the user listen accordingly. Now my problem is how to create a VXML file in .Net (secially in VB.net) & send it back to the IVR server & specifically how to identify the initial request send by the IVR Server to my application. We are using Voxeo IVR server as our voice recognition platform. I searched for these input on Voxeo Server community forum but couldn't get much ...Show All

  • Visual Basic Question

    Hello, a question please. I finished my solution. I use the DEBUG and RELEASE vars into to choose how I will open a connection. On my PC(development) and on the customer. (there are 2 diferent openings). On my PC (development), I choose the option DEBUG and my program always passed by DEBUG. The question is: To create the installation package I must change the option to RELEASE before of compile the program to choose the another connection Thanks.... NetPochi Instead of using a compiler conditional use: 'If System.Diagnostics.Debugger.IsAttached Then End if It's "dynamic' and senses the prokect mode you have set. You don't have to worry about anything after that. ...Show All

©2008 Software Development Network