Software Development Network Logo
  • .NET Development
  • VS Team System
  • Microsoft ISV
  • Visual Studio
  • Audio and Video
  • SharePoint Products
  • Game Technologies
  • Smart Devicet
  • IE Development
  • Visual C#
  • Visual FoxPro
  • Windows Vista
  • Visual C++
  • Visual Basic
  • Windows Forms

Software Development Network >> netpicker9's Q&A profile

netpicker9

Member List

Corrado Cavalli
KevinInIndy
mcgin1591
Lejing
enric vives
huysmans
Dan Heidel
CODUDE84
Padmabhushan
mfischer4
anyuser
cmwith
Plum117
dansha
Aaron Leiby
aaks
Ronald Schilf
Troy Lundin
adorer
MuscleHead
Only Title

netpicker9's Q&A profile

  • Internet Explorer Development Problem debugging embedded Client Script using IE7

    We are getting an error when trying to debug client script (VBscript and JScript) from the Running Documents window using VS2003.  This only happens when the script is inline on an asp page.  If there is a .js file, there is no problem. Here is the error we get:   "The following breakpoint cannot be set: bla bla bla No executable code is associated with this line." I am about to uninstall IE7 and go back to 6 because I am unable to debug our client-script-heavy applications.  Any help would be appreciated. Thanks, Kevin   Hey Dave, The only other thing worth noting is that we are using VBS and JS on the client. Any page what we have inline c ...Show All

  • SQL Server Need SQL Support

    Dear friends I am a new developer. I need some SQL Language examples to write some quaries. Ex. how you collect last record that relevent for the last record updated for a relevent employee in a record table which includes RecordNo and EmployeeNo, salses Thanks Any help is greatly apprciated Amila Hi, e.g. SELECT TOP 1 RecordNo, EmployeeNo, salses From SomeTable WHERE EmployeeNo = 'SomeValue' ORDER BY TheColumnWheretheSalesDateisStored DESC HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Team System SQL Server requirement

    The following is listed as a requirement Microsoft SQL Server 2005 Express, Developer, or Enterprise Edition installed and running for design-time validation on the same computer as Visual Studio. For more information, see http://go.microsoft.com/fwlink/ LinkID=78582 . It seems to suggest that a locally installed database is only required for design-time validation. If this is correct does this mean either that a) SQL Server is not used for any of the other features or b) SQL Server is used for other features but doesn't have to be installed locally If b) how do I set up DB Pro to use a remote instance This is what I want to do and is something I pointed out in one of the survey's during the CTP. And annoyingl ...Show All

  • Gadgets Open a webpage in a Flyout?

    Hi I wonder if there any way to open a webpage in my Flyout ! I've something like this: Yes. There's the code, in short, you wait until the flyout is open and then create an iframe within it. gadget.html: <html> <head> <script language="javascript"> System.Gadget.Flyout.onShow = flyoutShowing; System.Gadget.Flyout.file = "flyout.html"; var url = ""; function setFlyout(urltmp) { url = urltmp; System.Gadget.Flyout.show = true; } function flyoutShowing() { System.Gadget.Flyout.document.parentWindow.frame.innerHTML = "<iframe width='500' height='500' frameborder='0' src='"+url+"'></iframe>"; } </script> </head> <body ...Show All

  • Smart Device Development listview with system imagelist (white square)

    hi, I have a listview that using a system imagelist. The problem iIm having now is when i select/highlight a row, there is a white square around the file/folder icon(not masked ) from the system imagelist. Is there a way to fix this problem without using a owner drawn listview code example or idea will be appreciated. thanks in advance. what do u mean by using the same dimension of bitmaps declared in imagelist i get the small icon imagelist from the system and set the return handle to the listview so the dimension should be 16x16 ...Show All

  • Software Development for Windows Vista Urgent help needed

    Hi, I have implemented a State machine workflow, and hosted it in Web service. I am facing following issue. I have three states, State1, state2, state3. State1 is initialstate and state3 is completedstate. State1 -> State2 -> State3 is the state flow Initialization and finalization method of state1 is invoking, and I am also able to see the initialization method of state2 but if I check the current state of the instace it always shows state1 instead of state2. Please help it is very urgent. I can attach the whole application or we can do a live debugging session as well if needed. Thanks, Navneet Navneet - assuming you are querying the workflow state from host, i guess your query for state ...Show All

  • Visual C++ I hope that some expert can explain the following file version code for me.Thanks

    I hope that some expert can explain the following file version code for me.Thanks VS_VERSION_INFO VERSIONINFO FILEVERSION MAJOR_VERSION,MINOR_VERSION,POINT_VERSION,BUILD_NUMBER PRODUCTVERSION MAJOR_VERSION,MINOR_VERSION,POINT_VERSION,BUILD_NUMBER FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L #else FILEFLAGS 0x0L #endif FILEOS 0x4L FILETYPE 0x1L FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE "CompanyName", "Airmagnet Inc.\0" VALUE "FileDescription", "AirMagnet Survey\0" VALUE "FileVersion", VERSION_TEXT VALUE "InternalName", "Surveyor\0" VALUE "LegalCopyright" ...Show All

  • Visual Studio Team System Problem building Setup Projects with Team Build

    Hi, We're experiencing problems while building setup projects from team build. We have VS installed on a build machine and use a custom build step calling devenv for building the setup project. It works so far that we get our desired msi package. But the problem is that before the setup project is build, all other projects in the solution are build as well regardless of the fact that team build did this right before! I checked the vdproj file and it contains the right paths (yes, all are relative paths to obj/Release folders). Devenv seems to be unable to detect that all projects are up-to-date. However, when I launch devenv with exactly the same command line on my desktop, the setup project is correctly b ...Show All

  • Visual C++ using split method

    Hello Sir, i want to convert a string to an string array. e.g. i have an string as "munish, ramesh, hitesh" i want to convert it into a string array with array[0] = "munish", array[1] = "ramesh", array[2] = "hitesh" Pls help me in doing this. Thanks Munish Gupta Hi, For .NET framework this is a sample code: #include "stdafx.h" using namespace System; array <String^>^ Get_Words(String^ line) { array <String^>^ res = gcnew array <String^> (0); int i = 0; String^ temp; char c; while (i < line->Length) { temp = "&quo ...Show All

  • Visual Basic NullReferenceException Error on load?

    What does it mean 1st of all... NullReferenceException (puzzeling) Code: Imports System Imports System.Drawing Imports System.Collections Imports System.ComponentModel Imports System.Windows.Forms Public Class Form1 Inherits System.Windows.Forms.Form Private WithEvents taskbarNotifier2 As TaskBarNotifier Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim taskbarNotifier2 As TaskBarNotifier TabControl1.Visible = False Label4.Text = My.Computer.Network.IsAvailable If My.Computer.Network.IsAvailable = True Then Label4.Text = "Connected" Label4.ForeColor = Color.Green Else Label4.Text = "No Connection" Label4. ...Show All

  • Visual Studio 2008 (Pre-release) Is there exist contol for viewing XML?

    Hi there! I need control for viewing XML in WPF application, for examle, as in Internet Explorer. Is anybody know anything about this. Thank you. You could use the Windows Form WebBrowser control. In your xaml file, add the namespace: xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" And then should can show the WebBrowser with something like this: <wf:WebBrowser x:Name=""MyWebBrowser Url="http://www.w3schools.com/xml/note.xml"/> ...Show All

  • SQL Server No Debugging and logging when a single script task is executed

    Hi, I cannot execute a script task in the VBA code window. I cannot debug or log if I run a single script task from the right click Execute Task . Every time I have to run the entire package in order to be able to debug. What am I missing appreciate a help. Gulden Gulden wrote: Thank You.. I guess it is the only way.. If memory serves correctly, yes, it IS the only way. We hope this will change in the future. It certainly SHOULD be changed! -Jamie ...Show All

  • Visual C++ Confused about Return Value Optimization

    Hi everyone, The return value optimization (RVO) eliminates temporaries for functions return by value. Scott Meyers wrote about utilizing RVO in "More effective C++" and Ayman B. Shoukry wrote an article about named return value optimization (NRVO) in this article: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/nrvo_cpp05.asp Those articles left me wondering: in what cases is trying to utilize the RVO beneficial Is there something I have to do as a programmer to help the compiler to utilize the RVO the best way that it can Both articles suggest that I should. I've tried to put this into practise. VS 2005 does a very good job optimizing and I think if you read mr Shoukry's article, ther ...Show All

  • Visual Studio Tool to find circular dependencies?

    Hi, Is there a tool/add-on to find circular project dependencies It's easy to find when you only have 3 projects, but I've got a lot more than that, and it doesn't seem trivial to figure out (yeah yeah, I'm working on improving the design, but in the short term, I'd like to find this circular dependency). Visual Studio (2005) tells the user that there is a circular dependency, but, annoyingly enough, it doesn't say what the circular dependency is. It wouldn't be hard to list all the projects that depend on each other, in order: project1 depends on project2 project2 depends on project3 project3 depends on project1 Or, more tersely, project1 -> project2 -> project3 -> project1 Simon, I tried this new version, an ...Show All

  • Visual C++ Link error atlthunk.lib

    I'm not an experienced programmer or troubleshooter of compiling errors. I need some help. I've been able to overcome some other errors in the projects files but I need help with this one...please. I'm trying to compile a solution that contains 17 projects. This solution was converted from vc6 to VC2005. All projects compile to release except for one. The following error prevents it from completing LINK : fatal error LNK1104: cannot open file 'atlthunk.lib' I'm using VS2005 (not express) and SDK 2003 R2. I've read some other post dealing with people getting this or very similar error but those posters were using VC05 express which does not contain the atlthunk.lib. I'm using the full blown VS '05 . Am I doing something wrong (v ...Show All

©2008 Software Development Network