bbJosh's Q&A profile
Visual Basic Code Help!!!!
Hi!, I am used to Visual Basic 6.0, but I am starting to look at Visual Basic 2005 Express Beta 2. I have this code from Visual Basic 6.0 that Visual Basic 2005 will not recognize. There are more of the same thing, but I need help what to do so I can fix the rest of the program. These are some of the codes: frmRegister.UserInfo.EOF frmRegister.UserInfo.Recordset What is the right code for Visual Basic 2005 Thanks ...Show All
Windows Forms Transactions?
Hi I couldn't found something about transaction (ado.net, dtc). I expected, that I can find something like this in this application. Why are transactions not used Or did I missed them Regards SeeSharp you do the transaction yourself outside of the ...Show All
SQL Server a lot of exception were output when I debug
when I debug my appliction with .netcf , the output panel display a lot of exception as shown the following, But it still does work , just very slow. What's matter 'MobileCard.exe' (Managed): Loaded 'C:\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\Debugger\BCL\mscorlib.dll', No symbols loaded. 'MobileCard.exe' (Managed): Loaded 'c:\documents and settings\pan\桌面\mobilecard\mobilecard\bin\release\MobileC ...Show All
Visual Studio Add new file type for highlighting and code folding
Hi Is it possible to add a new file type (old obscure source code) for syntax highlighting and code folding, and specify keywords and start/stop markers for the folding in VS.Net 2005 regards Carl Carl, Probably the easiest way to do this is to create a language service using the VS SDK. The Beta2 SDK is up now here ( http://msdn.microsoft.com/vstudio/extend/SDKDownload/ ) now and the Sept. CTP of the ...Show All
Windows Forms Refreshing Connection to SQL Server
When I add tables, store procedures or even change parameters in an existing store procedure in SQL Server 2000, those changes are not seen by Visual Studio 2003 if I have it already opened. For example, a new table is not visible in the Q ...Show All
SQL Server Error while registering assembly that uses ActiveX wrapper stdole
> Hi, > > I wrote a dummy Stored Procedure in C#, registered it as assembly, > called the SP and everthing was fine (VS2005 C# Express) > Then I implemeted functionality into the dummy SP that requires a > third party ActiveX. It is integrated in my project by the reference > to "stdole". After compiling, I got three DLL: > > ...Show All
Smart Device Development Error when building ImageList!
In a smartphone 2003 project in VS2005, I assigned a imagelist with image(s) to a listview and got the exception: "NotSupportedException". All codes are auto generated by the IDE. How to solve this codes: ' 'ListView1 ' Me.ListView1.FullRowSelect = True Me.ListView1.Location = New System.Drawing.Point(0, 0) Me.ListView1.Size = New System.Drawing.Size(176, 180) Me.ListView1.SmallImag ...Show All
Game Technologies: DirectX, XNA, XACT, etc. May seem like a silly question... (DirectX logo)
What are the terms for using the DirectX logo in a game Been looking all over without finding an answer. In my case I'd like to display it as an icon while performing initialization and during configuration. I had the same question just recently, and emailed our Friendly Community Manager :), in doing so I got a really good and helpful answer. What I found out is that there is no official logo bundles available, ...Show All
.NET Development SSL on TCP Socket, how in .NET 1.1?
Is there a way, using intrinsic .NET framework functionality, to open a TCP connection over an SSL channel I'd rather not get into buying libraries, etc. Java has the javax.net.ssl.* objects, and I'm not finding an equivalent in .NET. I looked all over the Internet, but nowhere a pointer/solution can be found. Please note this is a socket connection, not an HTTPS connection. Also, it's about .NET version 1.1. Any hints/tips/rem ...Show All
Visual C++ circular reference in parent/child classes
I have been trying to understand some code that another guy wrote, and though his code compiles and runs, it seems like it should never have compiled. He has 2 classes. One class is basically the parent, and it includes a pointer to the child it creates. As the child is being created, the parent passes the constructor a "this" pointer, so the child can later access variables in the parent. When I try to duplicate this logic, ...Show All
SQL Server Enterprise Manager Error
When I load up my enterprise manager I get an error: Microsoft SQL-DMO Error 126: General Error So I have no idea what to do, could someone please help me I found the solution: I had to run this command: C:\Regsvr32 Sqldmo.dll on the server that the enterprise manager was on. Then It all worked fine, I used this article: http://support.microsoft.com/ id=248241 For help Cheers ...Show All
Visual C# compile fast, build _sloooow_
when i compile one of the projects in my solution, the 'compile' time is very short: the 'compile complete' message appears almost emmediately. (this is with the public beta of vs2005) however, afterwards, the ide will begin to do things on the hard drive for up to 2 minutes (each time !). after that, the 'build succeeded' message appears. what is it doing in this time what can i do against that this makes it almost impossible to work ...Show All
.NET Development Need help with editing XML files in ASP.NET 2
Hi everybody I have many well working web forms in ASP.NET1, which work with XML files. Most of the web forms use SORT, EDIT, DELETE, UPDATE etc. Recently I Installed framework 2 and thought it will make my life easier with XML. There is so much written on GridView and XMLDatasource, that we will not need to write code for edit and so on, but unfortunately I cannot find out how. I cannot even bind my xml files to XMLDatasource as i have then ...Show All
SQL Server How do I access the lowest level data?
OK, this feels like a dumb question... but how do I access the lowest-level data in the cube I.E., before it is aggregated What I'm trying to do is find all of the rows where an amount is > 1000. However, when I create a calculated member or constrain in any way, it compares to the aggregated amount. I have tried a few ways, but they all seem to act only on the aggregated data. Thoughts BTW, the S ...Show All
.NET Development IOException when SerialPort.Open
Hi I am trying to open serialport on COM1 so that I can print some messages to it for debugging purposes. When I invoke this function below, it does list COM1 and says Port is Closed. But raises IOException at port.Open(). private void Func() { SerialPort port = new SerialPort ( "COM1" ,115200, Parity .None); //this works string [] ports = SerialPort .GetPortNames(); foreach ( string str in p ...Show All
