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

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

daraneko

Member List

Tony Fabian
Toddap_MS
JoeHand
Judah
Doddsy
enric vives
Nagaraj K
Aerouk
Wilson Cheung
StephenWalker
McVicar
setareh
Simranjeev
Fernando Tubio
Helen Cool Granny
DoanHaNam
Matt Lin
shehz
Flamin
tonn
Only Title

daraneko's Q&A profile

  • SQL Server Embedded tab Character

    I have embedded tabs in a text field that I want to import to a destination table. I was thinking I need to replace the tabs with spaces. REPLACE (character_expression,searchstring,replacementstring) Anybody know how to specify ascii in the character expression. If there is a better way I am open to suggestions, however I do not way to remove this in the raw data but handle at transformation time. Thanks, Larry Regular expression work well to match and remove / replace string patterns. To remove carriage return / new line combos, use a script component transform which replaces each occurrence of the pattern with an empty string. To do so, drop a script component on the data flow canvas, sele ...Show All

  • SQL Server dtsproperty problem

    i am not able to program the row delimiter in the columns tab of the flat file connection manager. what shall i do please could somebody help me on this i have programme the ssis connection manager for flat files but i am unable to reach the row delimiter dropdown box programatically.please help me ...Show All

  • Software Development for Windows Vista where is CEAppMgr.exe? - Unable to Install Windows Mobile Software on Vista

    I purchased some third party software for my Motorla Q Smart Phone. When I try to install the PC portion of it on my Vista RTM Toshiba Tecra M5, I receive an error dialog indicated that the setup program cannot find CEAppMgr.exe. Any ideas how to correct this Thanks, -Howard Hey Howard, There are a few things you can try on your own to make this software work on Vista. First make sure during the installation that you are prompted for administrator elevation. If you are not prompted for admin, right click and select "Run As Admin". If the installation is not a .msi file, but an exe then you can attempt to make it run under xp compatibility mode. To do this: right click and go to properties. On the compatibility ta ...Show All

  • Windows Forms Change name of Form1, no design view.

    I created an application that created 'Form1' by default. I renamed Form1 to jpd7main and compiles ok, runs ok. I closed the design view for 'jpd7main' and now I can't open it in design view. Still compiles and runs ok. I even added another form, which I can see in design view. In the explorer window, the new form has a form icon next to the .h file whereas the 'jpd7main' has a header/code icon next to the .h file. Any help would be appreciated. Thanks gqlu wrote: Try to compile the whole project, and then open the designer view. Maybe it will recover some dependencies lost during the renaming. Already tried that, no luck. Thanks anyway. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. (search) 3d prog to create/edit *.x files directly

    Hy @ all. I'm searching a 3d prog to create/edit *.x files directly, without all the exporting/importing issues. The only one I knew is MeshX, are there any others gonzo883. blender is a popular choice for modelling packages.  There's also Milkshape . Both sites should have links to tutorials. I don't believe you're going to find any package (that's free) that does .x directly, they almost all have plugins for exporting. ...Show All

  • Visual C# Use internet explorer urls

    I'm making a webbrowser. Now i want to load the same urls that IE uses to a combobox, and set them too. In fact, I just want to know how to get access to the IE urls, so i can set/get them in my app. I hope that I am clear enough. Thanks in forward which urls favourites or urls in general urls in general, I believe in the combobox there is a property called autocompletesource, in here, set it to "AllUrl" which will then hopefully show the url's stored in the system as you are typing. in the autocompletemode set it to perhaps suggestAppend to make it complete the urls whilst you are typing and filters the url appropriately as you are typing ...Show All

  • Visual Basic MDI Parent to external app

    Hello, Is it possible to use the mdi parent to load an already created app within (else i guess i will have to start rewriting :( ) Suggestions would be useful. Thanks MP Hi Kimble if you read the original message please ignore :) It worked. I now just have to redo the form calls for the original app to open as clients in the new main form.  Thanks MP ...Show All

  • Visual Studio Express Editions Strange issue when building an app :-s

    When i build an application in visual studio express my firefox loads up and loads 3 websites. this is only when i build, install or run the application after install. Doesn't matter what i build i keep getting the same 3 sites. Does any one know what could be causing this I'm actually not so sure it Firefox and the Google toolbar. I use both all the time and I haven't had this problem yet. I too am going to say some form of malware or what not. Personally I'd sot every thing and do a virus scan right away, just to be safe. ...Show All

  • Software Development for Windows Vista Sub-workflows - DesignSurfaceManager

    Hi! I am re-hosting the designer and I want to have sub-workflows. Anyone knows how to use the DesignSurfaceManager Any examples out there Thanks a lot! ...Show All

  • Visual Studio Team System Undefined variable in TFS Build (MSB4102)

    Hi, We have a solution that started out on VS 2005 and was moved into a full VSTS/TFS installation. The solution builds fine on a workstation through the Solution Explorer, but TFS Build generates some errors that we haven't been able to find documented anywhere. Here's the error: d:\POSBuild\POS\POSBuild_Test07\Sources\POSWebApplication\POSWebApplication.csproj(590,3): error MSB4102: The value "*Undefined*\Microsoft.WebApplication.targets" of the "Project" attribute in element <Import> is invalid. Illegal characters in path. POSWebApplication\POSWebApplication.csproj : Solution file warning MSB4122: Scanning project dependencies for project "POSWebApplication\POSWebApplication.csproj" faile ...Show All

  • Visual Studio Express Editions Must be non-negative and less than the size of the collection

    I keep getting the same error message when i start debugging. This recently started and I don't know why because i didn't change anything yet today. I could attempt to fix the problem myself but I the error message I get does not tell me where in the code the error is Does it It builds fine but freezes on the splash screen. - Thanks System.InvalidOperationException was unhandled Message="An error occurred creating the form. See Exception.InnerException for details. The error is: Index was out of range. Must be non-negative and less than the size of the collection.\r\nParameter name: index" well I would start debugging from that splash screen, placing a breakpoint on the form_load event and s ...Show All

  • Visual Studio 2008 (Pre-release) ServiceHost and Mutiple implementation

    I have a service contract with 2 implementation, something like [ ServiceContract(Namespace="xxxxx")] public interface IMyContract { [OperationContract] void Method1(); [OperationContract)] void Method2(); } public class MyService1 : IMyContract { ... } public class MyService2 : IMyContract { ... } and Service1 and service2 should be able to talk to each other. my question are 1. Can i host these two service together (such as put service1 and service2 in same .dll and hosted by same console app) 2. Can these two service talk to each other (such as service1 invoke service2.method1, service2 call service1.method2) 3. if above answer is yes, how to configure thanks advance ...Show All

  • Visual Studio Tools for Office Call VSTO Addin functions from external application?

    Hi all, Please pardon me if this is not the right place. I'm looking for a way to call functions in a VSTO Addin from an external application. In VS2003 and Shared Addins, I used to be able to do this using this code in the external app: lole_object = iole_outlook.COMAddIns.Item("OutlookIntegrator.Connect").Object -- synchroniseAppointments() is a publically declared function in the Addin lole_object.synchroniseAppointments(ls_diarynoteIDs) However, when trying this using a VSTO addin, it did not work. From what I can gather after some research, this seems to be just the way VSTO addins are setup. It is an Outlook addin. I was wonder what other methods do you use instead to access func ...Show All

  • .NET Development Combining xpath queries

    My path is to ( my conditional ) /Events/CompanyABC/Transaction/ProductList/Product/Event/Code = 435 The actual node I want: /Events/CompanyABC/Transaction/ProductList/Product/LoanList/Loan/ReturnedType I tried this: //Events/CompanyABC/Transaction/ProductList/Product[./Event/Code = '435']/LoanList/Loan/ReturnedType But it doesn't return anything. How can I combine the conditional into the xpath statement. This has to be one string, I can't split it. Thanks, Nick As others have noted, you haven't expressed well what is the structure of the xml document and what nodes (under what criteria) should be selected. Just guessing, you may probably be after something like this: /Even ...Show All

  • Software Development for Windows Vista Invokeworkflow with required parameters

    Dear All, I drop an InvokeWorkflowActivity to any workflow. If i'm in the designer, and set the TargetWorkflow property, the property browser show all public properties exposed by TargetWorkflow type and it's easy to set/bind them. But how can I make this binding mandatory Acually i've made a "child" workflow that needs some parameters, and it would be a good thing not to forget setup in design time. My original idea was to inherit from InvokeWorkflow and add a custom validator class, but since InvokeWorkflow is sealed this is no way.... What do you think is there a simple way or should i make a custom activity and using IStartWorkflow in Execute method... Than ...Show All

©2008 Software Development Network