Fillipe246466's Q&A profile
Windows Forms restrict Cell Navigation to certain column
I have got a grid with CheckBoxColumn and TextBoxColumn. What I need is to restrict the cell navigation to TextBoxColumn field. Can any one help me. Reagrd Anil Well, I don't think you'd want it to be readonly if it's a checkbox. Obviously it's a checkbox for a reason and needs user input. I think what's being asked here is how to stop the user from selecting the cell using the TAB key, arrow keys, ENTER, etc... to move around the grid. Let me know if I'm on the right track. ...Show All
.NET Development Calculated column
Hi Folks, I have a calculated column in a dataset in my VB 2005 app (added to data set, but not in database) that uses values from 2 other columns multiplyed, and displays that number for the user. Quantity(dec, 18) * Rate(dec,18) = caluculated column 'Total' (dec,18) When ever the user places a decimal number in the quantity column, the value rounds up to the next whole number -- I do not want the number round to the next whole, and also need to limit the results to 2 decimal places. I first thought this was a control problem in a data grid -- it wasn't; I tried seperate text box controls, but with the same results - numbers round up to the next whole. The only other place I could have this problem is in the data set calculate ...Show All
.NET Development PKCS #8 DER Key File
Hi everyone Im developing an application for Digital Invoices. Our goverment gave us for developing/testing purposes a certificate, a private key file and a password for private key file. I can open the certificate using X509 in .NET 2.0. The problem is the private key needed for RSA encryption because the certificate doesnt include the private key and its provided separated in a file that is PKCS #8 DER and password protected (supossed to use the password given). I dont know/found how to open the key file and use it as RSAParameters. Please help!!! Thanks in advance... que tal ing.... ando buscando alguien que me desarrolle una aplicacion para justamente generar el sello digital para e ...Show All
Visual Studio Express Editions Recording wav's
Does anyone know how to record a wav using vb.net Cant't find any help on the subject. This article might be helpful... ...Show All
SQL Server How to call proc on linked Oracle server
Sorry if this is very stupid question, but i've spent too long searching for the answer: I have a linked Oracle server set up for RPC in SQL server 9 db. How do I call it I've tried this, but gives Unspecified error: " OLE DB provider "OraOLEDB.Oracle" for linked server "SANSORA1" returned message "Unspecified error". " From this: declare @UserName char ( 20 ) -- Current Username declare @Password varchar ( 20 ) -- Current Password declare @PasswordNew varchar ( 20 ) -- New Password declare @PasswordCfm varchar ( 20 ) -- Confirm New Password set @UserName = '900878' set @Password = '900878' set @PasswordNew = '777' set @Pa ...Show All
Visual C++ Problems with C++/CLI connecting using ADO
Hi, I try to develop a software that can insert value to Microsoft Access *.mdb file using Visual C++ 2005 windows form. My code is like this: ADODB::ConnectionClass ^ conADO = gcnew ADODB::ConnectionClass; String ^ strCreate; Object ^obj = gcnew Object; conADO->Open(L "Provider=Microsoft.Jet.OLEDB.4.0;Data Source='C:\\Data.mdb'" , L "Admin" ,L "123" ,-1); After i execute the program then i got this error message. "System.Runtime.InteropServices.COMException' occurred in ADO.exe Additional information: Cannot start your application. The workgroup information file is missing or opened exclusively by another user. The funny thing is if my access file does not ha ...Show All
Visual C# Best way to get around not being able to dynamically cast?
I'm trying to do something where it would be nice to be able to dynamically cast. I know this isn't possible in C# so I'm trying to figure out the best way around this. Basically the setup is I have a 'Segment' class. Then a have a bunch of classes that inherit from the 'Segment' class. Then I have a Segment collection class that has an ArrayList that stores different 'Segment's. What I want to be able to do is have a method that takes in a Type (which will be one of the classes that inherits from 'Segment') and have it return an array of Segments of that type. Something like this: private ArrayList Segmants; public Segment[] GetSegmants(Type reqType) { ArrayList thisList = new ArrayList(); &nbs ...Show All
Windows Networking Development Silly Window Syndrome, how to avoid in C++ code?
I having a problem with Silly Window Syndrome. My program is communicate with TCP on sockets, but it "hangs" after a while. When I used Etherreal I figured out the problem with SWS. But I cant find any solution on the problem. I have loocking for some sample code or practical solutions, but no good result. There is a lot of info, but I cant read out what to do. For instance this: RCV.BUFF - RCV.USER - RCV.WND >= min( Fr * RCV.BUFF, Eff.snd.MSS ) Anybody familiar with this Or have some c++ samples ...Show All
Windows Live Developer Forums my bot, can anybody here help me with my not {simple problem}
Hi everybody ..! well, I am trying to build my own bot (spleak, smarterchild .. etc) but I had faced a problem which is: when I was trying to start the SWHICHBOARD .. it just did not work plz .. I waiting ,..! The starting question here would be which of the licensed SDK's are you using to build your bot Based on that I'd 1st connect with that companies support forum. When you get it up and going, you should be sure to provision it out on gallery and then be sure to submit it to Robot Invaders contest. Cheers, Todd Biggs, Windows Live ...Show All
Visual C++ Build successful but cannot run helloworld?
Hi, Any help would be aprreciated. I am a beginner trying to run a c++ helloworld project I did on visual studio 2005 as win32 console project. I am using a centrino laptop is that is useful info to solve this. I have 2 questions. Question 1: Why can I only build successfully if I put "void" in front of the main and inside the brackets I see in tutorials that people can build without the "void"s. Question 2: Why even after building successfully I press F5, the program still cannot run and I get the error messages: 'Myprogram.exe': Loaded 'C:\Documents and Settings\Manlee Wan\My Documents\Visual Studio 2005\Projects\MahJong\debug\MahJong.exe', Symbols loaded. 'Myprogram.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', N ...Show All
Visual Studio Express Editions Unhandled win32 exception
Since I installed (all) Visual Studio Express 2005 modules, I have been getting "An unhandled win32 exception...No installed debugger has Just-In-Time debugging enabled." form Microsoft Word, Excel, Outlook, and newly installed games. Reviewing everything I could in the Microsoft search list, I find that the debugger is not available for the Express edition. In desperation, I unintstalled all modules of Visual Studio Express 2005, VB, VC++, VC#, J#, SQL Server...ASP.NET 2.0 I am still getting the errors. I checked and found many references to Visual Studio still in the registry. Any thoughts I tried both of your recommendations, however when I attpempt to open any documen ...Show All
Visual C++ Interacting with Outlook
I want to develop a code that will replace the From tag in Outlook with an icon representing the entity that sent the mail. Is it posssible If yes, how to do it Please direct this question to http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.win32.programmer.messaging&lang=en&cr=US . ...Show All
SQL Server What SSIS components must be loaded onto the server?
What SSIS components must be loaded onto the server To run an SSIS ETL program, exactly what executable, components, programs, etc. must reside on the server that will be running the program. Our developers write an test their ETL programs locally, on their desktops or laptops, but must upload the scripts to the production server for execution. Obviously, they are not going load Visual Studio and SQL 2005, etc. up to the server just to run the scripts (tho SQL 2005 may be on the same box as one of the DB engines used for ETL). Any info would be appreciated. hi Craig, I have installed the SQL Server 2005 Express Advance edition on Windows 2003 Standard Server. I did the full installation i.e., installed all component ...Show All
Visual Studio Filed to import .ACF files to Access 2003
I use Visual Source safe v6.0 for developing Access 2003 applications. I can not get Forms from Source Safe for one of the Access database. The error message is "Filed to import file 'c:\~.ACF' into Microsoft Access" Does anyone know how to fix this problem It sounds like your ACF files might be corrupted. Can you run Analyze on the VSS database Also, please check the file properties and verify whether it is listed as "binary" or "text". ...Show All
Visual Studio Changing Debug Web Application
Strage question. I installed Firefox a while ago but have since uninstalled it in favour of IE7 but now I can't debug ASP.NET applications in Visual Studio 2005. I just wondered where I could find the setting for the web application to run so I can change it from Firefox to IE. Cheers this usually isnt a thing set in the browser - what problems are you having when you can't debug Also really, any ASP.NET related questions should be posted over at the appropriate ASP.NET forums: http://forums.asp.net ...Show All
