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

Software Development Network >> Farhad.Jafari's Q&A profile

Farhad.Jafari

Member List

Allenr
Keith Elder
XtremeKP
Yoshihiro Kawabata
WinFormsUser
Cynthia Joffrion
Eric Flores
bakusek
BarryMarc
RogerDontLikeReports
slayerizer
T.C.
Passerelle
xprs
jemmyw
TJM_MC
tala
tolko
Sam_L
Bryce White
Only Title

Farhad.Jafari's Q&A profile

  • Visual Studio Team System 28100 Error during installation

    I am experiencing an 'Error 28100. Error loading Event web service.' problem with the Beta 3 refresh. I've tried everything I can think of a and all the suggestions made in other threads and the MSDN Product Feedback Centre regarding this error but to no avail. My setup scenario is this: Clean install on dual-CPU Dell server, Windows 2003 Standard edition with SP1, all other software as defined by the installation guide. I've been using SQL 2005 Enterprise edition as a post on Rob Caron's (I think) blog suggested that there is a problem running the beta 3 refresh on SQL 2005 Standard edition. The server is a member of our ...Show All

  • Visual Studio Tools for Office Insert image into Excel from My.Resources.Images

    Hi group, Anyone have suggestions on how to add an image into Excel from My.Resources Excel's Shapes.AddPicture requires a string filename. Dave Thanks for getting back, I can't use win controls because they do not work if the Excel worksheet is not zoomed to 100%. The picturebox idea works just fine except there is not way to stop the 'Windows Forms controls have been disabled because the document has been scaled...' if the picturebox is clicked. All I wanted was a static image inserted into Excel. I have decided to stay with Excels shapes object. I can save the resource.image to disk, a ...Show All

  • Visual Basic Tabbing Comments (VB)

    Hi - I'm using Visual Basic in VS 2003, and I've got 'Pretty Listing' on (it's the default) but I want my comments at the ends of lines to line up nicely, regardless of the length of the program line that they're on.   They seem to have a mind of their own as to what column they want to start in, and I can't get them all to start in the same one, whether I use tabs or insert spaces! What's the logic behind it, please, and can I override it (I've also got 'Enable Virtual Space' on, but it doesn't seem to affect the comment positioning) Thanks, Graham Rounce I think your out of luck on having al ...Show All

  • Visual C++ how to package .NET Framework?

    Hello, With great help from people here I have gor my app working! Now, how do I package it so that when installed on a user's PC it will check to see if .NET Framework is installed (v2 needed for Visual C++ 2005 Express Beta 2 ) and if not, will install the correct version for Windows 98, 2000 and XP Cheers Geoff Ayman, Thanks for the info and links. Cheers Geoff ...Show All

  • SQL Server Using Triggers to track Changes in a single Audit table

    Hi, I am looking to track any changes made to any table within a db into a single audit table which will hold as fields: the table that has been updated/inserted, the field that was changed, its primary key, the old value and the new value specific to that field, and the date it was updated/inserted. From what I have read, it does not look like this is possible with a trigger on table as it is not row specific and that I might have to control this from the business layer (vb.net). I am correct in this assumption, or is there a way of tracking specific data changes through triggers. thanks Welly ...Show All

  • SQL Server Using SecurityFilters of Report Builder Samples

    Dear Anyone, Does anyone know where I can find some samples on how to use the securityfilter features of report builder We have several report models that needs to be secured but unfortunately, books online does not seem to carry any samples regarding securing report builder models.   Thanks, Joseph Makes two of us - needing this info. This information is just not to be found - I guess it is securely stored away in a vault somewhere. I also cannot believe that this is not a common requirement ... being able to secure a model by filtering rows. We have a database containing many organisations (our clients). We have ...Show All

  • Visual Studio Express Editions Simple Printing

    Hi can anyone please provide me with the codes to print the contents of my text box when I press the button on my form. In Visual Basic Express. Just One Button and One Textbox on the form. When Button is Clicked The Contents of the text box is printed to my default printer. The Codes will be much appreciated. Thanks... You can search the forums, or use the IDE to search for printing. There are several examples. Here's a link to the MSDN Online documentation with an example of how to print, but you can also find it within the local documentation: http://msdn2.microsoft.com/en-us/library/system.drawing.printing.printd ...Show All

  • Visual Basic VB.NET main procedure

    thsi is going to sound really stupid and in fact it is, but give me the benefit of the doubt as I am a new user!! I am trying to run a VB.NET windows application and every time i do i get the error message: No accessible 'Main' method with an appropriate sigr What exactly is this and what do i need to include in the procedure to get my application to work The only code I have is on Form1_Load where I fill a dataset which goes something like this: OleDbDataAdaper1.Fill(CustomerDataset1) Any help would be appreciated Thanks! ...Show All

  • Software Development for Windows Vista error VFW_E_NOT_FOUND while using pFilter->FindPin(L"XForm In",&pIn);

    Hi, I'm trying to directly connect the pins of the filters I have added in my graph. I therefore use the following function to get the proper pin for each filter: HRESULT GetPin(IBaseFilter *pFilter, PIN_DIRECTION PinDir, IPin **ppPin) { if (!pFilter || !ppPin) return E_POINTER; *ppPin = NULL; IEnumPins *pEnum; IPin *pPin; HRESULT hr = pFilter->EnumPins(&pEnum); if (FAILED(hr)) return hr; while(pEnum->Next(1, &pPin, 0) == S_OK) { PIN_DIRECTION PinDirThis; hr = pPin->QueryDirection(&PinDirThis); if (FAILED(hr)) break; if (PinDir == PinDirThis) { // Found a matchi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Camera Movement

    Ok, so I figured out how to move the camera with the keyboard. Now I wanna know how I can move it with the mouse! I want to be able to change the camera's Target using the mouse, and position using the keyboard (FPS style). I read some of the samples in which comes with SDK, but I could not figure out really which part was essential for moveing the camera. Please help me on this one =) thx Having been familiar with older revs of directx in a past lifetimes and having written my own camera code a few times now---and coming up to speed on DX again- the demos and documentation in the latest SDK's don't do a lot of justice to taking advanta ...Show All

  • Visual Basic Weird Change in Form's Height

    Hello ... I've a Project where all my forms are set to 1024*768 (FormBorderStyle= 0-None) when i run the program I see that it doesn't cover all the screen when i check the height i see that it's 753 even when i end the Program and get back to the visual basic i findout that it had been resetted to 753 ! Now I've searched the Web if there is a Limit to the height when using 1024 as an example ... but i didn't find any clue I can fix this by setting it at runtime but the Problem is that some controls MOVE when i change the height... so that's not the Optimal way the right way is to know the cause of this. Thanx in Advance ! ...Show All

  • Visual C# How can I draw a circle with radius and area writen on?

    I have made an calculator that calculates the area of an circle when a user input the radius. So i wounder how i can (using C#) draw the circle with the measure on. Sorry if it is bad english. Thanks to those who wanna help! Thanks do you have any good tutorials to recomend ...Show All

  • SQL Server Analysis services stops

    Hi guys, I'm using sql 2005(june ctp) and installed patches. When I try to browse my processed cube in either management studio or dev't studio, the analysis services stops. Below is the error message from the event log. The connection either timed out or was lost. Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. (System) Any idea. Are there any configuration that I need to do. Any help will be appreciated. Thanks, I have the exact same problem when I try to process a large cube. The processing stops with same error message and the Analysis ser ...Show All

  • .NET Development encoding xml in webrequest

    I am trying trying to send xml in a webrequest object to a 3rd party system, who receives the request via an .asp page. They sent us a sample asp script that utilizes the ms xmlhttp object. In their sample code they encode the xml that is to be sent to them using utf-16. When I try to encode the xml in my webrequest object using UnicodeEncoding, I never get a response. If I change the encoding object to UTF8Encoding and the PI to utf-8 (or uncomment the StartDocument() method call), it works. But the response is empty when it is utf-16 and Unicode. The asp code works, but the following does not, any ideas HttpWebRequest request = (HttpW ...Show All

  • Visual Studio Team System Launch Error, no data was collected

    More often than not, when I run a Performance Session, I get a small dialog box that says: Launch Error PRF0025: No data was collected. However, the session does create a .vsp file that I can then add to the Performance Explorer and view the report.  Is this a known issue, or am I doing something wrong Thanks, Bob Willer BetaID 267513 Lucky me.  :) Patrick, are you running in sampling or instrumentation mode   Do you get the same problem with memory allocation collection turned off   Does the data look valid when you open the report (the data looked somewhat valid to Bob) Have you t ...Show All

©2008 Software Development Network