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

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

Ferko04

Member List

Luis Estrada
Hegbom
Robin Speed
christopheL
Larokas
ChangXU
MSDevUser
Bloke
CAM
NonGT
Ian Tien
z-mann
bravipandey
Kabouter
William Lowers
Bogi
c#_coder
fcjam
Asian Dragon
SCIMalta
Only Title

Ferko04's Q&A profile

  • SQL Server How do you process AS objects from the command-line?

    Hello, Quick question. How do you process AS objects from the command-line. I've read this: http://msdn2.microsoft.com/en-us/library/ms186673.aspx and asusme I need to issue such an XMLA command but I don't which command-line tool enables me to do it. Natural assumption is that its SQLCMD (seeing as you can do this from SSMS) but I thought I'd better check. Thanks -Jamie Hi Jamie, Here's one interesting way I found, using cscript to point to the web service. cscript //nologo xmla.wsf /url:"http://localhost/olap/msmdpump.dll" /c:"Adventure Works DW" /d:measures /r:"catalog=Adventure Wor ...Show All

  • Visual Studio Team System TFs Proxy fails to connect to the team foundation server.

    When ever a client request a file from the TFS proxy server, the request failes and and error are recorded on on proxy server event log.  Detailed Message: Unable to obtain registration data for application VersionControl. Exception Message: TF30055: Visual Studio could not find or read the Team Foundation Server server name in the configuration file. Contact your Team Foundation Server administrator. (type VstfNotConfiguredException) I can confirm the url to the team server on the proxy server via the browser.  has any body a solution for that Regards Christian Hi Dan I Found the error I ...Show All

  • Visual Studio 2008 (Pre-release) Lambdas in Custom Attributes

    I want to pursue the concept of embedding lamdbas in custom attributes. It is not supported today to my knowledge but I believe could be very valuable for DLINQ and more.  public class Customer {   [Association((c, o) => c.CustomerID == o.CustomerID && o.Status == OrderStatus.Incomplete)]   public Order[] IncompleteOrders; } I believe that a syntax such as this would generalize the join conditions that are supported by AssociationAttribute and allow for additional conditions. In that way, queries need not repeat those conditions.  Note that regardless of whether DLINQ adopts this, there is a deeper is ...Show All

  • .NET Development ThreadPooling in c#

    I have to upload 70 files using ThreadPooling and code i have used is as below.I have set the maxthread size as 10.But it is uploading only 8 files. Please tell me how to make it work.Also if u can please give a sample code.Help will be greatly appreciated. WaitCallback callBack = new WaitCallback ( UploadFileEx0 ); for ( int i = 0 ; i < 70 ; i ++) { if ( true == isThreadAvailable ( true )) { ThreadPool . QueueUserWorkItem ( callBack , GetFileName ( this . listView1 . Items [ i ]. ToString ())); } else { MessageBox . Show ( "Worker thread not available &qu ...Show All

  • Visual Basic Relase the Fix for Visual Basic Compiler Error &amp;H8013141e&amp;

    Hi all i just want to know when is going to be released the fix for visual basic compiler error &H8013141e&   this is already reported in the microsoft productfeedback site. i think this is a very urgent patch that must be released asap and please do not repond that i should go back to vs.2003 because i have lots of code developed in VS 2005 to framework 2.0 ..   JSB PS: this error pisses me of, i need to restart VS.IDE every 5 minutes. i think this is too bad for a recent relesase product ( its full of Bugs ).   Hi, João, This is a good opportunity (in the ...Show All

  • Windows Forms How do I make a spell check...?

    Hey, I searched for this, but none helped... I am using Visual Basic 2005 express, and I need a spell check, but I can't figure out how to do this, if someone finds/knows a program that will let you put the words in it and it will give me the VB2005 express code thats fine, but if you want to give me code...I would be fine getting a 3 word spell check so I can go from there...ummm..I dont really want to use the MS Word spell check, k Thanks actualy, I found the 1.1 and now it works, hold on, the netspell one Is really confusing, so I gunna check out the other link you gave me...   EDIT: Ok..never mind, the ot ...Show All

  • SQL Server Bar Chart Static width

    I have developed a subreport with a bar chart that is the width of a lanscaped page. When presenting a series of bars, the width of each bar changes depending on the number of data points presented. My objective is to present each bar with the same width regardless of the number of data points. Can anyone help me -- please If you just want to draw bars, you could use a different approach which guarantees identical width regardless of the amount of data. The approach uses a nice little trick Bob and I came up with a couple of months ago (discussed in Bob's blog: http://blogs.msdn.com/bobmeyers/archive/2005/1 ...Show All

  • Visual FoxPro SELECT statement is showing unwanted display of data and is not passing data to a table.

    I'm using a SELECT statement to pull out data from a table... that is working great. What I'm trying to do is feed the selected data to a different table using REPLACE so that it can be used by a report. All of this is triggered from a command button on a form. Here's the code for the CLICK property of the button: SELECT store, stock, year_1, make_1, model_1, auction1, transport, recon, sold_for, fees, net_check, result ; FROM wholesale_table1 ; WHERE In_Date >= DATE ()-60 ; && sets a sixty day date range AND sold_for < 1 && removes all sold vehicles && store.value ='DODGE' -> uncomm ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Vertical Sync in Managed Direct

    I am experiencing a tearing effect on the edge of objects which are moving. This seems to me to be the classic problem which vertical syncing was designed to address. The idea being you syncs each frame to one refresh of the monitor. So you in effect lock the FPS to the monitors refresh rate. How do I implement vertical sync in Managed Direct X. I have scoured the web and MSDN. I have found references to it in Direct 7 using the C++ interface, but not Managed DirectX or even Direct X 9. Is there some better way of stopping the tearing effect I am experiencing. Also how do I cap the frame rate, as my app at 250 fps is very smooth ( ...Show All

  • Visual C# intercepting onclik

    Strange request... I have a program written in asp.net and vb. I want to try to intercept a click on a button with my program. Is it possible I explain better: i want my application (console/win/web) does click of the other program (winform).. thx It will be difficult, you can do it with putting messages in the message queue i think. But that is hard and can not be done with managed code. I suggest to use the SendInput API method and call it with P/Invoke, you can find a full sample on the P/Invoke wiki . ...Show All

  • SQL Server Move data from backroom to frontroom

    I need to know the quickest way of moving/copying data from a backroom/import/qualitycheck database to the production environment. The databases reside on the same server instance, the tablestructure is identical and I'd preferably like to use T-SQL procedures, rather than DTS/ETL. Can I make use of bulk loading, openrowset or ... from one table to another Luckily I'm not in the need of update procedures. All data from the backroom that is accepted as productiondata will be accumulated in the production environment. We're doing the transition to SQL Server 2005, so I think we'll have a go with the SSIS ETL ...Show All

  • Visual Studio Cannot connect to SQL Server 2005 Express CTP

    Hi, I also tried to install the SQL Server Express April CTP edition from the DVD, ran into problens and worked around by manually installing the SQL server. I now have a running instance that can be checked with the surface manager but: - no tool including VS 2005 beta2 can access the instance When I try to connect with the proper hostname and instance name, I just get timeouts. Any suggestions Yes thats the answer....... Thankyou though i cant beleive i spent about 6 hours trying to figure this out on my own i should have known this. [servername]\SQLEXPRESS using Windows Authentication will do the tri ...Show All

  • Microsoft ISV Community Center Forums html tag not working

    Anybody can tell me why the COLGROUP tag below does nothing to my table Sub send_email_confirm() Dim objMail As MailItem Set objOL = New Outlook.Application Set objMail = objOL.CreateItem(olMailItem) ' determines if sale or purchase Dim side As String If Sheet2.Cells(6, 8) < 0 Then side = "Sold at " Else side = "Bought at " End If With objMail .To = " tradeallocations@trade.com " .CC = "trade" .Subject = Sheet2.Cells(1, 3) & ", " & Sheet2.Cells(1, 2) .BodyFormat = olFormatHTML .HTMLBody = "<HTML><BODY><B>" & sid ...Show All

  • SQL Server Can This Be Accomplished in My Time Dimension in my AS2005 Cube?

    In my AS2005 cube, I have a time dimension with the following attributes: year, quarter and month. Also, there is currently no hierarchy by design. Is there a way to make a custom attribute/time period that reflects the last 12 months (R12M) and work in the same manner such as year, quarter and month The time dimension would then have: years, quarter, month and R12M. As a result, a user can drop a measure such as Sales Amt and then add the R12M attribute from the time dimension and would then receive the total sales amount for the last 12 months. I hope that made sense. I can and have written a calculated member for R12M Sales, b ...Show All

  • Visual Studio Team System Project alert from Code coverage

    Heya. Is it possible to get a project alert when the code coverage percentage fall below a set threshold when a team build completes For example, the team project is built on a build server every night. Unit tests with code coverage is run if the build is successful. I'd like to receive an alert if the code coverage percentage for the project Utility falls below 75%. Is this possible Cheers, Chris We do not support out of the box customization of alerts on different events Chris. Currently, Team Build sends out alerts only on build complete and build quality change. Please refer here  for an alternate ...Show All

©2008 Software Development Network