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

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

codekaizen

Member List

brother14th
LLIAMAH
OmegaMan
Ruchits
Matt354245
Kiwi Ranger
Louis Y
bennett1016
Felicity
LORDTEK
folen
Kosmo007
Zulbaric
guilherme mendes
DaGlow
mwoehlke
jiggyswift
boston123
CKa
Mr_Z
Only Title

codekaizen's Q&A profile

  • SQL Server Dedicated Administrator Connection

    Hi: I am trying to connect to my local instance of SQL Server 2005 using Dedicated Administrator Connection by using Admin:Servername\Instancename and I end up with the following error. Dedicated administrator connections are not supported. I enabled the connection in the SQL Configuration Manager and still get the error. Any ideas on how to resolve this error . Note: SQL Browser service is running. Thanks Ak Hi OJ: Thanks for your reply. This is what my SQL Server log says. Date 7/7/2006 4:56:11 PM Log SQL Server (Current - 7/12/2006 12:00:00 AM) Source Server Message Dedicated admin connection support was established for listening remotely on port 17 ...Show All

  • Software Development for Windows Vista transforming all input to RGB24 type

    Hi! I've been looking through many examples and forums... I think I need something not too complicated, but I haven't figured what to do. At the moment my Graph is: Video Input (USB camera or video card on PC) | Sample Grabber (with callback that provides RGB24 format easily transferred to BMP) | Null Renderer I now have to use many other USB cameras that do not necessarily output RGB24 type video. I need to add a Transform Filter (DV Video Decoder ) that will translate any Video type that's not RGB24 into RGB24 so that the Sample Grabber will continue working OK. I know it should be simple - but I'm a "newbie" and have no idea to do this. Any idea or sample, etc. will ...Show All

  • Software Development for Windows Vista conime.exe

    Hi Oliver, Could you please refer to the thread below http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1097952&SiteID=1&mode=1 Thanks for your help and answer! Vian The conime.exe is located in "C:\WINDOWS\system32", and the version number is "6.0.5600.16384". I work in Nortel, who is the partner of Microsoft, if this doesn't work, I will contact the partner support representative. Thanks for your information! Thanks, Vian ...Show All

  • .NET Development MySql & typed dataset

    Hi may be somebody know how I can use typed dataset with MySql database as in MSSql i want create my dataobject with wizard. tableadapter for generating sode for stored procedures and queries. please help me thanx! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Bug in XACT Tool?

    Hi, I think I have found a bug in the XACT tool (October 2006 version). Do this: add a new wav to a wave bank move the wav file to a different directory on your hard drive try to build the xact project (or try to audition the wav) XACT tool will now complain that the wav file cannot be found and ask you to enter a new path clear the path, i.e. leave the edit box empty and press ok XACT tool will now "hang" -- David I'm not sure if it's a bug but thought I'd add in here as it's semi-related and figured I wouldn't worry bout a new thread. I just spent about 2 hours getting constant index out of range errors when trying to switch between various wavs in my bank as ...Show All

  • SQL Server Tsql script to connect to another database

    Hi. I am in database db1. in the middle of a stored procedure i want to connect to database @db2 (it is a variable) and i want to execute some commands in it. How is it possible to do that in t-sql Thanks Hi, I am also having the same problem. This is fine if both the databases are having the same authentication. But what if the other database is in another server with different authentication. If i am not wrong there is a connect command in ORACLE to connect to another database from the current one. syntax: - connect username/password. I want exactly the same using TSQL ...Show All

  • SQL Server Upload a Sql website to a host server

    Hi I have built a site in Visual Web developer Express 2005. it works fine on my local machine but when I load it up to the server I get the following error message: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) My connectionstring in my web config file: < add name = " ConnectionString " connectionString = " Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True " providerName ...Show All

  • SQL Server Keep package alive forever

    Hi there, Does anyone know how i can keep an ssis package used for real time reporting alive no matter the amount of errors it gets So for instance the server im streaming to is shutdown for maintenance, and the connection dies, its needs to just keep re-trying. In other words the maximum error count is infinite. i dont just want to set max err count high, i want it out of the picture all together. Thanks replication should be able to catch up with that change. anyway. just stay for more suggestions. how about scheduling the package to run regularly using a Sql jobs or windows task scheduler ...Show All

  • Visual Studio Express Editions Error: Shortcut Activation Over Network is not Allowed

    I published a program on a server so that everyone on my network can access the setup file and install it on their computer. The setup prgoram workes great by installing the program but the only way I can open the program is by going to the start menu and clicking on it from there. If I create a shortcut anywhere else, I get the error message "Shortcut Activation Over Network is not Allowed". How do I allow it Or can I publish the program and put the .exe file somewhere else Or should I not publish it, but rather do something different More specifically, my error message says: Request for the permission of type  'System.Security>permissions.FileIOPermission, mscorlib, ver ...Show All

  • Visual C# video buffer

    Hi.. im developping a client-server application in which i stream video.. i take 5 frames every second and send them to the server like this.. private void timer_snap_Tick(object sender, EventArgs e) { byte[] bpic; MemoryStream ms = new MemoryStream(); pictureBox_snapshot.Image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg); bpic = ms.ToArray(); if(bpic.Length <5001 && bpic.Length >800) m_VideoSocket.Send(bpic); ms.Close(); ms.Dispose(); } Two possible reasons I can think of. You're using a UDP socket (correct for streaming video) and you're losing packets. More likely: a synchronous Send() over the Internet is going to be slow; you're losin ...Show All

  • .NET Development How do I create a nested class with CodeDom?

    I can create an assembly ok with classes in a namespace 'spaceX'; e.g. 'spaceX.classY', but I need a nested class 'spaceX.classY.classZ' I create the CodeTypeDeclaration with the name 'classZ' (I tried 'classY.classZ' and it will not compile), then set the TypeAttributes to NestedPublic. I think I need to add this to the namespace 'spaceX.classY' - but when I search in CompileUnit.Namespaces for 'spaceX.classY' it is not found If I add 'spaceX.classY' as a new namespace - there is an error on compiling 'namespace already defined'! So how do I create a nested class using CodeDom (this was so easy using Reflection!) - Tracey You need to associate your nested class with its parent class. A ty ...Show All

  • Visual Studio Express Editions Can I create a win32DLL project with Express Edition?

    Hi, Can I create a win32DLL project with Express Edition - Arse Yes. Create an empty project, configure it, and start writing your DllMain. I've used VC++ Express on my laptop to write DLLs. Can't remember having to do anything special to enable it. ...Show All

  • Visual C# Enumerator on a linked list

    Hello everyone! I'm trying to get an Enumerator to work on a linked list but I'm not sure how to do it. MSDN documentation says that at first the enumerator should be positioned before the first element/node in the collection. Any tips on how to do that in a linked list I thought about setting it to null but then when the MoveNext() method is called I can't do current = current.Next since current is set to null. Should I save the firstNode, then in the MoveNext check if current is null and then do current = firstNode. Seems a little bit messy. Any tips Thanks in advance! -Marlun Hello and thanks again! =) I see why your version is better, I've not worked with this before so thanks! How can an Iterator o ...Show All

  • .NET Development SQLDataAdapter update to multiple tables through a single stored procedure

    Is this at all possible I've got a dataset with 5 related tables, and an elegant solution would be to make one call to update and write to all the tables through a single stored procedure. The problem seems to be mapping the sourceColumn parameter in the slqparameter - it would be great if the column could be defined as <tablename>.<columnname>, or the parameter could be associated with a table directly. Is anyone aware of a solution to this A data adapter would do this in one line of code, it make some overhead but takes care of a lot of posible coding errors and does not care about you changing table structures in future releases. public int updateDataset( S ...Show All

  • Visual Studio Reading files from Vss 6.0 to a asp.net 2.0 app in C#

    Hi, I am working on a asp.net 2.0 app in C#. I have requirement to show the files in a datagrid and when the user clicks on a certain icon then open it in the IE. Please let me know how to access VSS database at runtime and fetch data from it. Regards -Tej ...Show All

©2008 Software Development Network