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

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

wbardwel

Member List

RAGolko123
Alex Farber
eldiener
eliewadi
ozhonetech
VanishingHope
Voodoo45
Travis Ingram
barkingdog
Chad Moran
Al33327
fbiots
stets
IamHuM
cjr
DRoden
Bill F.
Bizzeh
Bo_
Kat99
Only Title

wbardwel's Q&A profile

  • SQL Server Logging in SSIS

    Hi: Just implemented logging on my package, and the type of logging is to a text file. Any ideas on where should i store my log folder/file, so when I do my build and deploy, I end up moving the folder as well. Do I have to manually do that How would that work What if I save the log file outside of my project folder Where is the log folder/file path specified Thanks. When you set up the logging you created a connection manager to point to the log file right Then all you need to do is to make sure that connection manager is properly configured in the new environment; meaning that the path you specified exists and the user executing the package has access to it. You could use package configuration to set up the connection man ...Show All

  • Software Development for Windows Vista Looking for CleanupSharedWinFXFiles.exe

    Hello Forum, I had a prerelease of WinFX on my machine and I am looking for CleanupSharedWinFXFiles.exe which shall care for cleanup of the gac. I had the reference from a MS Page http://www.microsoft.com/downloads/details.aspx FamilyId=AAE7FC63-D405-4E13-909F-E85AA9E66146&displaylang=en but the regarding Link to this file is broken. Does anybody have this file or a working link to that download Best regards Ralf If you are having trouble with your RC1 installation, look at this thread and the post by Serge for the order. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=693261&SiteID=1 Also there is useful info on the Vista site about how to troubleshoot and known issues http://msdn.microsoft.com/ ...Show All

  • Visual C++ CRect and TEXTMETRICS units

    I'm trying to fill my CEdit with data, and I'm using the following to figure out how many lines of data I can output to the window. CDC * pDC; pDC = m_DisplayWindow.GetDC(); TEXTMETRIC Metrics; pDC->GetOutputTextMetrics(&Metrics); int LineHeight = Metrics.tmExternalLeading + Metrics.tmHeight; // Figure out how many lines can be put into the window. CRect WindowRect; m_DisplayWindow.GetWindowRect(&WindowRect); int WindowHeight = WindowRect.BottomRight().y - WindowRect.TopLeft().y; m_nMaxWindowLines = (WindowHeight/LineHeight + 1); Obviously the units of a CRet and a TEXTMETRICS are different because I'm only getting half the CEdit filled with data. Anyone know a more appropri ...Show All

  • Visual Basic implementing ftp through webrequest.create

    i am trying to implement ftp through the webrequest functionality. previously i got the error 'uri prefix not recognized'. i copied some code from http://support.microsoft.com/default.aspx scid=kb%3Ben-us%3B812404 but now i get another error. it is the object reference error and i understand why it is happening but i dont know what to put in the Public Overrides Function GetResponse() As WebResponse 'Override End Function 'Override section CAN ANYONE HELP Imports System.Net Imports System.IO Imports System.Net.Sockets Public Class NetworkCommunication Dim pResponseIdentifier As String Dim pIPAddress As IPAddress Dim pTimeOut As Integer # Region "Pr ...Show All

  • SQL Server About Web service or HTTP ENDPOINT

    Hi All, I met some problems when I walk through a example for Native Http SOAP in SQL Server 2005 for Developers. after I create the HTTP EndPoint in the Management Studio using following code: USE AdventureWorks GO CREATE PROCEDURE EmployeePhoneList AS SELECT C.LastName, C.FirstName, C.Phone FROM Person.Contact AS C INNER JOIN HumanResources.Employee AS E ON C.ContactID = E.ContactID ORDER BY C.LastName, C.FirstName GO DROP ENDPOINT HRService; GO CREATE ENDPOINT HRService STATE = STARTED AS HTTP ( PATH='/HumanResources', AUTHENTICATION=(INTEGRATED), PORTS=(CLEAR) ) FOR SOAP ( WEBMETHOD 'EmployeePhoneList'(name='AdventureWorks.dbo.EmployeePhoneList'), DATABASE='AdventureWorks', WSDL=DEFAULT ) then I can see the ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. .Net C# Developer moving into Gaming

    I am a .Net Developer and wish to move into gaming. I have downloaded the latest DirectX SDK and have been trying to do some self study to get started. However I have been unable to do so. Any suggestions on how I could make a quick beginning and one with a good base. Are there any sites/books which will help me start from scratch. The gaming section of the Coding4Fun MSDN website has plenty of tutorials to help you get started in game programming, either with DirectX or XNA: http://msdn.microsoft.com/coding4fun/gaming/default.aspx Hope that helps. ...Show All

  • SharePoint Products and Technologies Site and Sub Site List Aggregation

    Is there a way to get all items for any given list (ie Contacts) for all sites and subsite using a single web service call Right now I am getting a list of all sites using "GetAllSubWebCollection" web service method, then for each site get the items for a given list. This is taking a very long time, can I execute a query from the root site and get this same list Thanks no, its not. Basically, the search engine isnt the way to go at all, but instead you will have to use custom code (build your own web service for example) that will run a recursion on the sites. A CAML query on each list will return the items you want and you will be able to aggregate. but instead of doing that, I would ...Show All

  • .NET Development Unable to display image on explorer of client site

    Hi all, I try to make a simple proxy server via socket, everything works fine but all images are missed, I just don't understand how do a proxy server work that way any idea hi larry cleeton, Thanks for your reply. i know the question i asked is hard to understand, plz forgive my poor english writing. Anyway, i try to mention my question on other way: OBJECTIVE yes, I try to write a Http proxy which can carry out some basic functions: Clients are able to explore webpages via my proxy,just like connect with internet directly. WHAT I HAVE DONE I have transfer all text content of web page(such as CSS, Javescript, Html) to client side basing on the client's request . I send all content( including i ...Show All

  • Visual Studio Express Editions C# Hiding text in pictures

    if anybody can explain how by working with FileStream on Bynaric files' can write text to a picture file by overriding some pixels I assume you're talking about the technique to add a hidden watermark to an image, one that is not perceptible to the eye but can be recovered digitally. That would work with a black and white watermark and a 16 or 24bpp Windows .bmp file. The trick is to make the least significant bit of the Blue component for each pixel a 0 if the watermark pixel is black, a 1 when the watermark pixel is white. You can get that going pretty quickly with the Bitmap class and its GetPixel/SetPixel methods. Note that this won't work on any of the compressed image formats (.png, .jpeg) or on ...Show All

  • SQL Server is it possible to execute package through Stored Proc

    is there a way to execute SSIS Package through stored proceedure. Or any other method of executing the SSIS Package command line in stored proceedure Thanks, jas SMW_VA wrote: Is there a way to pass parameters to that job I want a trigger to run an SSIS package, but I need to pass some variables through the job. The variables are in the table that the trigger is on. There doesn't seem to be anything in sp_start_job that would enable you to do this: http://msdn2.microsoft.com/en-us/library/ms186757.aspx One option might be to use SQL Server configurations which you can update using T-SQL code as normal. When the package executes it will use those config values. ...Show All

  • SharePoint Products and Technologies WSS3 Search Engine not working

    When i try to search with Sharepoint Version3, I get the following error. The site http://ynd01-svr-015/documentation/ could not be found in the Web application SPWebApplication Name=SharePoint Parent=SPWebService Is this a common problem whould love to have the step by step to tell me how to fix this. Can anyone help me my boss is asking for this. Thanks a lot I believe a colleague of mine Kurt might be able to provide the answers you're looking for, check out his two blog postings about SharePoint search errors: http://home.infusionblogs.com/kguenther/Lists/Posts/Post.aspx ID=35 http://home.infusionblogs.com/kguenther/Lists/Posts/Post.aspx ID=321 ...Show All

  • Windows Forms Error: System.ArgumentException: Culture ID 2155 (0x086B) is not a supported culture.

    I run a small program to show all installed win32 cultures on my PC. After running this, program shows me exception like “ System.ArgumentException: Culture ID 2155 (0x086B) is not a supported culture. Parameter name: culture ” Anyone having idea of fixing this problem I want to ger rid of this error and because of this, I am started getting some other errors. I have Dot Net Framework 2.0 installed on my PC. Is this because of some installation problem of Dot Net Framework To fix this up, I tried uninstalling and Reinstalling Dot_Net_Framework_2_0 but still it did not work. Hi Check the link below. http://msdn2.microsoft.com/en-us/library/system.globalization.cultureinfo.aspx Hope it might help ...Show All

  • Windows Forms Fill in a Grid Freeze Problem

    I have a question reguarding how to impove the perfermance to show data in grid! I have a lot of data to show up in a grid, therefore my app freezes for a little while until it finishes, what I did was excuting the fill method in a thread to speed up the process and make smooth, but it did not, here is my code: private delegate void GridCallback ( DataTable msg); private void GridFunction( DataTable msg) { dataGridView1.DataSource = msg; } public void GridThread() { dataGridView1.DataSource = null ; SqlConnection testConnection = new SqlConnection (connectionString); SqlCommand testCommand = testConnection.CreateCommand(); testCommand.CommandText = "Select * from Claims wh ...Show All

  • .NET Development What is the best approach for mapping external data? Any ideas?

    Hi all: My boss and I are having discussions on what is the best way to migrate data from one (unknown) database to our database. Let me explain: We are looking to develop an application that should be able to attach to any ODBC database to grab data or individual records and import them into our database. Here's the problem, we may be unfamilair with the database or how the tables are laid out, we don't know where the data is located (up to their DBA), it could be normalized where our database or table is not, etc... I wanted to have the DBA for the database we are attaching to create a view of some sort or "export" the data into a specified format and then our application just do a field-to-field read into our da ...Show All

  • Visual Studio 2008 (Pre-release) ScrollViewer with non scrolling area (fixed header)

    How can I have a ScrollViewer with a fixed header (like the Column headers in a GridView). < ScrollViewer > < StackPanel > < Label Content = " Header " /> ...Some content... </ StackPanel > </ ScrollViewer > Best regards, Thomas Andersen You can retrofit HeaderedContentControl to meet your own needs: < Page xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " > < Page.Resources > < ControlTemplate TargetType = " HeaderedContentControl " x:Key = " myControlTemplate " > < StackPanel > ...Show All

©2008 Software Development Network