Topics
-
- 0 replies
- 1.4k views
Hi I want to convert data to sound and vice versa, so basically something that a modem does. For testing purposes I want to connect 2 applications and transfer data from one to another. Of course speed matters but resilience against noise and alike is a much greater concern. The sound quality will be like conversation though cell phones. Since I still haven't found something that does such a conversion, anything that does it will be of help.
Last reply by Arokh, -
-
- Administrators
- 1 reply
- 860 views
I Have below security requirement for my ASP.NET web application (Framework 1.1) The cookies need to be specific to a particular client system � either by tying them to a particular IP address, or by making them dynamic (i.e. changed with each request). Any suggestions or ideas are welcome Thank you in advaance:)
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 6 replies
- 1.4k views
My TableAdapter links to a table with null values in some of the cells. Whenever I preview the data in the TableAdapter, null value fields are displayed. Whenever I try to populate or do a query using the values, rows with null values never even seem to show up! Has anyone ever encountered something like this? Any idea how to get around it?
Last reply by Machaira, -
-
-
- Administrators
- 1 reply
- 685 views
Hi everyone:) I have a thread question! I use this code to start a thread: Dim Threads As New Thread(New ParameterizedThreadStart(AddressOf MyThread)) Threads.Start() And here is inside my thread: Private Sub MyThread(ByVal o As Object) ... End Sub I want to know how can I CLOSE the form from inside thread? Please help me as I am not very PRO in threads! For example, I know to set the TEXT in a thread I should use this: Private Delegate Sub SetAccountsTextCallback(ByVal Message As String) Private Sub SetAccountsText(ByVal Message As String) On Error Resume Next If Me.AccountsProgressBarX.InvokeRequired Then …
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 3 replies
- 1.2k views
Hi, Sorry if this sounds like a daft question. I am using Visual Studio 2005 and I cannot see my Global asax file in my website solution. I have looked in the folders and cannot see it anywhere. Any ideas? Cheers, Dave.
Last reply by dilipv, -
-
- 0 replies
- 710 views
Hi all, I have a database backup application that I wrote that connects to a remote SQL instance and copies all database changes to my local SQL Server instance. Everything is working fine, with one small glitch that does cause a problem if I need to restore the database on the remote server. In short, the app connects to the remote database and retrieves a list off all databases on the server. It then connects to my local server and retrieves the same list. It compares the list and creates the database on the local server if need be. During this process it also creates the tables, and then populates the corresponding records. It does this for each database it …
Last reply by dakota97, -
-
- Administrators
- 1 reply
- 855 views
I installed VS 2005 set up. When I tried to create a new project. File->New Project asp.net web application is not listing in the window. IIS is working on my machine. what could be the problem?
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 3 replies
- 896 views
(1) What is Project::Subclass::NativeWindowsEvent and how to use it? I've got codes in old C++ syntax and I want to change it to the new one. // =================================================================== // NativeWindow Subclassing // =================================================================== ref class Subclass : public System::Windows::Forms::NativeWindow { public: delegate void WindowsEventHandler(Object ^sender, Message ^uMsg); event WindowsEventHandler ^NativeWindowsEvent; Subclass(IntPtr pWindowHandle) { this->AssignHandle(pWindowHandle); } void SendWndProc( System::Windows::Forms::Message ^uMsg ) { …
Last reply by chrisliando, -
-
-
- Administrators
- 3 replies
- 846 views
Hi, In the "Remarks" section of System.Transactions.CommitableTransaction.Commit() method, it says Can anyone post some sample codes on how an object is registered to a transaction, and how this object itself get unregistered? I am catching one of the ExecuteNonQuery failures and want to retry again. The current transaction's TransactionInformation.Status is "Active" until after the Commit() method call. I think it detects there was at least one failure but I don't know how to clean it up before the Commit() call. Thanks a lot, Alan.
Last reply by alanchinese, -
-
-
- Administrators
- 9 replies
- 1.8k views
I'm pretty new to ASP.NET so maybe this question is dumb bit here it goes. I'm using an DropDownList control on my aspx file that is linked to an master page. My question is: Is it posible not to load master page elements every time I do a postback with my DDList control? So I want to reload only my aspx file that is within my master page, but no my masterpage as well
Last reply by PROKA, -
-
- 2 replies
- 743 views
Hi I am trying to create a program that will read a text file and create a directory type of structure based on the contents in the text file. Basically each line in the text file should have a directory name, a number of subdirectories and the prefix name of the subdirectory.It should allow the worker to select from a drop down menu�Create Folder Structure� and have the program read the text file and update the directory structure under the same directory as the text file with the information from the contents in the file. If anyone could help me start this that would be great or if you can tell me where to go to hire someone to help design this that would help to…
Last reply by medmondson, -
-
- Administrators
- 2 replies
- 682 views
Hi, I am developing a text comparer application. How to detect if there is an empty line in the textBox? I have tried with the method String::IsNullOrEmpty and detect if the line is equal to "\n" but it still don't work.. How to do that? I am using Visual C++ and .Net 2.0. Thank you very much.
Last reply by chrisliando, -
-
-
- Administrators
- 2 replies
- 840 views
Hi I'm looking for easiest way to redirect speaker & microphone of a mobile phone to the PC. At my disposal I have a Motorola Razr and a very old handy. I already tried some ways: Connecting the handy through bluetooth or with cable, which makes a modem connection available, with it I guess I can't achieve my goal. Then there is an option to connect a bluetooth headset to the handy. So I thought this is my best shoot, but the mobile phone doesn't recognise my PC as a headset (duh :p ). Is there any way to trick the handy into believing that it is talking to a headset? And if that works how can I then send/recieve the sound And jet another (extreme …
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 1 reply
- 991 views
We are working on a .NET 1.1 and we are required to restrict access to a webservice over HTTP and allow access only over HTTPS.We found that this can be done via Source code implementation i.e. to check the incoming request is on Secure communication or not? Any other suggestions.:rolleyes:
Last reply by PlausiblyDamp, -
-
- 0 replies
- 1.3k views
Hi. I am using Visual C# 2005 Express Edition and .Net 2.0. I need to make if I scroll textBox1 then textBox2 will be scrolled too.. I need it VERTICALLY and HORIZONTALLY. How to do that? Thank you very much.
Last reply by chrisliando, -
- 1 reply
- 745 views
Hi, I need help with ListView control. I have 3 columns in my ListView, when I want to add rows with 3 columns at run time I use this: MainListViewEx.Items.Add("Column 1") But it only fills the first column of each row and then go to the next row. How can I fill all columns of a row and then move to the next row? I was not able to find it on MSDN! :(
Last reply by Machaira, -
- 3 replies
- 830 views
I am not sure where to start with this but here is my idea. I want to have a setting in my application that will be the format of a string I want to send out as an UDP packet. Now I know how to hard code the format and send the string out using UDP so that is not the issue. The issue is how do I make this format a user defined setting. Example 'In the settings file SendTextFormat = [124] [Artist] [126] [Title] [124] 'or SendTextFormat = "This is " [Title] " By " [Artist] 'Then based on what is in the SendTextFormat the formatted data that would be sent would look like. |The Last Goodnight~Pictures Of You| 'or This is Pictures Of You By The Last Goodnight …
Last reply by ZeroEffect, -
- 0 replies
- 790 views
All, I need to create a .ascx control and inside this control contains a gridview control. So basically this ascx control wraps up the gridview control. But, how can I add templates in this control? Just like the way the GridView Control does. Thanks, Carl
Last reply by microkarl, -
- 0 replies
- 693 views
Hello, I have a sqlDB with two tables user and private I want the user after logging in to be able to see their info displayed in text boxes all set to read only so just displaying the data for them I need to form to record the user id from the login form which I have done with this code Dim returnValue2 As DialogResult returnValue2 = My.Forms.frmLogin.txtUserID.Text() txtcustomerID.Text = returnValue2 frmlogin.Hide() Me.SqlDataAdapterC.Fill(Me.userData.Accounts) Ho can I use the stored varible to be referanced by the database so it loads that users details ? any sugestions thanks M
Last reply by Mike2098, -
-
- Leaders
- 2 replies
- 696 views
Working on the basis that all repetition is bad, is there a good way to write code to call constructors for a range of class types all deriving from a common base? e.g. Dim h As base If x = 0 Then h = New base(1, "ABC") ElseIf x < 0 Then h = New inheritor1(1, "ABC") ElseIf x > 0 Then h = New inheritor2(1, "ABC") End If Public Class base Public Sub New(ByVal x As Long, ByVal y As String) End Sub End Class Public Class inheritor1 Inherits base Public Sub New(ByVal x As Long, ByVal y As String) MyBase.New(x, y) End Sub End Class Public Class inheritor2 Inherits base Public…
Last reply by rbulph, -
-
Who's Online 0 Members, 0 Anonymous, 51 Guests (See full list)
- There are no registered users currently online