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

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

slippyC

Member List

Speedie
jimcjr
David J. Roh
dapi
Supriya Admulwar
DamsDev2007
scyle
Nag Rao
Matthew Lebo28574
fbalas
Flecko1
Andre_SA
vito1281
mintaka3
FletchB
IxxI
ruckycharms
dzimmy
datahook
Igor Solodovnikov
Only Title

slippyC's Q&A profile

  • Visual C++ Advanced File IO

    Almost all files generated by a program these days seem to create files that are a lot smaller than they would be as plain text, and are not ussualy readable in a text editor. I have been wondering how you create these writing formats, do you use a set of premade functions or do you have to custom build a set of your own functions to process text and data into the compiled format. Any ideas about how I could go about using these kinds of formats. Thanks in advance. :) Compression is the key. There are plenty of libraries out there for that, both by Microsoft and others. See http://forums.microsoft.com/MSDN/Search/Search.aspx words=compression&localechoice=9&SiteID=1&searchscope=forumgroupscope&ForumGroupID=8 for ...Show All

  • Visual C# reg- navigator window...

    i have a system in which i invoke a file on an event...(help file). i invoke using if (e.KeyCode == Keys.F1) { Help.ShowHelp( this , SapphireHelpProvider.HelpNamespace, HelpNavigator.Topic, SapphireConstants.HELP_IPAR); } the 2 nd argument s the path name of file & the last arg is the URl of the particular page int the file.. i am getting the correct page,but my default focus in the navigator window still remains on the initial text... is there any event for cahnging the position in the navigator window..... ...Show All

  • SQL Server Using a sproc as a source within Dataflow

    I was wondering what has worked for all of you in regards to using a sproc as a source within a dataflow.  I have had limited success doing this, but maybe there is a workaround I'm unaware of.  Basically, using a SQL command in an OLE DB Source, I run an EXEC statement that returns a resultset from a stored procedure.  I've noticed that depending on how the sproc is structured, I will either get metadata info in the columns tab of the OLE DB Source or not.  Without this metadata of course I can not link it with a destination, since the destination believes that no data is being returned, even if this is not the case.  This all seems to depend on the "final" select statement in the sproc being at the very top of th ...Show All

  • Windows Forms opening IE from windows application in VS2003

    Hi I am using framework 1.1 and VS2003. How can I open an HTML file in IE from my windows application Thanks, Thanks, one followup question. Is there a way I can open that HTML file such that it does'nt show up the adress bar of the IE ...Show All

  • Visual Studio Express Editions Open Specific File

    Hi all, How can i open a file without using the OpenFileDialog and i know the location to display a text file into a rtf box Any Help will be appreciated, Thanks in advance MW200675 interesting, I am unable to reproduce the problem from my end. Maybe someone else can if i find anything ill be sure to post sorry i could not be of much help ...Show All

  • SQL Server Transpose of Data

    I want to take transpose of data using single SQl statement. For example, empno Name 1 a 2 b 3 c 4 d . . . . as empno 1 2 3 4 .......... name a b c d......... Thanks in advance Mandip You can use PIVOT operator in SQL Server 2005. select pt.[1], pt.[2].... from t pivot (max(name) for empno in ([1], [2], [3], [4] .... )) as pt In older versions of SQL Server, you can use a standard SQL statement like: select max(case t.empno when 1 then t.name end) as [1] , max(case t.empno when 2 then t.name end) as [2] , max(case t.empno when 3 then t.name end) as [3] ... from t Please note t ...Show All

  • SQL Server SQL Analytical Functions and SQL Express

    Hello, I note that Microsoft indicates that SQL Server 2005 Express Edition supports "SQL Analytical Functions" (refer: http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx ). What is this refering to I assume this is not Analysis Services, which I understand is not supported in the Express edition. I can't find any reference to "SQL Analytical Functions" in any Microsoft documentation. Thanks, Nick hi Nick, I can only "guess" that states for the ranking functions , supported by all editions of SQL Server 2005... regards ...Show All

  • Visual Studio Team System Users / Logins (CTP7)

    I'm experiencing some issues regarding users and logins in the CTP7 version. The story: At first, there's no database or login available in the SQL2005 instance When I create a user named testuser in the Schema View , it is nicely added to the users folder as testuser.user.sql . Since it is created without login , I change the piece of the script to for login [testuser] In the Pre-Deployment folder I change the Logins.sql script to create a login if it does not already exist. Why is the testuser sometimes included correctly sometimes included with without login (although the script says for login [testuser] ) sometimes excluded when building the database project Also, I'm not able to just create a login with password=N'wachtwoord' ...Show All

  • Smart Device Development Smart Device CAB Project will not rebuild after closing and reopening

    Hello, I created a VS 2005 .NET CF application that uses some third party controls and additional assembly DLLs that I created, some are in the GAC and some are not. When I add a Smart Device CAB Project to my solution and add the primary output of the application project the list of referenced assemblies is properly included into the File System Editor in the CAB project. Then if I close and reopen the solution and look at the CAB projects File System Editor the referenced assemblies will be missing from the list of files to deploy. At this point I can not remove or re-add the primary output of the application project to the CAB project. I have to delete the entire CAB project and create a new one from scratch. If I view the deployment ...Show All

  • Visual Studio Express Editions Getting Error C3767.

    Getting Error C3767. It is really painful! I still can not access a method of Form1 from Form2 (MDI). (Visual C++ 2005 EE.) 1>Form2.cpp 1>.\Form2.cpp(14) : error C3767: 'SP_Analyzer_8::Form1::TestThis': candidate function(s) not accessible 1>AssemblyInfo.cpp 1>Generating Code... I have an example from Mr. Graus that compiles and runs error free. When I try that approach in my experiment program I got error C3767! "Relevant" code: In Form1.h: ... void TestThis(){ MessageBox::Show("Got here"); }; ... In Form2.h: ... private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e); ... In Form2.cpp: ... #include "StdAfx.h" #include "Form2.h" #include "Form1.h&q ...Show All

  • SQL Server schedule a report to run at a particular time with selected parameters

    Hi I have the following client requirement for a report on reporting services 2000 and I hope the forum can share some ideas on how this can possiby be implemented: A report already exists where a user can select 3 parameters and run a report. If however the report is going to generate more that 65000 rows then schedule to report to run a 2 am in the morning and deliver the report to a shared folder with filename as reportname_username_date.csv Is something like this at all possible and if so how can I approach this problem Thanks Umesh So you want to conditionally execute the report live or create a delivery depending on the amount of data in the report There is not really anything built in which d ...Show All

  • Visual Studio Team System Team Explorer Hangs In "Working" State

    There is one developer who cannot use Team Explorer to view Documents in any team project. When he opens Team Explorer all the projects are visible, and all of the nodes under the projects (work items, reports, builds, etc) work except for Documents. In each project Document only displays a status of "Working". This doesn't appear to be a server side problem. No entries in the event log. The web logs for the SPS site return a few HTTP 200 status codes for request to /_vti_bin/Lists.asmx from this machine. Noone else has any problem, and the developer can view the project's portal with IE. How to troubleshoot Does the user have access to all of the document libraries on the site If not, that is likely the problem. ...Show All

  • Visual Studio 2008 (Pre-release) installation winFX

    Hi, I am a new with the winfx and want to ask what I should install to get started. I have Visual studio express edition and win xp sp2. I tried to install: 1).NET Framework 3.0 July CTP 2) Windows SDK for .NET Framework 3.0 July CTP after that I can't see the template for winFX project in the Visual Studio. am i missing somthing Thanks Thanks for answer,   I have a problem install this orcas getting error winfx runime is required...   but I installed it before :"Microsoft Pre-Release Software Microsoft .NET Framework 3.0 - July 2006" http://www.microsoft.com/downloads/details.aspx familyid=62057a6f-185f-41db-abe5-678f6fc388f0&displaylang=en       ...Show All

  • Visual Studio Team System urgent...Dynamic value

    Can someone please tell me while running a web test how to capture a dynamic value from the web test response.e.g., i want to capture an insurance ID when i enter all the member details and could be able to use this ID to enter in my other scripts while running them. I think Josh's response describes what you need to do. I'm basically repeating what Josh said earlier... Add an extraction rule to the "Add" request to extract the insurance ID (something like extraction rule "Extract Text", starts with "Insurance ID" ends with "generated successfully) In the extraction rule you will specify the context variable name to which the extracted value (1223xyz) is associated with (let's say you called it ...Show All

  • SQL Server Move table from one filegroup to another?

    Hi guys, I'm in middle of database re-development as part of performance enhancement, I have re-group the tables to optimize query IO and created corresponding filegroups to house the data. Is there a way (or code) to move each table to their respective filegroups At the moment all the tables are on Primary filegroup. I have group the table into 6 section each to with the view to move each section into one of the 6 filegroups - each filegroup on different diskdrive I have looked at alter table command but can't find anything to allow me accoplished this task. Any ideas please thanks. Red: From books online: "Because the leaf level of a clustered index and its data pages ...Show All

©2008 Software Development Network