Software Development Network Logo
  • Visual J#
  • Visual Studio
  • Smart Device
  • Windows Live
  • VS Team System
  • Windows Vista
  • .NET Development
  • VS Express Editions
  • Windows Forms
  • Visual FoxPro
  • Visual Basic
  • Visual C++
  • Visual C#
  • Architecture
  • Game Technologies

Software Development Network >> dutch blue's Q&A profile

dutch blue

Member List

Orez
Krodinjw
DEV01
Ravimcom
guitarist
kefeng
smartravi
kqu
Andrew Thorpe
Uro
KhRo
Wilke Jansoone
Vino Varkey
Wilson Salazar
Mike Morine
Harry1311
Tom_HDi
gli268
emaroudas
yoPCix
Only Title

dutch blue's Q&A profile

  • .NET Development HTTP status 407: Proxy Authentication Required +ISA Server

    Hi, We're getting the follow exception thrown when calling our web service: System.Net.WebException: The request failed with HTTP status 407: Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied.  ). I've found this article, but the problem is we don't want to edit machine.config as a pre-req.  http://support.microsoft.com/ id=307220 So does anyone know ...Show All

  • Visual C++ Using classes from dynamically linked DLL

    I am attempting to use classes that are defined in my custom written DLLs. I am dynamically loading the DLLs using LoadLibrary. I already know how to access functions using GetProcAddress. Is it possible to do something similar for classes No! You can not use class exports via this way with LoadLibrary. A simple approach is to create interfaces like COM interfaces and return only pointers to those interface ...Show All

  • .NET Development Servers, Pages and their controls and HTTPWebRequest.

    Recently I was asked how to push button on a web page control programmatically and I realized I didn’t know. For the last couple of weeks, I’ve been playing with HTTPWebRequest and getting the samples to work. That’s a wonderful class and it looks as if it exposes every possible thing that could be exposed, but I realized after all the code that I still don’t know how the pieces fit together.   I have a single XP node and I’ve set up ...Show All

  • .NET Development Getting network users

    Hi all, I need to know how to get all the users in LAN network. I need to connect the windows server 2003 from on of the stations and get all the stations that are connected to the server. Please help... Regards... If I understand correctly you want an application that runs on your server and records who logs in/out   If so, I don't think the System.Net APIs are what you want for this.  ...Show All

  • Visual C++ I can't mix VC & GCC

    I compile a 'cpp' file with the g++ (or gcc with -x c++ option) to obtain a .obj file, then I compile the remaining with VC and I have this linking error: main.obj : error LNK2019: simbolo externo "void __cdecl fmulGCC(float *,float *)" ( fmulGCC@@YAXPAM0@Z) sin resolver al que se hace referencia en la funcion _main fmul_GCC.obj : error LNK2019: simbolo externo __ZdlPv sin resolver al que se hace referencia en la funcion __Z7fmulGCCPfS_ fmul_GC ...Show All

  • Visual C++ Crash on delete and MSVCR libraries confusion

    Hi All, I'm trying to debug a strange crash at pointer delete (I'm porting an application from VC  2003 to VC 2005).     ntdll.dll!7d61002d()     [Frames below may be incorrect and/or missing, no symbols loaded for ntdll.dll]    ntdll.dll!7d681da1()     ntdll.dll!7d659cee()     ntdll.dll!7d642da9()   > msvcr71d.dll!_CrtIsValidHeapPoint ...Show All

  • .NET Development How to handle control characters

    I'm encountering invalid-character errors when attempting to load XML from a third party. For example: "' ', hexadecimal value 0x01, is an invalid character. Line 70, position 9." The problem character in that case is an "SOH" control character, which looks like a little rectangular box in my text editor. Is there a common best practice for handling these Perhaps a simple search and replace routine to remove characters wit ...Show All

  • Windows Forms MouseDown in Client Area of MDI never fires?

    Very strange; it never fires. Oddly (to me), if I assign a ContextMenu to the MDI form, it comes up fine with a right-click in the form, but it also comes up with a right-click on a MDI child form, unless the child has its own context menu. The problem I have is I create a context menu when the user clicks in a certain area of the MDI form; when that happens, the static MDI ContextMenu is also displayed. If I can detect the MouseDown ( ...Show All

  • Visual Studio Team System Random thoughts...

    Made in notepad as I was playing with the product... In data generation plan, there is no way to "Select All" or "Unselect All". Even support of CTRL-A would be nice. Can't copy and paste values out of the Data Generation Preview. Changing "Rows to insert" doesn't seem to have any effect on what is in the Data Generation Preview window. Maybe I just didn't play with it enough. Can we have an optio ...Show All

  • Windows Forms Hiding Tabs

    How do i make a tab invisible or hidden on a tab control Simply remove the TabPage from the TabControl.TabPages collection. If you want to re-add it later, simply squirrel away a copy in a member variable of your Form (or elsewhere). public class MainForm : Form {    private List<TabPage> m_tabs = new List<TabPage>();    protected override void OnLoad(EventArgs e) {   & ...Show All

  • Visual Studio Express Editions VISUAL BASIC EXPRESS - 2 COPIES

    Several weeks ago I installed VB Express from a CD On Friday I installed Visual Studio Express from a DVD which I received from Microsoft. Do I now have 2 copies of VB Express on my computer If I do , can I use the Uninstall program to delete the 1st VB Express installation Visual Basic Express Edition is a product that can be individually installed and uninstalled. If you want to uninstall it you should be able to find it in the ...Show All

  • SQL Server HELP - Problem with Replication

    Hello, I have transactional replication running between two SQL Servers. It's a push subscription and the distributor is on the local publisher. Recently after running for a year the replication stopped working and we get the following two errors. 1 - The process could not bulk copy into the table "History_Rep" String Data, Right Truncation. Error Number 22001. ----------------------------------------------------------- ...Show All

  • Visual Basic Saving variable values

      Hi Again, I want to know in Visual Basic 2005 how to save variable value(s) into a file (of any arbitrary extension) and retrieve the value(s) later. So basically, a value I/O to a file. Any help would be appreciated. Regards, Arun. Arun, Not to take anything away from Peter's post - because I will keep that code handy for myself - but you might take a look at the my.sett ...Show All

  • SQL Server How to sort that does not include duplicates in display?

    Hi everybody,    I like to asked anyone who is very good at sql to help me display this data in a table format that duplicate headings, subheadings or other columns won't appear twice or more. Can anyone help me I need to sort them and load them in a Datatable. Loop thorugh all records and display them in a label control created at run time. Thanks in advance. Sample Data: Topics Table TopicId  TopicLevel  Topic  ...Show All

  • Visual Studio Team System How to pass log-in username and password to a web test from a database?

    How to pass log-in username and password to a web test from a database I have a web application in which there are several forms. To goto any form we Have to do log-in and only some members can have access to certain forms.I want to supply log-in names and password from a data base. I tried doing this by making a table in MS-Access. But it is not working properly.Can you tell me what is the right way of doing this. Thanks Golu ...Show All

©2008 Software Development Network

powered by phorum