nebbioli's Q&A profile
Windows Forms instant message notification like orange blink on taskbar in yahoo
hi all i m new to this forum ... I m tryin to make a messenger and where clients can chat with each other... i wanted to know how to notify a user when an instant message is recieved ... as we have seen in yahoo that if the message window is minimized in the taskbar it starts blinking with blue or orange colour based on ur  ...Show All
SQL Server Cannot create a valid ODBC DSN to SQL Server Express
Hello All, I've just spent the better part of a day trying to configure SQL Express to allow me to create an ODBC connection. When I do create one via Control Panel/Admin/ODBC it tells me that its timing out on the connection (localhost) and the problem is probably that SQL Server Express comes configured NOT to allow remote connections. I've enabled TCP/IP and named pipes, allowed remote connections, enabled the SQL Browser, and just about everything I;ve read in the docs and forums. Am I missing the obvious Kind Regards, Pat. Holy Telemundo, Batman! If I hadn't found this thread, I was seriou ...Show All
Smart Device Development Developing app for custom SDK with VS'05
I created an SDK for my platform with Platform Builder 5. I then installed this SDK. The SDK shows up in embedded visual C++ 4.0 and it shows up in Visual Studio 2005 Beta 2 in the Tools\Options\Device Tools\Devices section. However it does NOT show up when I try to create a project for Win32 Smart Device. How do I target an application at my SDK Note that this is a headless device and it doesn't have .NET and it won't support ActiveSync so I once I get VS'05 to let me target something at it I will need to know how to start up the corecom stuff on my device (or whatever the equivalent of the old cemgrc.exe is now). Cheers, Dave ...Show All
.NET Development An economical way of filling a listbox?
An economical way of filling a listbox I fill an authors listbox using the table adapter. It's one thing with a lookup table with 30 or so rows, but I have hundreds of authors. Above the listbox the user has a choice of adding another author(s). When that form closes the AddAuthors button refills the table adapter. Is there a more economical way of doing this I don't need to move among the authors or delete them. I have a separate form for that. This addform merely fills some textboxes and listboxes then uses an insertquery to add and close. Dennist Can any one help me I ...Show All
SQL Server Strange Problem
Hello, I use a web replication from a web server to a database server. When i launch synchro with IE Synchronisation manager, it works fine but when i try to launch it with SQL Server Agent, i get this error : Date 15/03/2006 17:09:25 Log Job History (GINGKO\SQL2005-TestGestionSIE-ReplGestionSIE-S15208507-Replica_GestionSIE- 0) Step ID 1 Server S15208507 Job Name GINGKO\SQL2005-TestGestionSIE-ReplGestionSIE-S15208507-Replica_GestionSIE- 0 Step Name Run agent. Duration 00:00:03 Sql Severity 0 Sql Message ID 0 Operator Emailed Operator Net sent Operator Paged Retries Attempted 0 Message -XCMDLINE 0 -XCancelEventHandle 000000 ...Show All
Visual C# Newbie needing help with his n's
I'm relatively new to the c sharp language, and i am making a program that works out the number pattern of an nth term equation. If that didn't make sense to you, it dosn't matter, the bit i am stuck on is how do i read the equation the user typed in and work it out. I guessed that i would have to get the equation into a string, then analyse it somehow to pick out the individual commands in it like multiply etc. I have to admit that wasn't very clear, so ill try again for if you didn't get it. 1. the user types into a textbox n+6 2. a string then contains n+6 3. how do i make the program recognise and calculate n+6 and then return t ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Creating a very simple GUI
I am trying to integrate a very simple GUI into the project I am working on. All I need is 3 edit boxes to accept values and a button to execute a command. That's it. I have looked at the tutorials included with DirectX, and the GUI example is simply too complicated...I don't want to include a bunch of files I probably won't even need. What's the easiest way to implement a GUI like the one I am describing (By the way , I am writing this in C++.) thanks in advance. >What is wrong with the sample code provided in the SDK (Custom UI) It can't be used unless you use the whole of the framework. There's ...Show All
Visual Basic VB6 to VB>Net Converts
Are there any books that explain conversion between the two languages The biggest problem that I see with any migration tool, VB6->VB.NET or otherwise, is that it won't utilize new features of the environment or new class libraries. Let's say you implemented your own hashtable algorithm in VB6. No migration tool, no matter how smart, is going to say, "Hey, you're using a hashtable. We'll just drop in the System.Collections.Hashtable instead!" (If it could, I would think that the dev team had invested its efforts in the wrong place.) In my opinion, if you're going to take the time to migrate the code, you probably want to revisit y ...Show All
Visual Studio Express Editions Install Problems
I removed previous versions of VS express editions as stated. I first tried to install VC++ with the library and sql. I first got the 2908 error then the detailed 1935 error. I left Microsoft .Net 1.1 and it's hotfix installed. What do I do to correct this Thank you for trying out the Visual Studio Express Editions. Could you try running the cleanup tool at http://go.microsoft.com/fwlink/ LinkID=47598 You can then reinstall the latest RTM version from http://msdn.microsoft.com/vstudio/express/default.aspx . Sandhya ...Show All
Visual Studio Express Editions Mdiparent - Is this bug solved?
I've an mdiParent (maximized) with X children (maximized). The mdiParent contains a menustrip. I load the children into the parent. The first time when I load a child into the parent, the menustrip hides a part of the child. When I minimize the parent and then maximize it, the position of the child is correct (below the menustrip). The same problem: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=180826&SiteID=1 Please do not post duplicate posts. If your question has not received any replies it is most likely because nobody that can give you an answer has replied to it yet. Have some patience. Your other p ...Show All
Windows Forms About datagrid
Hi, I have a table bl_game(magame,tengame,gia,ghichu,kichhoat). In my form, I have a datagrid dgrGame. DataSet ds is result of query "select * from bl_game" But in datagrid, I want to only display to field magame and tengame. Here is my code. private void frmGame_Load(object sender, System.EventArgs e) { & ...Show All
Visual Basic AnalogTVTuningSpace and MSVidCtl
I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as described here: http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/directX/htm/hostingthevideocontrolinavisualbasicform.asp and here: http://msdn.micro ...Show All
Visual C# Define Name in Excel through C# code
Hello, I have a code to import Excel Sheet into an .NET application through OLEDB connectivity provided if my excel sheet is defined as a table with a name by going through Insert-->Define-->Name. But I want to automate this option through code by simply selecting the excel sheet and it would define the range and then import the data. Has any one ever done this before The reason I want this to be automatted is, we have hundreds of excel sheets to import and it is really hard for an end user to define the name and then import them. I would appreciate if any of you post ...Show All
Windows Forms ByVal acts as byRef?
I have a class I've built which takes a Collection ByVal as one of the parameters in its constructor and returns a collection as a result of ones of its methods. The problem I'm having is that I want to pass one collection in and return it to another collection variable. I can do this in theory and in code but for some reason ...Show All
Visual Studio Team System Checking in/out project does not check in/out all files as expected
I am noticing that in a couple of our projects when I check in or out the entire project not all items are checked in/out as expected. This behavior does not happen with all projects. This seems to happen when I check in/out these projects from within Solution Explorer when right clicking the project and choosing "Check in" or "Check out for Edit..." We are using Team Server Beta 3 Refresh with Visual Studio .NET 2005 RTM. Does anyone know why this happens or how to fix this Thanks. Have you ever excluded this file from the project before Can you post the contents of your .vspscc file for this project John ...Show All
