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

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

Chicks_in

Member List

ashish taralekar
forcedfx
motters
JLA_dk1
amitsingh18
Chris H.
abbarron
darknessangel
raghuramaiah
AliBaba2005
James Huang
alazela
Jing
Harsh Modi - MSFT
Neil K.
Abu-Bakr
Dan-psg
Farabi
dragonsteve
Wim Verhaeghen
Only Title

Chicks_in's Q&A profile

  • Visual Studio Adding folders to project items

    I have a web application project that is in a folder called webapp. This folder has a sub-folder called sub1 that has been included as a part of the web application project. I am able to create another sub folder under the webapp folder using the following code: projItem = proj.ProjectItems.AddFolder("sub2", Constants.vsProjectItemKindPhysicalFolder); This work fine. I now have the webapp folder with two sub folders. Ths bit of code also adds the new sub2 folder to the web application project. My problem comes when I want to add a sub folder to the webapp\sub1 folder. I tried u ...Show All

  • Visual FoxPro table data

    Does anyone know if you can import data from a fox pro table to SQL server 2005 mobile edition database on a pocket pc I have never used SQL server 2005 mobile. But of course you can! Connect to it the same way you would connect with any other app! And load your data. Worst case you can use FoxPro’s “COPY TO” command and put the data in a more suitable format. Dave M. ...Show All

  • Windows Search Technologies Running as a service

    Is it possible to have Windows Desktop Search index when the user is logged out ie. have it run as a service I have WDS 2.06 and it is not installed as a service, Where are you getting your information ...Show All

  • SQL Server Problem: Deployment works, but processing does not

    Hi, I am working with the 'Using SQL Server Data Mining" book, and am trying to deploy and process the 'MovieClick' example in chapter 3. Here is my problem: I am able to create the Data source, the source view, the data mining structure and data mining models (Decision trees and Bayes). When I select 'Buil - Deploy solution' all scripts are successfully deployed to the server, but once the processing start the application nothing happens. I see the that BI is trying to do something, or waiting for something. I can see a text that '0 cases are read'. The app does not time out, and i have to cancel the deployment. Please let me kno ...Show All

  • Windows Forms How can I trigger MouseLeave on leaving control Bounds instead of client area?

    Simple question, but a major pain for me so far. I have a checked list box that I want to expand on MouseEnter, and collapse on MouseLeave. Unfortunately, MouseLeave triggers as the mouse leaves the client area, and enters the vertical scroll bar area. The effect is that the list collapses down as soon as I try to use the scroll bar. Is there some way of creating a MouseLeave event that will trigger when the mouse leaves the Listbox BOUNDS instead of when it leaves the client area Alternatively, can I somehow access mouse events for the scrollbar - letting me keep the listbox expanded till the mouse has left one or ...Show All

  • Visual Studio Windows 2003 x64

    I have a test wesite that I am working on and have been able to run it successfully on a Windows 2003 X86 server with SQL 2005. All the normal asp.net stuff works including database access but I'm having trouble getting Crystal Reports to run properly. I do have the Crystal runtime installed...and maybe that's part of my problem, do I need a 64bit version of that to be able to use it Anyway, the error I'm getting is a ...InteropServices.COMException - 0x80040154 - Class not registered. Any thoughts on this greatly appreciated. Update: I did a little more testing and what I found is that the report prints okay from within the developemen ...Show All

  • Visual C# Progress Bar & Timer

    Ok. I still have not had my question answer which is ok. Maybe ive been asking the wrong question. Ok. What I need is, when I click a button, to have a progress bar made at runtime. Now, when its created, I made a code to where it fills up as described below. private void timer1_Tick( object sender, EventArgs e) { if (progressBar1.Value <= progressBar1.Maximum - 1) progressBar1.Value += 1; else timer1.Enabled = false ; Now what I need is when the bar fills up, for it to disappear, and then for a label to be created with the text "hello". Can someone please help me. am not sure whether i understood you correctly but ...Show All

  • Visual C++ Visual c++ .net licence agreement

    A couple of months ago I bought a Visual Studio .Net 2003 Academic Edition. Unfortunately the licence doesn't allow the software to be installed on more than one pc (I didn't know at the time). Last week I tried to install it on another pc, but - of course - it couldn't be activated. The reason I want to do this is that I live with my parents in the weekend, without access to my own pc. Now I'm planning on buying Visual C++ .Net 2003, hoping that it's licence allows installation on more than one pc. Is this assumption correct Or maybe someone knows where I can find a(n electronic) copy of the eula. I'd rather not spend another ...Show All

  • Visual Studio Sharing files between projects in 6.0D

    In our current production enviroment we are using VSS 6.0D to manage our projects.  All of our projects depend on some common source files, which can be updated at any point by any of the projects.  For example, we have one common header file which contains various error codes.  As projects evolve, new errors are added to the header file, which can then be used in all projects. Recently we had a problem where someone had somehow checked in an older version of a file.  When other people checked out their projects and made updates, they ended up merging their changes to the older version instead of the current version.&n ...Show All

  • Visual C++ Help needed: fatal Error: C1190 VC++ .NET

    Hello, I am gettin a fatal error C1190 when I try to compile the code and run it. Could anyone provide a solution for that I guess I need to set the /clr switch. Here is the error: fatal error C1190: managed targeted code requires '#using <mscorlib.dll>' and '/clr' option It points to the syntax on code: #using <mscorlib.dll> <Yeah the third line of my code!!!!> ;-) Would appreciate if anyone cud provide a solution for this! :-) Thanks a much! Karthik Hello: An easy way to avoid this kind of problem is a user at initial stage when opening a project like this way >> In .NET environment, File/New/Projec ...Show All

  • Visual Studio Adding an image to a Crystal Report from a memorystream.

    Basically, i'm using a Charting tool in a webbased app to export a chart as a memorystream. The image itself is in PNG format (can also use BMP if needed). How do i import this memorystream into a PictureObject in a Crystal Report Or is what i'm trying to do impossible I've been looking around the internet, and it seems like i should be converting it to a byte array, and then sending that to CR, but that doesn't seem to work either. I was hoping for something like this... MemoryStream imagestream = (MemoryStream)Session["ChartStream"]; byte[] image = imagestream.ToByteArray(); PictureObject graphProbe = Report_CIA.ReportDefinition.Report ...Show All

  • Visual Studio Team System return sentence

    How can I know if this returns true when finds a return sentence: OpCode .Ret If not, how can I get a return sentence If you're asking how to detect whether a function returns true, that would only be possible in very simple cases. Most routines that return a bool, obviously, don't return a constant value. A return code depends on runtime state, parameters, locals, fields, global data, that is typically impossible to calculate statically. FxCop provides an abstraction for a method body, but it does not simulate execution, and neither do we have a documented data flow analysis. The next release of FxCop (which is focused on str ...Show All

  • Visual C# Parsing Positional Data Files using references?

    Hi, I have a file that has the following syntax: F1 khurram pakistan F2bcs 'F1' marks the start of the personal record, it has two fields name and country. Now important thing to note is that the position of each record with respect to 'F1' is definite, i.e. name starts at character location 8 and it has a length of 10 characters(take F of the F1 as character location 1), then country starts from the 18 and has a length of 10. F2 marks the start of the education title and education title starts from location 3 and has a length of 5 (Take F of F2 as location 1). Is there a way to parse such a file and store the resul ...Show All

  • Visual C++ Failure to rebuild after .hpp files are modified

    I've just installed the released version of Vsiual C++ 2005 Express after being a beta user for months. I used the uninstall tool and the installation went smoothly, but I find that now projects don't always get rebuilt when they should. I'm not using explicit makefiles or anything fancy, just ordinary console application Win32 projects generated by the wizard. After I modify a .hpp file that is included by a .cpp file in the project, whether or not the .cpp file gets recompiled is unpredictible. Often it decides everything is still up to date. It doesn't seem to matter whether the .hpp file is named in the project or not, either. I am forc ...Show All

  • Visual Studio Wizard size and colors

    Hi all... I'm using standard wizards to gather data: < Wizard xmlns = " http://schemas.microsoft.com/pag/gax-wizards " SchemaVersion = " 1.0 " > and I want to know if i can change the size and colors of that wizard. The problem is that the window displayed is too big and there is an unnecessary big blank space i'd like to remove. I'd also like to change the colors of some fields in the wizard. How can i do that Thanks in advance, Batta R I could solve the wizard size issue, but I still want to know if i can change fields colors in those wizard pages. Thank you... Batta R ...Show All

©2008 Software Development Network