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

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

FreddieCode

Member List

elkestra
tomeds
tomorrowswings
BrianMitchellTX
TurboTom
DOlmsted
mrdomiscoding
DanL_DeLorme
kennylouie
Derg Valley Care
Zackling
IIISephirothIII
ckramer
Konstantin E. Gonsovsky
lvquy
Bill Neal
maxim4o
mydarlingdarla
BrandonP
etan
Only Title

FreddieCode's Q&A profile

  • SQL Server SSIS vs DTS - what to compare?

    Hi. I'm working on 'bigger' SSIS vs DTS comparison, but actually don't know where to start. Can someone experienced give me some clues/resources about that I was able to find only some parts, short texts, that SSIS is about 7 times faster, etc. But I need to make some tests and analisis as well. Any help would be appreciated. Thanks in advance, Michal Phew, where to start You could write a 500-page opus on that subject matter. What specifically are you looking to compare Functionality, Performance, or something else Perhaps this might help in regards to functionality : http://blogs.conchango. ...Show All

  • SQL Server Can't connect to Report Server via Management Studio

    Hi, I have a local installation of SQL Server 2005 (Developer Edition) on XP Professional SP2, with Reporting Services, Integration Services, and Analysis Server installed. I can connect to Integration Services and Analysis Server via the SQL Server Management Studio, but not to the Report Server. I can access and use the Report Server installation via http://localhost/Reports and http://localhost/ReportServer , and everything checks out on the Reporting Services Configuration tool, so the server appears to be working fine. I've uninstalled/re-formatted/reinstalled the services (with all default options, and services running a ...Show All

  • Visual C++ How to get current local time of a remote system

    I want to get the current local time of a remote system connected on LAN network using VC++ MFC. Please help me to solve this problem. Don't post duplicate! http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=425046&SiteID=1 Also this post is OT for this forum! ...Show All

  • SQL Server How to: SQL Server 2000 Replication?

    Hi, Can anyone help me How do I implement SQL Server Replication Where, and how Do I have to download specific software to do this, or how What would be the right option Thanks SJB ya thanks, I saw that after I posted the message. thanks ...Show All

  • Visual Studio 2008 (Pre-release) Select multiple Items in a Listview from codebehind

    Hi all, i have a question about ListView. I want to select multiple items in the ListView from codebehind, but it selects only the last item. Here is my sourcecode: public ObservableCollection <Person. PersonObject > SelectedObjects { get { return ( ObservableCollection <Person. PersonObject >)lv.SelectedItems; } set { IEnumerator ie = value .GetEnumerator(); while (ie.MoveNext()) { lv.SelectedItem = ie.Current; } } } lv ist the ListView with a databinding to an ObservableCollection of Person items. Has anyone a solution for me Herbert ...Show All

  • Smart Device Development Z Order of Forms - SendToBack() BringToFront()

    I've created a modeless form, and everytime I create it, regardless of using BringToFront() on it, or send to back on the parent, I can't get it to come to the foreground. Is this function not implemented in .NET CF Thanks. Any solutions Can you show your code. Have you tried using the .Show() and .Hide() methods You may need to have a parent in order to use .BringToFront() and .SendtoBack() ...Show All

  • Visual Basic Bug in For .. Next with Single data type

    Try the following simple code, by stepping through: Dim S As Single, T As Single For S = 16777214 To 16777218     T = S - 16777214 Next S Once S reaches 16'777'216 (hex FFFFFF) it will stop incrementing in the for..next loop, consequently T will remain at 2 I have the following System: Windows XP Professional, Version 2002, Service Pack 1, CPU is Pentium 4 CPU 2.4 GHz,  CPU-Driver Microsoft processr.sys Version 5.1.2600.1106 and Visual Basic 6 Version 8176. The same behaviour occurs with my office computer and laptop. Where is the problem Glad to get feedback at net dot meier @ bluewin dot ch ...Show All

  • Visual Studio Express Editions Help with MDI Form.

    How can i get like a taskbar sort of thing where you click on the button and it shows that form like in this example http://www.winmxunlimited.net/pic11.png The parent form has an MdiChildren property that is an array of Form references to the child forms. You can use that to access members of the child forms like Text and Focus. It's not really necessary though because the MainMenu and MenuStrip classes can automatically put a list of child forms under a menu item. You simply assign the desired item, which would normally be named "Window", to the MdiListItem property and the rest is done for you. The property name is slig ...Show All

  • Visual Studio satellite dll not found in RC1

    I recently upgraded to release candidate 1, and now when I run my addin, AddNamedCommand2(..false, 1,....) throws the following exception: System.IO.FileNotFoundException: Could not load file or assembly 'MyAddin.resources, Version=1.0.2125.31379, Culture=en, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. File name: 'MyAddin.resources, Version=1.0.2125.31379, Culture=en, PublicKeyToken=null'    at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, ...Show All

  • Visual C# use win32 in c#

    im trying to use a win32 dll in my project so do i need to add a reference to the dll till now i wrote-   [DllImport("DLLName")] public static extern void methodName( int t); i put the dll in the directory of the project and in main i tried to run a method --> methodName(2); and im getting the exception -  Expected class, delegate, enum, interface, or struct what im missing what else i need to do thanks in advanced i tried that 2 but im still getting that error (and the "void" in the methos signature is signed in red) what can it be ...Show All

  • Visual Studio How to find the parent of a relationship link? WAS What can be created with DSL?

    It would be better if someone could post the example which generates some .cs file other than the .htm file which we have in walkthrough. Also, how can we get the parent concept and child concept of a relationship link from the modeler For Example, I have three concepts A, B and C. A and B is related through a relationship link AHasB and B and C are related through a relationship link BHasC. So By accessing any of these relationship links how can we access the parent and child concepts of these relationship links in the report template thanks, Arumugam J Taking the AHasB as an example, if you have an ...Show All

  • Visual Basic ActiveX Web Browser - Is this possible?

    I was wondering if someone could tell me if the following is possible, and perhaps set me on the right track: Create an ActiveX Web Browser on a form, navigate to a certain page, programatically click links on said page, programatically manipulate a drop-down box on the page, programatically click a button on the page, capture the pop-up web browser which comes up and parse the data from that browser. I would be most grateful for any help I might receive on this matter. Thank you for your attention. Michael Blaustein   Hello, I believe that it is possibe to get logged in to a website using VB6 Interf ...Show All

  • Software Development for Windows Vista CoCreateInstance Fails When i create a custom Null sink filter

    Hi I have created my own Null sink filter which works on a sample application. But when i do CoCreateInstance on this NUll sink filter in my application it fails. My application is for smart phones win mobile 2005 pocket PC sdk. I call this co createinstance from another DLL. Please help Regards Adil Saleem i get a E_OUTOFMEMORY, but in the null sink filter that i have created we set the error code to E_OUTOFMEMORY when new on the constructor of the constructor fails. The following is the code inside create instance CSampleGrabber *pNewObject = new CSampleFilter(NAME( "SampleGrabber" ),punk,phr ); if ...Show All

  • Windows Search Technologies WDS 3.0 beta error

    I nstalled WDS 3.0 Beta at promting of Outlook 2007 beta. Now when I run Outlook I get an error with no details. I want to disable or remove WDS 3.0 Beta. How can I do this Hello Bshivley, WDS should not be causing the errors to which you are referring, but if you wish to remove it you can do so by doing the following: Go to Start:Control Panel Click on Add or Remove Programs Click Remove a Program Select Windows Desktop Search and click the Remove button Please let me know if uninstalling WDS fixes the problems you are seeing.  If it does, it could be an unknown issue with ...Show All

  • Visual Studio Team System Subscribing to Events

    Hi, Apologize. For lack of a better forum I am placing my query here. If there is a better forum which I am not aware of, please let me know the same. Regarding my query : I need to subscribe to TFS ProjectCreatedEvent and this is the code I have public bool SubscribeToTFSEvents( string TeamProjectName, string WSUrl) { if (m_TFSVariablesInst == null ) { m_Logger.WriteLog( "ERROR: TFS variables instance is null..." ); return false ; } string userId = m_ConfigParams.UserDomain + @"\" + m_ConfigParams.UserName; m_Logger.WriteLog( "TRACE: User Id: " + userId); ...Show All

©2008 Software Development Network