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

Software Development Network >> Dave Aronson's Q&A profile

Dave Aronson

Member List

Goran _
MSTIDragon
hezkryvo
act_bilbo
BillH
kdub98
jeff.adams86
zadcoe
Kumarp
Federico Benitez
zrbamax
Bo416
Jayson Go
juanchoom
JimBoDH
wiedemeyer
NewDBA
Mike Ogilvie
FabioDeSantis
Lewis Horowitz
Only Title

Dave Aronson's Q&A profile

  • Visual Basic Migrating Access Form to .NET

    In the article found on this webpage ( http://www.microsoft.com/technet/prodtechnol/sql/2000/Deploy/accessmigration.mspx ) it says, "Re-create your forms using .NET and migrate your reports to Microsoft Reporting Services. For more information, see the Microsoft white papers , “How to Migrate Access Forms to .NET” and “How to Migrate Access Reports to Reporting Services.” But when i do a search on that article, i find nothing. I've tried to find something similar to no avail. If i could easily convert my Access form to a .Net webform i thought it might be easier than using MS Access. Any suggestions ...Show All

  • Visual C# Refresh URL

    I want to find the user's public IP address. To do this I am using a hidden WebBrowser control that navigates to http://www.whatismyip.com/ . I then use a Regular Expression to get the IP. Every 10 minutes I want to check if the IP has changed. Currently, I am using WebBrowserControl1.Refresh() to get the new IP but it does not work - I always get the IP that was found when the program first started. If I restart the program I get the new IP address. How do I get the new content of the page rather than the old content using System; using System.Net; using System.Web; using Syst ...Show All

  • Visual Studio 2008 (Pre-release) ToList() and ToArray() not found

    I'm trying to execute the following sample code var q = from c in db.Customers where c.City == "London" select c; // Execute once using ToList() or ToArray() var list = q.ToList(); I'm getting a compiler error: "Error 43 'System.Data.DLinq.Query<Customer>' does not contain a definition for 'ToList' " I get similar error when I try to use ToArray() method. The query works fine when I loop through the results in a foreach statement. Any ideas jwooley wrote: The easiest way to fix it is to create the LINQ project type. J ...Show All

  • Smart Device Development Waking up from hibernation.

    When my Pocket PC wakes up from hibernation, sometimes the application only appears in the background and can only be seen under Settings > System > Memory .  2 questions: 1. Any way of making sure the application does not fall into the background of the OS. 2. If I can't prevent if from just being seen under Memory, is there a way my application can detect the PPC has been powered on again. Thanks for any solutions, You can do this by P/Invoking into the CE function CeRunAppAtEvent or CeSetUserNotificationEx (both wrapped in the OpenNETCF.Win32.Notify namespace - www.opennetcf.org/sdf/ ). This allows you to register yo ...Show All

  • Visual Studio Team System Cannot Create new project - Sharepoint permissions error

    I have successfully setup a dual server deployment.  I added myself to the admin group as per the installation.  It appears that Sharepoint didnt get configured.  When I try and create a new project in Team Explorer it seems to go through everything and then i get an error saying i dont have permission in Sharepoint to create a site. It seems that there is no configuration in Sharepoint.  The problem may be that i have SP2 not SP1 as per the install guide but i figured that this wouldnt be a problem.  Is it Is there any documentation about manually configuring Sharepoint if the setup didnt do it correctly ...Show All

  • Windows Forms Challenging ClickOnce problem... writing to the data store

    Ok, I have a program whose solution is composed of (3) projects. I am using ClickOnce as my deployment method and have set the Security Zone to Full Trust. My configuration.dll, which is one of the (3) projects compiled in my solution, tries to write a config.xml file to the ClickOnce data folder. FYI: The file does not already exist, so it must create it on the fly. The problem: It doesn't create it on the fly. It tries to write the file to the correct location but a check of that location reveals that the file is never created and thus cannot be written to. Does this mean that I need to create a blank config.xml file and include it wi ...Show All

  • Visual Studio Express Editions Using NotifyIcon

    Hi, I've added a NotifyIcon to the mainform of my application, by clicking on it in the Toolbox. I've build a contextmenu etc. for the notifyicon and when I start my application, everything works fine, except that when I close my main form, the notifyicon also closes, and i want it to stay in the taskbar as long as the user didn't close it via the contextmenu of the notifyicon (then the whole app should close). I sthere a way to not let the notifyicon close when the user closes the form the notifyicon is on I've already tried creating another 'startup form' that contains the notifyicon, but that doesn't work either (it's an invisible form). ...Show All

  • Windows Forms MDI child size

    I have a MDI child with size of 1024x768. I launch the application into a 800x600 resolution. I want my MDI child to preserve its 1024x768 size but it looks imposible. It is streched to 800x600 and it does not even show scroll bars. Anyone knows a solution to this problem  It would be greatly appreciated. Thank you all, Lucian ...Show All

  • SQL Server Remote Connection problem on MS SQL 2000

    Hello, First, I want to say I read all threads similar this thread and I couldn't solve problem. My firewall is always off when I tried to connect remotly to SQL Server. I opened 1433 port from my router's configuration page and forwarded it to 10.0.0.4:1433. When I started SQL Server service and checking "netstat" with "-na" paramters. It shows only one row as "TCP - 0.0.0.0:1433 to 0.0.0.0:0". What "0.0.0.0" means and why foreign addres port is "0". I guess, It should like to be "TCP - 10.0.0.4:1433 to OutsideIp:1433". I removed forwarding from my router and used Windows's Network Connection to forward ports. I opened ...Show All

  • Software Development for Windows Vista safe mode no longer hangs

    I thought you all would like to know my solution, after some digging into windows news groups, found my answer.Thanks to Westley Vogel. Spyware Doctor was my culprit, I did as he suggested and hooray everything is working great. No problems with safe mode hanging, can also to a disk check again within windows. I sent PC Tools an e mail, asking about a fix, however I probably will not use this again, too bad, nice program but who needs the problems that it caused, the post I got if from was on 3/706-in case anyone else has this problem.In search look for Check Disk/Safe Mode- Microsoft xp- Thanks Wes. ...Show All

  • Smart Device Development termination

    I'm developing an application with several modeless forms. The project starts in SUB MAIN which calls the first form. Each form closes itself and starts the next form. All that works except I can't get the application to terminate properly. Is there a single call I can use from within the last form to execute that terminates the application Is there any other way I can do it I tried to find something on how to call TerminateThread from my VB app and haven't got a clue. I'm not even sure I can. Can anyone point me to some information ...Show All

  • Visual C# Access a SAMBA share via C#

    A search for "SAMBA" in this forum returned no results, so I am assuming that this question is not already covered somewhere else... I am trying to programmatically access a Samba share from a C# application. Is there any way to facilitate this using C#/.NET Or is the only option here to write a Win32 Shell app or dll Any guidance is appreciated... Thanks, Outsideshot Samba emulates the Microsoft CIFS and SMB protocols. So, you should be able to use it just like a regular Microsoft Windows network share. Use a path like \\sambaserver\fileshare\filename.txt ...Show All

  • Smart Device Development .Net CF 2.0 - Prevent device from sleeping

    Hello, I've been looking for a way to (optionally) prevent a pocketpc 2k3 device from going into sleep mode while my app is running, but could not find anything. Any suggestions --John (update) Also, Is there a way to keep the screen light from going out without user interaction And something more extreme, can one change the way devices behave during sleep mode (e.g. keep WiFi in a running state like GSM phone device) hi john , i too got struck with Power management . I want my application to support PalmTreo 700wx and PalmTreo 700w.what happens is when the call end button(red button) is pressed ...Show All

  • Smart Device Development GPS libraries

    Hi there, I have heard that CF 2.0 has some libraries that directly deal with the serial port issues in GPS and also has built-in NMEA parser. Anyone has any information regarding this Regards Yes and no. Microsoft provides a class for communicatingwith the serial ports however you need to actually write code or use a 3rd party component to communicate with NMEA devices AFAIK. ...Show All

  • Visual FoxPro Cursor Adapter

    Good afternoon gentlemen.  First, it forgives me the weak inlges.  I speak of Brazil.  It would like to know, if it goes to exist updates in the one in the Adapter Cursor.  A SP(n) for example.  I felt lack of the possibility of being able to make relationships between the cursors to adapter.  Thanks, Itamar Bom dia senhores. Gostaria de saber, se ja existe, ou vai existir, algum update para o Cursor Adapter. Algum Service Pack por exemplo. - Sinto falta da possibilidade de fazer relacionamentos entre os cursores, criados com o cursor adapter. Atenciosamente, Itamar ...Show All

©2008 Software Development Network