GABLOOM's Q&A profile
Visual Studio Express Editions Form 2...... in Form 1 only
How can I make from Form1 to Form2 on buttom click WITHOUT NEW WINDOWS I want all form in only one form. Please help thank you so much! Yes you can. One way is to place a panel in the main form which has it Dock property set to Fill. Then, when you create a new form, you can set the Panel as it's parent and show the form inside the panel. Dim frm As New Form2 frm.TopLevel = False frm.Parent = Panel1 frm.Show() 'The form will be inside the panel. You might wish to set the form's border style to None. ...Show All
Microsoft ISV Community Center Forums MSDN Download
Hi, I found out at microsoft download site that the latest version of MSDN could be downloaded free of cost. Has any body tried downloading the image file and is the MSDN fully functional Or is it an evaluated version which will expire after some days Please find the link to the page below. http://www.microsoft.com/downloads/details.aspx familyid=94596AF5-CC58-45AF-A14B-DF627A31E783&displaylang=en You might be able to find out for sure by emailing the MSDN Subscription team. Here's a contact form: http://blogs.msdn.com/msdnsubscriptions/contact.aspx -brenda (ISV Buddy Team) ...Show All
Visual Studio 2008 (Pre-release) Webcam Preview / Streaming
Hi all. Been looking around with the aim of writing an app that can both preview and stream webcam video, but appear to have fallen at the first hurdle. All the information I can find seems to be older, using either native calls or DirectShow to perform this, but I've been told that the framework now supports using a WebCam. Anyone got any information on how to use a webcam preview, and maybe how to go about streaming it over a network Thanks! I think implementing this as you describe would be very complex. A fun weekend project sounds optimistic. Even if you did, you would have several limitations: 1. Lack of videocard acceleration (alternatively you could do the video processing on the card and t ...Show All
SQL Server Exec SQL Task (stored procedures)
Hi, Can anyone tell me how to pass parameters from one exec sql task to other ... (I used stored proc in 1st exec sql task) and passed input parameter (default value set using a variable A) and stored the output parameter value in another variable B. In the 2nd exec sql task , I passed the output param ( value of B) and doing insert into table xyz... I get errors (in passing int and string values) . I tried using ole-db as well as ado.net. Kindly give sample example. Thanks, ...Show All
Visual C++ R
Below are the codes that I found in a book to open a Graphics window using OpenGL APIs with the SDK of Visual C++ ... BUT... _____________________________________________________________ LOOK BELOW... //---------------------------------------------------------------------------- int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE, LPSTR acArgument, int ) { // #50 // register the window class static char s_acWindowClass[] = "Wild Magic Application" ; WNDCLASS wc; wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; wc.lpfnWndProc = WinProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = hInstance; wc.hIcon = LoadIcon(NULL,IDI_APPLICATION); wc.hCursor = LoadCur ...Show All
Windows Live Developer Forums Any "Team BritBot" winners?
The Team BritBot competition ended 2 weeks ago, and according to the rules, the winners should be notified by e-mail: "18. Prize winners will be notified by e-mail by 15th September, 2006." I didn't participate (I'm not from the UK unfortunatly) so I don't know if the e-mails were indeed send out. Any participants here, or maybe even winners I am pleased to announce that we (Inside C) were contacted by Thin Martian, the agency who ran the site britbot.co.uk on behalf of Microsoft UK, who told us that InsideMessenger (chat@insidemessenger.com) won the Britbot competition. Thanks for all the support / kind comments! Riaan @ Inside C Creators of InsideMessenger ...Show All
Internet Explorer Development IE7 - File Not Found ieframe.dll\1
Hello, After upgrading to IE7, all of my programs with the "Microsoft Internet Controls" (i.e. Webbrowser) are breaking when I load them in code (compiled still works though). I get the following error: "File Not found 'C:\Windows\system32\ieframe.dll\1' However, if i look in my references, all I can find that is there is the reference to shdocvw.dll, no ieframe dll. If I open a new project and add the controls, then I get the same error. To me there is something broken between the two. The strange thing is, it worked fine yesterday. I don't have my computer set to do automatic updates and I didn't do any updates last night. Anyone else having this issue Regards, Ryan Sam ...Show All
Visual Studio Team System Response time does not match coded timer
I have built a unit test that calls a DLL that calls a webservice. We need to do load testing on this service sending multiple requests with different data and we get a response back. We really want to monitor the response time as we do not want it to impact the site itself. I added a simple time check in the code (DateTime before and after and get a TimeSpan between them). My timer is showing responses of up to 8.5 seconds but the Load tester is showing a max of just over 5 seconds. Where is the responsetime gathered from I assumed it was from start of test to end of test but that does not seem like the case. Thanks Thanks a ton. I think this will do it. I will go through the po ...Show All
Visual Studio Express Editions User Login Troubles
Hi, I pretty new to all of this. I have followed the tutorial on http://beta.asp.net/guidedtour2/ and is working all ok locally. When I uploaded to IIS 6 on a Windows Server 2003 SP1 and tried logging in using login.aspx it gave me this error: An attempt to attach an auto-named database for file C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WebSites\WebSite1\App_Data\aspnetdb.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share. What solution(s) can I try to get the loggin script working If anymore info is required like the Stack Trace I will do my best to get it. Thanks. Lewis Cobley I am trying to set this up starting with MS SQ ...Show All
SQL Server Details Grouping
Can a table have more then one detail group I need 4 detail groups show from a parent group. They all come from the same query dataset. Or is the a better way to do this Thanks ...Show All
SQL Server Error in sql management express installation
Hi, I had earlier installation of microsoft sql server 2005 in my machine. Recently I installed the visual studio 2005 beta which comes with sql express and after going through many hoops(as it kept complaining about the previous installation of beta components) i was able to install it correctly. I was also able to also use visaul studio 2005 server explorer to connect to the SQLEXPRESS and create table etc... Now I wanted to install sql server management express so I downloaded SQLEXPR_ADV from te microsoft's website. During the installation it complained about the older version of SQL server management sutdio installed and hence could not install the sql server management express. By looking at different forums I found following st ...Show All
Visual FoxPro OLE error code 0x80040154. Class is not registered. OLE Object is being ignored
Hi, I get the error : OLE error code 0x80040154. Class is not registered. OLE Object is being ignored . I get this error when i run a form which has a chart in VFP 6.0. Can somebody help Alex Hi, I cant seem to find the right ocx or dll. If i right-click the OLE chart object on my development pc, it shows MSCHART properties. So, can u tell me what dll or ocx do i need to register at client PC. Alex ...Show All
.NET Development User Input
Hello all, I was looking for a way to log all the keyboard/mouse input, for a service in C/C++/Basic. Thanks in Advance, Dexter ...Show All
.NET Development Exporting DataGrid to Excel
I have a windows form containing a datagrid. There are some buttons which i use to query a database and the results are loaded into the datagrid. I want to export the contents of this datagrid to an excel file. How can i do that in code Thanks. Hi: Everything works ok, but... What if i want to overwrite the excel archive How can i avoid the question of ( Do you want to replace it ) Thanks ...Show All
SQL Server Verify Report Server is running
I have the situation where the url to a report server is stored in a table. I need to validate the address is correct and the reporting service is running before using the reports portion of the application. I use ListChildern() to get my reports and I have a try catch that works fine in debug. When I run the exe it fails to catch the error and crashes the program. I think this must be a threading issue. Does anyone have any suggestions on how to validate\verify the url I am grabbing will work Thanks -JW ...Show All
