BortNE24's Q&A profile
Visual Studio Express Editions help, help me rhonda or anybody
axmediaplayer1.url = my.settings.song1 song 1 is bound to textbox1 textbox1.text = c:\windows\media\somefile.mp3 this works fine............question is how can I make it so the user only has to type in the name of the song to the textbox.....instead of the full path bearing in mind there are100 textboxes thanks cheyenne sorry I mistyped the original .......should have been (axwindowsmediaplayer.url) and the reason I have not considered a listview is because I know nothing about listview....... thank you cheyenne ...Show All
.NET Development Webservice: "The ASP.NET process identity does not have read permissions to the global assembly cache."
I'm uncertain what the best forum is for this - I also posted this in the ASP forum. I am developing a distributed application with a client-side java calling a webservice serving a static binary database. The application works well with the VS2005 Development server on XP Pro SP2. However when I publish it to an IIS v5 environment, it fails with these errors. 3.) .aspnet_wp.exe (PID: 3988) stopped unexpectedly 2.) Failed to execute the request because the ASP.NET process identity does not have read permissions to the global assembly cache. Error: 0x80131902 1.) Failed to initialize the AppDomain:/LM/W3SVC/1/Root Exception: System.Configuration.ConfigurationErrorsException Message: Exception ...Show All
Microsoft ISV Community Center Forums RunTime Error 3704 Loading Recordset from Stored Procedure
I am attempting to load a recordset generated by an SQL stored procedure (no parameters) into Excel using VBA. When my code hits the last line, highlighted below, a "RunTime Error 3704: Application-Defined or Object-Defined Error" error occurs. Any ideas Dim RSData2 As ADODB.Recordset Dim DBConn As New ADODB.Connection Const stADO = "Provider=SQLOLEDB.1;Integrated Security=SSPI;" & _ "Initial Catalog=PennTel_Core_Demo;" & _ "Data Source=172.17.9.44" stSQL = "aaa_WPAHS1" Set RSData2 = New ADODB.Recordset 'On Error GoTo Cleanup Call RSData2.Open(stSQL, stADO, CursorTypeEnum.adOpenForwardOnly, LockTypeEnum.adLockReadOnly, CommandTypeE ...Show All
SQL Server rda.SubmitSql cause outofmemoryexception
My application create quite a lot log file to submit to the server under WiFi coverage to monitor the application. (log is just txt file). as time goes on, submitsql method throw OutOfMemoryException. I agree my log file is quite big, 80K each and 6 log files to submit. My log submitter is an instance object. I also tried static object but it doesn't help either. I do dispose my rda object when it is out. Is any way I can fix this Yes, ErikJ, I resolved this issue by checking the length before appending new chars. The StringBuilder throws "OutofMemoryException" when it's length is greater than 2359294. Thanks. ...Show All
.NET Development How can I run an User Control using a Web Application...
Framework Version1.1. I have a User Control inside a Windows Control Library named WCL1. I embed that User Control inside the web Application(named WA1) using <Object> tag.. Along that I have Add the reference for the WCL1 Now if I access through. http://localhost/WA1/WebForm1.aspx means it works... But if I access through IP Address for eg.. http://IP/WA1/WebForm1.aspx means it will not works... Please anyone give me an Idea.. Just the control .... No error messages... Instead that user control I can view only a blank control... Regards, Ramesh.R. ...Show All
Smart Device Development how to replace the "ok" button by "x" under pocket PC (eMbeddedVC++)
hellooo! I am developing an application under eMbedded VisualC++ 4.0 for pocket PC (PDA SPV M3000) I want tu replace the "ok" button by "x" to close my application , we can do this under .NET by setting the variable MinimizeBox to true, but I don't know how to do so under eMbedded VisualC++. thank you for help. hanafi Sounds like you are using C++ forms. If you use a dialog based format then the windows will close without touching the MinimizeBox. Other options can include overwriting the 'OnOK' event or adding hooks. ...Show All
Visual Studio Team System TF14087: Cannot undelete...because not all of the deletion is being undeleted.
Hi folks, I am seeing the following error when attempting a merge: TF14087: Cannot undelete '$/Ammado/trunk/Source/Ammado.Web.UI/Controls/LoginPanelControl.ascx.cs' because not all of the deletion is being undeleted . I'd like to get to the bottom of it. Basically, our setup is that all developers work on a branch, and when they have changes to commit to the trunk, they - first merge TO their branch from the trunk, - resolve, test and checkin, - merge FROM their branch TO the trunk - run the automated build and check that the trunk still builds I attempt a merge from the trunk to my branch, and Source Control Explorer says that there are no changes to merge I then attempt to merge from my branch to the trunk and I see the error above. $/ ...Show All
SQL Server Using SSRS 0n SQL 2005 Express-can not connect to report server
I am using WIN XP PRO with IIS installed. Installation (including SSRS) seems OK. If I go into new project and select Business Infomration / New Report I can select datasource, etc, design a and get to a deployment window. Default is Report Server: http://localhost/ReportServer Deployment Folder: Report Project2 I can preview a report just fine. If I go to Debug or Deploy I get a error message box that starts with "A connection could not be made to the report server http://localhost/ReportServer" Am I missing a component on my system or can you suggest something else I should look at Thanks Yes, I had gone into that screen. The only thing that looks at all unusual is that the Check Mark that is to the left of ...Show All
Visual Studio 2008 (Pre-release) WPF and HLSL
Is it possible to write use HLSL shaders in WPF I suppose you are speaking about DirectX 10. I think that Managed DirectX doesn't exist anymore so there is no Managed DirectX for DirectX 10. When speaking about managed 3D frameworks which can be used from applications I guess there is only two options: XNA and WPF. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How to make SpaceWar work with the keayboard?
Can someone tell me how to make the spacewar example work with the keyboard what line of code i have to modify what i've to write thanks for replying Please search the forum before posting - this is already in another thread. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=682463 ...Show All
Visual Studio Tools for Office visual studio tools for office
I want to call a print dialog box from a command button in an excel sheet. I cant see the common dialog control in the control tool box. How can I add a custom control to my work sheet I used the commands as follows to get the print dialog box when I click the print command button but it doesnt recognize these commands (appear in red color in the visual basic code window in excel). Do I have to import any system libraries How to do that Private Sub printButton_Click() System.Windows.Forms.PrintDialog pd = new PrintDialog(); pd.ShowDialog(); pd.Dispose(); pd = null; End Sub ...Show All
.NET Development how to create .xml file using SQL query (SQL Server 2000)
i'm using a datawarehouse from which i need to pickup huge data and show it using a grid on a web page. my thought is to create an .xml file suing SQL query and then create a dataset from the XML file and then bind it to a datagrid do any one have any better(best) approach for this What format is the data in the warehouse If you can pull it out using a standard ADO.Net provider, then you can push that directly into a dataset for binding. Another question to think about: Why do you need huge data in a grid Maybe just a subset of the data that is relevant to the current display is all you need ...Show All
Visual C# Using C# to restore hex binary data to image?
Is there a way to restore hex binary data to original .BMP image Thanks. There is a large hex binary digits stored in the XML file, I'm trying to find out the way to restore the image by using those digits. Any idea ...Show All
Visual Basic populating an Access database using visual basic 2005
I am trying to create a new employee application that gets input from a user in text boxes and then take that information and populate a database in Access that will later be pulled to the Track IT! database on SQLserver2005. How do i do it Thank you. Also, it is a 3 form application... with different information on all forms... would it be easier to populate the database each time they go through the form or should i just have it get all the info at the end and populate it then ...Show All
SQL Server Execution error: 'the function name is not a recognized built-in function name'
Hi,all here, Would please any experts here give me any guidance for this execution error (as below) 'The "function name" is not a recognized built-in function name'. The function is already available in the sample database, but it is not recognized yet Dose it mean that the function is written in CLR language which requiring me to register the assembly to the server instance first of all Thanks a lot for any guidance and advices for that. With best regards, Yours sincerely, Hi, Asvin, Thank you very much for your very helpful guidance. Before I did not use two part names since I thought the function is defined within the schema where I created the new query, so the system probably automatically ...Show All
