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

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

Corneloues

Member List

Manmeet Panigrahi
Kamii47
sjokkogutten
Rocket horse
georgeob
mszlazak
cwmoor
dreameR.78
EagleBeek
Alex Galkin
theycallhimtom
Dr. Zoop
Kur Lan
duck thing
ebby
Tom Dierickx
adorer
cybertaz69
adorer
NetPochi
Only Title

Corneloues's Q&A profile

  • .NET Development return "hello world"

    I've created a simple webservice which works in a browser, but how can i get it to return the string of "Hello World" into a vb.net application to me, that code there is telling me you are returning back Calculator.ServerDocResult, correct SVC1 is the NAME of the function, not the return type. so I guess.... public function Svc1(ByVal DocumentName As String) As Calculator.ServerDocResult 'Do stuff here with ServerDocResult object return theServerDocResult End function have you ever developed in VB.NET It's the same for webservices (to a certain extent I guess). :-) so if I had a class called "Person". a Person has many attributes (propert ...Show All

  • Visual Studio Error with installation

    I would like to install Visual Studio 6 Pack and it reports me error with message that Visula Studio Service Pack 6 was not completed successfully. I kindly ask you to help me what is wrong VB6 related questions should be posted here: http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx dg=microsoft.public.vb.general.discussion&cat=en_us_ab067bc0-bda5-4921-a1ec-e76402873945&lang=en&cr=us since these forums are for VS.NET ...Show All

  • Visual Studio Custom Tag: <Overloads>

    Is the <Overloads> tag functional in the November CTP How should be used Regards Okay, I didn't understand that you were using external comments.  That aside, I believe it is working as expected and that you are just misunderstanding how it works.  <overloads> is just putting a message on the root node page.  It isn't altering how the items are grouped or how they are listed on the type's member list page.  In there, they will still be listed individually.  To change that behaviour would probably require reworking the XSL transform that generates the member list for a type. Eric   ...Show All

  • .NET Development Updating dBase tables

    How to update dBase (.dbf) tables I can read them with Odbc or OleDB but CommandBuilder can't create UPD, INS and DEL command based on 'SELECT * FROM dbf_table_name'. Exception is: "Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information." Yes, with PK column I can update but in most cases I don't have PK col or don't know where is it. How MS_Access change dbf files when I link them There must be some way. Please ignore this post. It is a test post. The forums team is testing Alerts. This post will be deleted in a day or so. Thanks Jana Carter Forums Program Manager ...Show All

  • Visual C# Querying AD using System.DirectoryServices

    I am new to querying AD and could use some help. My requirements are to get all email addresses, email aliases, and email domains from AD. Does anyone have a sample of this Thanks, Derek Do these scripts need to run on the Domain Controller Locally Or can you connect remotely using the LDAP connection format thingy ma' jig LOL... ...Show All

  • .NET Development Reading data from Excell Sheet in VB.Net

    Hi, I'm want to read data of an Excel file in VB.Net. I'm using SQL Server as my backend. I also want to know which namespace should be imported. So help me. Thanks Hi, You can connect to the excel file directly: Dim strConn As String = "Provider=Microsoft.Jet.OleDb.4.0;" _ & "data source=f:\inetpub\wwwroot\dotnetjohn\NameAndAddress.xls;" _ & "Extended Properties=Excel 8.0;" 'First DataGrid Dim objConn As New OleDbConnection ( strConn ) Dim strSql As String = "Select LastName, FirstName, Address, City, State From Addresses" lblSql1 . Text = strSq ...Show All

  • SQL Server SSIS refresh fails

    When I use the OLB data source (SQL SERVER 2005), select * from tableA, then use several steps and then Union ALL and Fuzzy Match, the process works fine. When I change the data source SQL to include two tables with a cross join, the new fields in Table B do not appear in the Union ALL or Fuzzy Match steps but do appear in all steps prior. The advanced editor refresh does not fix the problem. Deleting and recreating the Union ALL shows the Table A and Table B fields. Fuzzy Match is still incorrect. Deleting and recreating Fuzzy Match fixes it. Thanks for the help. I'll read in the Wrox book. There seem to be more issues with refresh not picking up the metadata or I'm using it wrong. When I create d ...Show All

  • SQL Server How to run SQL Server Exp 2005

    Dear friends I have installed SQL Server Express Edition (55 mb). Program >> Start >> MS SQL Server 2005 >> Configuration Tool ... this is what being displayed. This is my first use of MS Sql Server, before this I was using Oracle and after installation one could see Sql Plus from where the user can log in. I am confused how to start SQL Server Expr 2005 edition and try some sql. Please help me out.. Have a nice day Ramniklal If you want to run commandline queries (I know that Oracle guys like that :-) ) you can use the OSQL.EXE (but this will be deprecated in the future) or the SQLCMD.EXE which is the successor of the OSQL.exe. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005. ...Show All

  • SQL Server Calling Reporting Services from SSIS

    Hi I have created a packages which pull and push the data to SAP server. I want to create a report every day and send that report to the manager. For the same i want to call reporting services in my SSIS package. I know i can write a SQL script and export the report in excel but i want to use Reporting services. Have any one call reporting services from ssis. I got working, I scheduled a report on report server and in turn it creates a job on sql agent and from ssis I used execute job task and subscribed report file to a folder. i have email task to send the report as an attachment. Thanks for the help. ...Show All

  • SQL Server How to import word documents into SQL Server

    Hi All, I need to import multiple word documents of same structure into SQL Server table. Could anyone suggest the way of doing this Thanks, Hemal Shah wrote: I mean i want to extract information from word documents into sql server tables. I'm not sure really. This isn't a common request seeing as Word documents are not structured files. The normal answer to extracting unstructured data using SSIS is that you're going to have to use code. You can download Primary Interop Assemblies for Office that enable you to interact with Word documents using dotnet code - hence you can use them in a script task/component. -Jamie ...Show All

  • Commerce Server Displaying Discounts for Product

    Hi, I'm trying to figure out a way of displaying the discounts that apply to a product on the Product Page of our site. I don't seem to be able to find a direct way of doing it so I have created a couple of triggers on the CampaignItem & Expression tables and I'm in the process of writing a Windows Service to pick up the changes logged by the triggers and write them out to a "Promotion_Product" table where the relationships will be cached. This should give me a fairly efficient way of checking the product_discount & discount_product relationships. My problem is that I can't see a straighforward way of converting the xml expression body into a sql where clause. If I could use the xml expression in a catalog search ...Show All

  • .NET Development Accessing settings from a windows control library project

    Here is my problem. i'm using vs2005 to write application for framework 2.0. consider a solution with a windows forms application project and a windows control library project. The problem i have is with this control library project. in the control project i have added an application setting of type connectionString. the studio made everything ok: it created the settings.designer.cs file with the settings wrapper and the app.confing file with the xml representation of the project's settings. Next, in the code of the project i have used the following code to access the value of the setting: string str = projectname.Properties.Settings.Default.ConnectionString; projectname is the name of the project, and ConnectionString is the name ...Show All

  • Visual C# How to raise an event

    I have two forms form1 and form2, when i click a button in form2 I want form1 to do something only if a button in form2 is clicked....How do i set up basics for an event to take place in this manner any help... No event is needed in what you are trying to achieve. Create some public property or function on the form which has to work. On the other form's constructor, pass the reference of first form so it can call that function or property. Handle the Click event of the button on this form and call the othe form's function like this: mainForm.DoWork(); Cheers ;-) ...Show All

  • Visual Studio Mouse click in the Domain-Specific Language Wizard on the Finish Button results in a HRESULT 0x80070005(E_ACCESSDENIED)

    When I click the Finish button in the Domain-Specific Language Wizard ( New Project->Other Project Types->Extensibiltiy-> Domain Specific Language Designer) the result is the following Exception: Zugriff verweigert(Exception from HRESULT:0x80070005(E_ACCESSDENIED) After that, an empty solution is created. I use the Septmeber 2006 1 Release of the Domain-Specifig Language Tools. Hi, I am using an english Version of Visual Studio Professional (Version 8.0.50727.42) and a german Version of Windows XP Professional Sp2. Yesterday I have uninstall some WinFX Beta components, Visual Studio und the Visual Studio SDK. Afer that I have install Visual Studio and the Visual Studio SDK. Now all is working. Maybe I ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. BasicEffect Class Acting Odd?

    When I use my own HLSL shader to handle VertexPositionNormalTextured data. My textured quad appears perfect on the screen with no irregularities. But when I try to use the BasicEffect class to handle texturing etc. The texture looks as though it has went through some sort of filter or something. Here is an example image of what is going on. If you zoom in you can see the blurring on the edges and for some reason the white block in the left corner is being partially brought over to the top right My first guess is there is some property in BasicEffect I am missing, but I skimmed through it looking for anything that may do this and found nothing. The BasicEffect shader doesn't do anything fancy with the texture lookup, just a regular ...Show All

©2008 Software Development Network