Topics
-
-
- Administrators
- 9 replies
- 1.9k views
Hi All, I found this link: http://blogs.msdn.com/coding4fun/archive/2006/10/31/913360.aspx this is a great article that shows hows to use windows media player in a browser. I put into a site that I am playing around with and ran locally on my machine it looks pretty good. It list all the artists, songs and artwork etc. The problem is when I put it on my server. I have a machine in my loft which I am now using as a server which has windows server 2003 on it. I published this site onto this server. The site runs ok with one main difference to how it ran on my local machine. That is the page that shows the list of music is empty. I have manged to track down the par…
Last reply by davearia, -
-
-
- Administrators
- 2 replies
- 950 views
Hi, This post relates to the post I started regards "windows media player". Whilst doing various things I tried logging in to my windows server machine as ASPNET. I got this message "The local policy of this system does not permit you to logon interactively". I have also tried it in safe mode and still got the message. Does anyone know how to fix this? Cheers, Dave.
Last reply by davearia, -
-
- 0 replies
- 1.3k views
This is an example of Server.Transfer and Context Handler. Through this we can get the multiple values of previous form. http://www.hanusoftware.com In this page we are displaying data from previous form. We can use this technique for multiple form registration form. Code (ContextParent.aspx.cs): - private void Button1_Click(object sender,System.EventArgs e) { Server.Transfer("ContextChild.aspx"); } internal Hashtable Value { get { Hashtable objHT = new Hashtable(); objHT["Name"]=TextBox1.Text; objHT["FathersName"]= TextBox2.Text; objHT["Address"] = TextBox3.Text; return objHT; } } Code (ContextChild.aspx.cs) :- private void…
Last reply by hanusoft, -
-
- Administrators
- 1 reply
- 1.4k views
I have a VS2005 windows app that accesses the registry fine in XP and Windows 2000 but the key value is null when running on Vista. I've looked at KTM and TXR but am getting lost a little bit. Before I start down this path, has anyone run into the same problem and if so, how did you tackle it?? Appreciate any suggestions.
Last reply by PlausiblyDamp, -
-
-
- Leaders
- 2 replies
- 845 views
Hi, I've come across a bug in the RichTextBox control. If you add an RTB to a form, then add a url to the text property. The run the project. The mouse pointer (as you'd expect) changes to a hand while over the URL. But it also remain a hand under the URL. Also when you click in the area under the URL it raises the LinkClicked event. This bug occurs in dotnet 1.1 and 1.0. Can anyone suggest a workaround (other than adding an extra return character)? TIA
Last reply by snarfblam, -
-
- 0 replies
- 1.2k views
Hi I have to compare a MS word document with the edited version of the same document. It is to be done using c#. does anyone have an idea. thanx Nitin
Last reply by nitin108, -
- 0 replies
- 1.6k views
I can get DOS header by doing this Public Structure IMAGEDOSHEADER Dim e_magic As Short Dim e_cblp As Short Dim e_cp As Short Dim e_crlc As Short Dim e_cparhdr As Short Dim e_minalloc As Short Dim e_maxalloc As Short Dim e_ss As Short Dim e_sp As Short Dim e_csum As Short Dim e_ip As Short Dim e_cs As Short Dim e_lfarlc As Short Dim e_ovno As Short <VBFixedArray(3)> Dim e_res() As Short Dim e_oemid As Short Dim e_oeminfo As Short <VBFixedArray(9)> Dim e_res2() As Short Dim e_lfanew As Integer Public Sub Initialize() …
Last reply by atlantisx, -
- 1 reply
- 5.2k views
Any suggestions on how to do this, I am trying to get the number of minutes associated with the time at the moment and then use the Subtract method, don't think that this is the best approach and is going to cause a lot of problems. Mike55.
Last reply by MrPaul, -
- 1 reply
- 2.9k views
After downloading the JPG files from my camera, there's a "Date Picture Taken" attribute on all the files that I want to read in VS 2005. How can I access that value?
Last reply by penfold69, -
-
- Administrators
- 5 replies
- 2.2k views
Hi I'm trying to select from 3 tables Orders,Receipts and Customers. I get the records that I want throght SQL but when I attempt to view the data in Crystal Report I get na empty report. Here is the code: Dim con As New OleDb.OleDbConnection(My.Settings.KazaConstructionConnectionString) Dim ds As New DataSet Dim com As New OleDb.OleDbCommand("Select Receipts.ReceiptNumber,Customers.CustomerID,Customers.Name,Orders.OrderID,Orders.Normal,Orders.Resistant,Orders.Total,Orders.PaymentType,Orders.EmployeeName from Orders,Customers,Receipts where Customers.CustomerID=Orders.CustomerID and Customers.CustomerID=Receipts.CustomerID and Orders.OrderDate=#" &…
Last reply by melkanzi, -
-
- 0 replies
- 2.8k views
Hi, I have a ASP.Net 1.1 application with a Sql Server 2000 Database. I have an orders table that contains the details of an order. There are orders from 2005 to till date. I am displaying these orders in a Datagrid. The user has the option to search the Orders table using many criteria (around 8 to 10) criterias. I am uisng a DataTable as the DataSource for the Datagrid. Below is the Code for the datasource Private Sub BindData() Dim dv As DataView sqldataadpater1.Fill(DsOrdersList1) dv = DsOrdersList1.Tables(0).DefaultView If Not viewstate("SearchString") = "" Then dv.RowFilter = viewstate("SearchString") …
Last reply by Rattlesnake, -
-
- Administrators
- 4 replies
- 1.7k views
Hi there, i'm kinda new to ASP.net here the prob, i want to retrieve data from database but inside the table that i create. Normally <script> xtreme </script> i put it on the upper part, but now i want to split it up. [highlight=asp] <script language=c# runat=server debug=true> void Page_Load (object sender, EventArgs e) { *//retrieve data but now the placing takes prob * Response.Write("haha"); -> is executed i saw the result } </script> /////////////////////////// now inside the body.. ////////////////////////// <html> *//i got table create here. i want to put the data that i retrieve inside here * <scr…
Last reply by PlausiblyDamp, -
-
- 1 reply
- 2k views
I'm creating an application that recieves input from a USB barcode scanner. By default the input from the scanner is exactly as if the input were from a usb keyboard, I.e. if I leave notepad open, scan a barcode that barcode sequence get's "typed" into notepad. What I want to do is detect when input is received from the barcode scanner and take that input and use it in my own application rather than wherever the cursor happens to be at the time. Has anyone any suggestions on how I could achieve this? Any help much apprecaited. Dan
Last reply by grip003, -
- 0 replies
- 541 views
Hi, I've posted here as I don't think this falls under one particular heading. I've got a web app written in C# which uses some VB6 dll's and it runs fine on my machine. The problem I have is getting it to work on other machines (everything else works in the program apart from the bit that uses the DLLs) and also build problems. My first question is related to the DLL's. .NET creates and interop file for use to reference the original DLL, so I assume it's necessary to deploy the original DLL along with the web app. My question is, does the original DLL need to be installed in the exact same folder on the target machine as it was on the development machine? I'…
Last reply by mjohnson3091, -
-
- *Experts*
- 2 replies
- 6.8k views
Hi, I am trying to use the SQL Server stored procedure SP_HELPTEXT. The idea is to get the result from the execute and assign it to the variable. The SQL I am trying is this: DECLARE @text text SET @text = EXECUTE SP_HELPTEXT SP_NAME PRINT @text But this just errors. Please help if you can, Dave.
Last reply by davearia, -
-
-
- Administrators
- 2 replies
- 941 views
Does anyone know how to instantiate/initialize an active x control in a windows forms app in code. In particular the ax web browser control. It works fine just dropping it onto the form, but I want to create it from scratch in a seperate thread to the UI, I can create it and it appears on the form however when I call its navigate method I get this Exception of type 'System.Windows.Forms.AxHost+InvalidActiveXStateException' was unhandled Thanks
Last reply by Mondeo, -
-
-
- Administrators
- 3 replies
- 828 views
I've been given a project that i'm about to start. Its basic function is to connect to 6 or 7 websites, fill out some form data and then scape some information from the results pages and display it to the user. Its for price comparison, similar to confused.com. Each site it connects to takes about 30 seconds to get to the results, so I was hoping to connect them all concurrently on seperate threads. There will be seven different functions which all return the same custom object. Can I call these functions on different threads? How would I go about it? Thanks
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 9 replies
- 1.6k views
Hi, This is not strictly a code question, it is more regarding setting up my local machine to run my website/s. I bought a domain from http://www.123-reg.co.uk/. As I have a dynamic IP address I downloaded DynDNS Updater from http://www.dyndns.com/ and also set up a dynamic DNS with them for the domain I bought. I installed Windows Server 2003 on my machine which I got from my MSDN subscription from work. I have get up a website for this in IIS. Unfortunately something is not quite. Can you please tell me of any online tutorial guides for doing this kind of thing. Your help is much appreciated. Thanks, Dave.
Last reply by davearia, -
-
- 1 reply
- 1.9k views
I'm having problems with the calendar extender in that there is no buttons at the top of the calendar to move between the months, and that the control seems to be the width of my page. Here is the actual code belonging to the extender: <cc3:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtCalendar" Format="dd/MM/yyyy" PopupButtonID="imgCalendar" CssClass="MyCalendar"> </cc3:CalendarExtender> Mike55.
Last reply by mike55, -
-
- Administrators
- 1 reply
- 725 views
Does anyone know what version of Vista I need in order to install Visual Studio .net 2005 and potentially Visual Studio .net 2008. I have been looking at the system requirements on the Microsoft site, and all it says is that Vista is required, is the business version sufficient or must I go for the ultimate version? Mike55.
Last reply by PlausiblyDamp, -
-
Who's Online 0 Members, 0 Anonymous, 59 Guests (See full list)
- There are no registered users currently online