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

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

Citrus

Member List

dakota367
EIUTYRONE
BlueMikey
ScottStonehouse
JN5943
nblankton
Dmitriy Ovdienko
Christoph Hornung
Vijay_kar
PeteJM01
bbossi
Mahender
Aamer
Sledgehammer
ShadowRayz
Christophe De Langhe
Allen White
Vayse_Dev
rmiao
XNA Rockstar
Only Title

Citrus's Q&A profile

  • SQL Server Cannot Connect to a Remote SSIS Server

    I originally posted this issue on the SSIS forum and it was suggested I cross post here. I'm trying to connect to the MSDB database on a remote SSIS server using the integration services connection listed in the drop down box on SQL Server 2005 Management Studio. Every connection attempt ends with an 'Access Is Denied' error message. I have full db_dtsadmin rights on the remote server. We followed the MSDN whitepaper on connecting to a remote SSIS server (the section on eliminating the Access Is Denied error - configuring rights for remote users). Nothing works, I always get the generic access denied error message. Are there other permissions that need to be assigned in conjunction with db_dtsadmin to get this to work I wonder if there is ...Show All

  • Smart Device Development CeFindFirstFile using VB6

    Ok, my first Smart Device project and I've come to a bit of a standstill, trying to find out what files are on the device. Tried the CeFindAllFiles, but from what I have read I don't think it will function in VB6. So, on to CeFindFirstFile and and CeFindNextFile. It all looks so easy. I'm confused as to how you set up the returning information. I keep seeing references to 'CE_FIND_DATA', but what is that all about If anyone has an example or ideas it would be appreciated. Bert Thanks, I can see the article now and the sample code, which pretty similar to what I already have. I can send a file from the pc to the pda, and I think I could get the reverse process to work, with what I already have, but that is ...Show All

  • SQL Server Which algorithm is better for customer retention

    Hi Pl any one tell me which algorithm is better for Customer retention Using SQL server 2005 analysis services It will be great if some one can give the same with example of data model with key column , and rest Thanks in Advance Rajesh Ladda Usually you would use Decision Trees for retention, although you may try Naive Bayes or Neural Nets. You model would contain all information about customers and whether or not they "left". You should probably randomly pick an approximately equal number of people who left and people who stayed to get the best results. You model would predict the field indicating whether they left or not. ...Show All

  • Smart Device Development iphlpapi.dll is missing.

    What i discovered is, that the function that i need to use is: GetAdaptersAddresses, and it is contained in iphlpapi.dll library. What would you recommend doing, when I can not find iphlpapi.dll on my device, as well as in: C:\Program Files\Common Files\Microsoft Shared\CoreCon\1.0\Target\wce400\armv4i. I chbecked system and hidden files as well. Could you send me this dll for XScale processor please, or give me some hint were to look for it My email: zedzik at gmail dot com (This is reposted from http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=532111&SiteID=1 so everybody can see it on the main forum page) I am new to .net cf development, so my questions can be stupid/annoying, I'm sorry if it is like tha ...Show All

  • Visual Studio MSDN in shared location

    Hello there, I have installed MSDN library for VS.NET 2003 in a machine in the network. It should act like a web server. How can I view those documents from my development machine, Since it consumes more space I don't want to install the MSDN Library in my development machine. It is something like viewing a webpage on the browser. How can i achieve this Thanks in Advance, Sekar Hello Sekar, I have posted netcopy information above on this forum. Please take a look. For MSDN library 2005 which integrates in Visual Studio 2005 all the files are installed on users machine. Run from source feature is not available in MSDN Library for Visual Studio 2005. Thanks ...Show All

  • SQL Server Handling errors in SSIS

    When I have an alternet Data Flow in an event handler, caused by a record failing to be inserted due to a unique-key constraint violation, does this increment the number of errors, counting towards the MaximumErrorCount How can I NOT count it as an error The thing is, I need to insert 300,000+ records each day, and some may be duplicates from data already in the table. So I set a unique key constraint on the table, and if during the load, it fails, it will trigger an alernate data flow to load the error records into another table. But if someone tries to load a file that already has been loaded, for example, all the records would be duplicates, which would be equivelant to 300,000+ errors, and I don't want to keep setting the MaximumEr ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Any way to fill texture with data in memory?

    I thought it should be Texture2D.SetData() but when I saw the remarks, I found it says it can only be used with dynamic texture. So if I use the constructor of Texture2D to create a managed/automatic texture, how can I fill it with data You can create and fill a texture like this: Texture2D texture = new Texture2D ( device, width, height, 1, ResourceUsage.None, SurfaceFormat.Color, ResourceManagementMode.Automatic ); uint[] pixels = new uint[width * height]; //Your code to fill in the pixels array goes here texture.SetData(pixels); I recently uploaded a really simple example that uses the above code and creates a checkered texture in memory. You can find the project her ...Show All

  • Windows Forms Filling a ListView with a ImageList

    Hi all.... Probably this is the most basic question about Listview's stuff but I really want to know how can I fill a Listview with the images of an ImageList control by code ... I need to show some icons in a listview created by code.. not in design time... Thanks everyone..!! Please forget it!! Is just in the same line of code... lstvTables.Items.Add("content",0); the 0 is the index of the image in a ImageList Regards ...Show All

  • Software Development for Windows Vista Modifying custom composite activities at design/runtime time inside of a workflow.

    If I create a composite activity that inherits from SequentialActivity and has a number of other activities added to it and drop this new activity on a workflow is it possible to modify it at design time. So if one of the sub-activities I dropped on my composite activity was a sequential activity can it get modified after it is dropped on to the workflow. Basically what I want is to be able to create custom activities with certain common flows but at some point I want to be able to put a place holder in that flow to allow someone reusing my custom activity to do something custom. 2nd question related to the first. Same situation but instead of a placeholder (i.e. sequential activity) inside of this custom activity I want to use an ...Show All

  • .NET Development .NET HttpListener has a limit of 2 concurrent requests handled at a time per process, How can I increase it ?

    I created a simple server using HttpListener using .NET 2.0 The server simply accepts http connections from clients, sleep 3 seconds and return "OK" message. Server Code : HttpListener m_Listener = new HttpListener (); public void StartListening() { m_Listener.AuthenticationSchemes = AuthenticationSchemes .Anonymous; m_Listener.Prefixes.Add( "http://*:1234/" ); m_Listener.Start(); AsyncAccept(); } // this method is called in a loop to listen to new clients private void AsyncAccept() { m_Listener.BeginGetContext( new AsyncCallback (OnNewConnection), nul ...Show All

  • Visual Studio Express Editions how to read file to string

    help me please how to read textfile to string Have a look at this, this should help you http://msdn2.microsoft.com/en-us/library/system.io.streamreader.readtoend.aspx ...Show All

  • Visual Studio Express Editions Integrate Visual basic 2005 express & Visual web developer 2005

    Maybe a stupid question but I could'nt found any answer. Is it possible to use Visual web developer inside Visual basic 2005 express Or do have to use them seperately ...Show All

  • SQL Server Bulk insert Remote Files access denied

    Here is my setup. Machine A: SQL Server 2005 x64 on a Windows Server 2003 x64 Machine B: XP Pro SP2 with SSMS installed Machine C: hold files that I want to import to Machine A. The drive is shared and set for everyone to read. Everyone is logged in as Admin and SQL services are start up under the admin account. I'm using Windows Authentication to log into Machine A from machine B. When I try to bulk insert from query analyzer running on Machine B BULK INSERT ModelData FROM '\\MachineC\Data\Files\Something.txt' WITH ( FIELDTERMINATOR = ',' , ROWTERMINATOR = '\n' ) I get Operating system error code 5(access is denied). I have looked at the examples shown from the BOL links provided but I just have a small workg ...Show All

  • Smart Device Development System.ComponentModel

    Hi guys, I'm writing a custom control using CF as well as the full framework. With the full framework, the following works just fine: [System.ComponentModel. Category ( "Custom Properties" )] [ Browsable ( true )] [System.ComponentModel. Description ( "Set the number of lines to view" )] But try this on CF and it gets an error: Error 1 The type or namespace name 'Category' does not exist in the namespace 'System.ComponentModel' (are you missing an assembly reference ) Any ideas on how to use these settings in CF Many thanks, Millie For NETCF V1 you'd need to create separate design time assembly, see this . For NETCF V2 attributes like this are in a ...Show All

  • Smart Device Development How can i interface a 8051 controller to a PDA having Windows CE

    HI , I am trying to interface a 8051 controller to a Toshiba PDA running Windows CE. I want to interface the SDIO port to the SPI port of the controller. Is it possible to achive this and if yes how can I program the PDA to read and write data to the controller. Please help This is a note to all undergrad and hobbist developers, I am sorry about the confusion. I have gotten a flood of emails from developers who would like free information about how to program an 8051 microcontroller. I can not help you with this. We have developed a solution for talking to an 8051 through an SDIO port but we do not give away the firmware. It cost us a lot to develop and test and we can't give it away for free. ...Show All

©2008 Software Development Network