Mikymoto's Q&A profile
Smart Device Development Transparent listbox
hi all, Is there any way to have transparent list box coz i want to implement gradient style in that according to the theme selected.please help needed Hi No, not using the standard .NET CF controls provided out of the box. The OpenNETCF.org SDF provides 'owner draw' capable list box controls. By using these controls you should be able to implement your transparent list box. Michael ...Show All
Game Technologies: DirectX, XNA, XACT, etc. XNA Download
How big will the file be I'm rumming on Dial-up and don't want ot be waiting for hours trying to download it. Don't worry, Supernerd. i'll have my limbless brother drag the corpse of a Pony Express rider carrying the beta on CD through the desert with his teeth. It should get to you faster than dial-up. - MrSock ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Selling Games on Xbox Live Arcade
Hello, I am currently putting a team together to create new Xbox Live Arcade games. They will be using the XNA development tool and the projects will be financed by myself. How long will it be untill Indy developers can sell their games online in order to re-coup some of the money and produce additional games Any help is appreciated. Regards Ian vhold wrote: It kinda smells of how big record labels treat small artists. I know that's being conspiratorially minded, but you have to admit that the lack of information in this department has a somewhat purposeful feeling. Indeed, that is how the game industry has worked in the past. Our vision with XNA Game Studio Express is to help change that. HOWEVER: The infrastructure ...Show All
Visual Studio Team System can not delete pagefile.sys
Hi Guys, I don't know if this is the right place to post this issue. Please help. I have done some tweaking and reconfigured pagefile of our server. Previouly, the pagefile was distributed to different drives (6 drives in all). Now, I stored the pagefile on a single drive. After doing this, I noticed that the pagefile from the other drives still exist and I can't delete them. I want to delete this file on the other drives so I can free up some space but I couldn't. Please Help. Thanks, Larry ...Show All
SQL Server Which download has the...
Which download has the application whose shortcut is placed with the Management Studio I installed it once, but the shortcut couldn't find the target. hi, Alexzero77 wrote: What's the target file's name Is the application basically the IDE of Visual Studio 2005 that comes with one of the downloads on my system it's "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe" regards ...Show All
SQL Server An attempt to attach an auto-named database for file......
I've read through all the posts in this fourm that are related to the problem I'm getting with this error message on my main form, but none of the fixes seen to solve the problem. So I hope someone can get me pointed in the right direction. I'm running visual studio 2005 professional, and SQL Server 2005 Express Edition and this is a desktop application. I added the db file to the solution with the Add New Data Source wizard, I can create the datasets and preview the data correctly. An attempt to attach an auto-named database for file C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\dbInventory.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share. When I run ...Show All
Windows Forms Microsoft Forms Application 2003 .NET how to 'read only' view a text file?
I am new to this development environment, though not new to C++ or the Windows IDE. My task is to develop an ASCII file viewer. I am having difficulty finding an object that allows me to display the contents of an ascii file in 'read only' format in a Window. These files can be very large. I need to be able to scroll through the lines, and have a Mouse Click event tell me which line a user wants to see more information about. Thanks for your assistance. Steve The listview, richtextbox or multiline text boxes - can I setup a stream to pipe the ascii lines from my text file directly to them I need to be able to display text from files that may have tens of thousands of lin ...Show All
.NET Development Fill dataset
Hi! I need to fill a dataset from lines of text that I pull from a tab-delimited text file. I think I need to first create a datatable to define what gets loaded into the dataset. Eventually, this data will have to go into a pre-existing database. How do I iterate each line from the streamreader into my datatable Thanks! sure. this will be tricky, I guess you can do a split, something like: string[] firstRowOfData = theStreamReader.ReadLine().Split(new string[] { "," }, StringSplitOptions.None); this will split the current line string, into several items in the array (think of it like columns I guess) and the point of splitting will be the comma "," - which can be replaced by whatever identifie ...Show All
.NET Development Reading data from networkstream
I normally read data like this, in a new thread on a while true condition while ( true ) { byte [] someData = new byte [Int16.MaxValue]; //ok so thats overkill! int theDataRead = 0; theDataRead = this.theNetworkStream.Read(someData, 0, someData.Length); while (this.theNetworkStream.DataAvailable) { theDataRead += this.theNetworkStream.Read(someData, theDataRead, someData.Length - theDataRead); } if (theDataRead > 0) { this.theDataManager.DoHandleData(someData, theDataRead); } } question is, am I doing it correctly or is there no n ...Show All
Visual Basic item check delay, how to overcome it
I'm using the code below to change a checkbox's checked value depending on whether or not certain items are checked in a checkedlistbox. However, there is a delay; the checkbox's value is not changed until after a second click on the checkedlistbox item. Is there another way I can do this Private Sub clstFactors_ItemCheck( ByVal sender As Object , ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles clstFactors.ItemCheck If clstFactors.CheckedItems.Contains( CheckedText1 ) Or _ clstFactors.CheckedItems.Contains( CheckedText2 ) Then chkTwoSources.Checked = True Else chkTwoSources.Checked = False End If End Sub If I understand the text in http ...Show All
Visual C# will the bug fixes available for connect.microsoft.com users ?
Hi, I am one of the connect users of microsoft products. Will the bux fixes/ the service packs will be available for the connect users it will be very useful if we get intermediate fixes available. Thank You Mohan Raj K. Mohanraj_k wrote: I mentioned the hot fixes of the products like visual studio and it's service packs if any . Sorry. I thought this forum would be for all products also. I don't see where you mentioned Visual Studio. This forum is just about bug reports for this website. Are you interested in whether hot fixes and service packs will be available for Visual Studio If you're interested strictly in Visual Studio, I can move this thread to a different forum. Hot fixes aren't ge ...Show All
Visual Studio Tools for Office KB908002 bootstrapper questions
Hi; I am trying to figure out the KB908002 bootstrapper and have a couple of questions. This is all based on the download at http://support.microsoft.com/default.aspx/kb/908002 This includes the files for both KB908002 and KB907417 - correct This puts the two msi and one exe file in the bootstrapper - there is no way to have it download them only if needed - correct If there is a way to have them downloaded only if needed - how do we do that Granted they are only 1/2 a meg but all the various hotfixes, PIAs, etc that are sometimes needed add up. The product.xml can be used to add this using GenerateBootstrapper in a MSBuild project - correct Is there anything special if it is used this way instead of through Vis ...Show All
Visual Studio Express Editions Get data from RFID reader + RS232
Hello, I've an RFID reader which is connected with my local pc. I'm trying to get the data from the tags and put them in a database. See code below how I'am connected to the COM port but I can't get data of it... what do I do wrong Thanks Imports OpenNETCF.IO.Serial Public Class Form1 Public WithEvents SerialPort As New OpenNETCF.IO.Serial.Port( "COM1" ) Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click With SerialPort .PortName = "COM1:" '.RThreshold = 1 .Settings.BaudRate = OpenNETCF.IO.Serial.BaudRates.CBR_38400 .Settings.ByteSize = 8 .Settings.Parity = OpenNETCF.IO.Serial.Parity.even .Set ...Show All
Software Development for Windows Vista Filter Development Fram Scratch
Hi. Im developing transform filter without help of BaseClasses to learn core internals of directshow. In Debug mode, in QueryPinInfo of inputpin -> QueryInterface of base filter -> Unlock method of base filter (criticalsection) before method ends (i think in stack unwind, cleaning), im getting "access violation" error when i add my filter into graphedit. I know problem solving is so hard with this small info, but if you give me advice to solve this error, i will be very glad. thankx all. My call stack like that: 1. graphedt.exe!01016327() (error) 2. graphedt.exe!010128ff() 3. FilterTemplate.ax!CCritSec::Unlock() Line 998 + 0xc C++ 4. FilterTemplate.ax!CAutoLock::~CAutoLock() Line 102 C++ > FilterTemplate.ax!BaseFi ...Show All
Visual Studio Visual Studio 2005 SP1 is now available!
Visual Studio 2005 SP1 has now shipped and is available for download here: http://msdn.microsoft.com/vstudio/support/vs2005sp1/default.aspx I'd like to take a moment to thank everyone for using the ReportViewer controls, for helping to answer questions in this forum, and for bringing issues to our attention. I have enjoyed answering questions in this forum over the last year and look forward to continuing. While we haven't been able to respond to every question posted on this forum, I can assure you that we do read all of them and use the feedback to help plan and prioritize future releases. Below is a partial list of fixes that are included in the ReportViewer controls in Visual Studio 2005 SP1. Fixed several issues around A4 ...Show All
