Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: robUK2
  • Content: Threads
  • Order by date
  1. robUK2

    webclient downloading many files from web server

    Hello, VS 2008 SP1 I am using the web client to download a file. Which works ok. However, now I have to download many and the number of files to download will change everyday. I am not sure how I can get the web client to know which files have been downloaded or not? I was thinking of using...
  2. robUK2

    Detect proxy settings

    Hello, VB 2008 I am using the code to detect if a proxy has been set under "Internet Options". If there is a proxy then I will set this in my webclient. So I am just checking if the address of the proxy exists. If there is not, then there is no proxy to set in the webclient. Is this the...
  3. robUK2

    using pthreads and callbacks

    Hello, GCC C99 I have just created a simple program, as this is my first time with threads and callbacks. However, I am wondering do I really need a callback. Can I just call the timeout_cb() function after the sleep() as completed? Maybe I don't understand, why a callback is needed at all...
  4. robUK2

    Problem making application use 2 languages

    Hello, I cannot get my application to display in English, it always displays in French I have an application that uses 2 languages. The default language is en-GB and the second language is French For setting the text of the buttons and labels. I have set the localized property to true and...
  5. robUK2

    Checking if port is blocked

    Hello, VS 2008 SP1 I have been testing with that code. However, I find that sometime it works and sometimes it doesn't. Very strange. I am wondering if there is a better way to do this. I have checked this with netstat -aon (cmd). So I can check to see if the port is open. I am not sure if...
  6. robUK2

    using structure with pointers

    Hello, Compiling on windows using GNC GCC Codeblocks. I have a structure as follows. I am using wondering if this is the correct way to assign a value to the index which is a pointer. struct lineService { int lineNumber; char lineName[80]; int *index; } line1; int lineIndex =...
  7. robUK2

    The Web server does not appear to have FrontPage Extensions

    Hello, VS 2008 running on Windows XP. I am trying to publish my application using clickonce on to a remote server which is running Windows server 2003 Enterprize edition. Failed to connect to 'http://10.10.10.8/CATDialer/' with the following error: Unable to create the Web site...
  8. robUK2

    BindingList bound to a listbox, ResetItem problem.

    Hello, VS 2008 I am using a bindingList that is bound to a listbox. Howerver, everytime I modify an item in the bindingList and call the resetItem to update the list box. It fires the selectedIndexChange property. This then goes into an ever ending loop. I have been looping through with the...
  9. robUK2

    COM problem with using ClickOnce

    Hello VS 2008 The 2 users that have tried to run the application get this error. "CATWinApp has encountered a problem and needs to close" "An unhandled exception ('System.Runtime.InteropServices.COMException') occurred in CATWinApp.exe [2220]. Just-in-debugging this exception failed with the...
  10. robUK2

    finding an item in a contextMenu

    Hello, VS 2008 I am adding menuItems to a menuContext. However, I only want to allow a maximum of 10 menuItems to be added. This works ok. However, if a menuItem is about to be added. Which is already contained in the menuContext. Then I want to get the index of this, so that I can remove it...
  11. robUK2

    #include <windows.h> and #include <wininet.h>

    Hello, VS c++ 2008 I am creating a http client application. In doing some research I found that I have to include the wininet.h library into my application. I did this and when I compiled I got 283 errors. However, I included the header <windows.h> and all thoughs error disppeared. I guess...
  12. robUK2

    http client to get data from server

    Hello, VS 2008 I want to retrieve some data using the HTTP protocol. The server has already been setup to recieve a customer ID. However, I am not sure about the http request in C#. I have been looking into the WebClient and the httpWebRequest clients. But I am not sure of the complete...
  13. robUK2

    data binding text boxes and datagridview

    Hello, VS 2008. I am using a typed dataset and reading and writing to a xml file. The table is very small, so don't need any database. I have sent an image of my window. This is not a master/child detail. The grid displays all the people, and the text boxes will display what is selected in...
  14. robUK2

    typed dataset schema relating to xml file

    Hello, VS 2008 I have typed dataset and have added a single data table named dsMissedCalls.xsd and dtMissedCalls. I would like to save some missed calls for my application. The table is very small not more than 10 rows. Example. dtMissedCalls(ID, Caller, DateAndTime) I have created a XML...
  15. robUK2

    Timer control freezing the UI

    Hello, CF 3.5 VS 2008 I have a timer control that is being used to do some work. Code below. The timer interval is set for 1 second. However, when the timer is running the UI freezes for a short period. I understand that the timer control is uses the UI thread, but I didn't think the amount...
  16. robUK2

    manipulating a string

    Hello, I have a string "<sip:username@10.10.10.10:5060>" I would like just to get the "username", and nothing else. string callStatus = "<sip:username@10.10.10.10:5060>"; string usernameAndIP = callStatus.Remove(0, 5); string[] username = usernameAndIP.Split('@'); this.lblCallStatus.Text =...
  17. robUK2

    Creating a wrapper for C++ DLL

    Hello, VS 2008 I have a .Net application that P/Invokes with a DLL written in C++. Everything works, and now I have to create a wrapper, but not sure how to do this. Does the wrapper need to be created in C#.Net or C++? In the C++ code is is just some getters and settings that I need...
  18. robUK2

    Encoding problem with string

    Hello, VS 2008 3.5.Net I am getting a string from a call back in a C++ native DLL which I have written. And for some reason it displays wrong something like this. i.e. [][[[[[[[[[[[[[ or ????????????????? with ASCII encoding. My code is below. I think the DLL is using unicode, and I am trying...
  19. robUK2

    Many details to display inside text box

    Hello, VS 2008 I am developing phone application. Which will have a dial pad and a display. In the display the customer wants to have details of (call duration, number being called, status when call is connected and disconnected). Number being called should be in the top left, Status button...
  20. robUK2

    Using timer to control an on and off state

    Hello, VS 2008 I have the following code in my timer control private void tmrVibrate_Tick(object sender, EventArgs e) { vibrateAlert = new Led(); vibrateAlert.SetLedStatus(1, Led.LedState.On); Debug.WriteLine("Vibrating")...

Part and Inventory Search

Back
Top