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

Software Development Network >> R. B. Oberholz's Q&A profile

R. B. Oberholz

Member List

sandeeppatwardhan
Yahooadam
Shelby Eaton
awperli
LarryBiStack
Windiestpeak
Amerloque
daviesl
Hemant K
DrunkenSniper
erossetto
Jurgen Willis
DialogDude
desertgeek
sultan000
SAJU JOHN
Windsocks
WallStreetVH
Michael Dvoishes
Rob Blackerby
Only Title

R. B. Oberholz's Q&A profile

  • Visual Studio language services

    I have not gotten a chance to install B2 of VSIP, but i would like to know if there is any new documentation on adding language services in managed code Yes, there are several new and updated topics on language services in the beta 2 VSIP SDK doc. We also hope to very soon have a doc update available on vsipdev.com. Bob Arnso n :: Visual Studio Extensibility User Education ...Show All

  • .NET Development Call me an idiot at the end

    Hello, I'm primarily a company secretary, although I am realising the practical power of this er thing. I'm reading the instruction manual for VWD Beta2, and would like to begin working with data forms and grids, although I cannot connect to the recommended Northwind DB. I'm using a local server because this stupid f..., telecommunications company doesn't run any dynamic script! So, any suggestions would be greatly appreciated. I'm using Windows XP Home; tried upgrading to XP Pro but MS's evaluation tool said I did not have too. Your assistance may be invaluable. Kind regards Thanks DMan, I think I get what you mean. But don't tell me a ...Show All

  • SQL Server Sufficiency of SSIS within Standard Edition

    I am a SQL 2005 newbie, but well-acquainted with SQL 2000. I am building a Data Mart ETL process that is going to be fairly small and fairly simple. I surveyed SSIS and see that SSIS has much more capability than SQL 2000 Data Transformation Services (DTS) and is Microsoft’s attempt at a full-featured ETL tool. It appeared I could possibly use SSIS to completely design, implement, and manage my ETL process. We have SQL 2005 Standard Edition with Service Pack 1 applied. To further investigate SSIS capabilities, I used SSIS to design a process to populate a simple dimension table. When I use this process to popul ...Show All

  • Windows Forms Read line to line in an array from an textbox

    Hello I have a textbox with many things on each line one thing i give an example http://svekke.sin.khk.be/accijns.JPG I need line 1,2,3,5 8,9,10,12 ........ line 1 and 8 are the same --> must be in an array 2 and 9 are the same --> must be in a different array 3 and 10 are the same --> must be in a different array 5 and 12 are the same --> must be in a different array I hope you can help me To do this You could create an array of arrays. Then read the first line from the textbox, create a new array in your array of arrays and assign it as the first value. The ...Show All

  • Visual Basic Search in access database?

    Hi. Im new to programming.! i made a program that is showing the data from a access.mdb file. That works i can see all data one at the time, when i click the forward arrow. What i need is, what to write when i want to search after data in the access file.. I have made the TextBox1 and the word i want to search after i type in there, and then push a button , and then the data from that will show in the fields i have made for that.. I tave tryed this under the button area, Private Sub Button1_Click_1( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me .Qth_oz_listenTab ...Show All

  • Visual C# problem with property update...

    using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; namespace test { public delegate void D (); public interface IA { event D Event; } public struct A : IA { public int i; public event D Event { add { //assign value here i = 123; } remove { } } } public class C <T> where T: IA , new () { public C() { T t = new T(); t.Event += new D (Raise); Debug .Assert((( A )( IA )t).i == 123); } void Raise() { } } class Program { [ STAThread ] static vo ...Show All

  • Windows Forms difference b/w setting an object to null and calling dispose method?

    What is the difference between setting an object to null and calling dispose method of the object  E.g. Object obj = new Object();  obj = null  obj.dispose()  regards Kamran Sorathia I'm not sure there is a consistant rule about objects which are "left behind"...  it seems to depend on the object.  The objects may or may not go ...Show All

  • Visual C# How to deploy webservice

    I have consumed a webservice in my application. I have created the websetup project for the application. I have to deploy the webservice with web setupproject. When i deploy, the webconfig file in webservice should be included. After installing the webservice and Application and i have to make changes to the connection string in webservice manually. Jeyakumar K Hi - This post should be posted on the ASP.NET forums ( http://forums.asp.net/ ).  It will be deleted in 7 days. Thanks! Karen ...Show All

  • Visual Studio 2008 (Pre-release) Getting Started sample not getting service.exe

    Hi, Well, I have been trying to get this first sample "Getting Started" going for a very very long time, and so far, I've been pulling my hair out just trying to figure out what is going on. My question is, when i compile the "Getting Started sample" which is from WIndows SDK, it compiles fine, and I find client.exe but I can not find service.exe anywhere. Neither under Getting Started/service/bin folder which produces service.dll file and service.pdb nor under wwwroot/servicemodelsamples/bin directory. I got the console based sample going but I really want this IIS based samples to work as well. Any help woul ...Show All

  • Visual Basic Program Won't Create New Directory

    I can't figure out why my program won't create new directories. My code looks like this: Public Sub CreateDirectory( ByVal directory As String ) My .Computer.FileSystem.CreateDirectory( "C:\Documents and Settings\Owner\My Documents\movdb" ) My .Computer.FileSystem.CreateDirectory( "C:\Documents and Settings\Owner\My Documents\movrat" ) End Sub I'm trying to have the program create the 2 directories "movdb" and "movrat" when it first starts, but it doesn't create them. I was wondering if anyone knows what could be wrong Thanks   hi, Is your problem solved Thank ...Show All

  • .NET Development Generics in WebService calls...

        Can I use generic as a return type in webservices Can I do something like: [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1, EmitConformanceClaims = true)] public class Service<T> : System.Web.Services.WebService where T : new() {     public Service(){         //Uncomment the following line if using designed components         //InitializeComponent();     }     [WebMethod]     public T Get()     {     ...Show All

  • SQL Server Consuming Web Services In Sql CLR

    I am using SQL Server June CTP and I have a CLR stored procedure that is consuming a web service that has 3 methods: 1) GetXml - returns xml data as string. 2) GetXsd - returns xsd as string. 3) GetData - returns a dataset. I am only using the GetData method to retrieve data and do some processing in the stored procedure. When I try to deploy the assembly, I get the following error: CREATE ASSEMBLY failed because method "add_GetXmlCompleted" on type "SqlServerAssembly.EsoDataWebService.ESODataSet" in external_access assembly "SqlServerAssembly" has a synchronized attribute. Explicit synchronization is not allowed in external_acce ...Show All

  • SQL Server Can't run dts package job

    I setup a job which call a dts package (I try to call it from file system and from SSIS Package Store with the same result) and it doesn't run. If you take a look from the SQL Server Agent you could see this --->> 2012-06-17 09:01:02 - ! [LOG] Step 1 of job 'prueba' (0x85B4D5E843DB3145A6A1A6A0A43D04F3) cannot be run because the DTS subsystem failed to load. The job has been suspended Any ideas Yes I can login to the box with Domain admin, then onto the Database engine with the SA id and password. I run the sqlagent job as a 'SQL Server Intergration Services package' and it fails with the 'faile ...Show All

  • Visual Basic VS 2005 IDE Unresponsive

    We had originally installed Beta 2 of the product which ran better than expected. After using the tool from MS to uninstall the beta software we then installed VS2005 Final which we downloaded through our msdn subscription. The IDE becomes just about unusable. Not only that but it pretty much renders the computer useless while it eats up CPU cycles. This occurs during the following conditions: 1.) We make a small change in code and the editor hangs, the hour glass pops up and the cpu usage for the devenv.exe process is usually at 99%. The icon at the top of the VS IDE switches to the default exe icon. This unresponsive behavior usually ...Show All

  • Windows Forms Email Problem

    Hi, I'm trying to send an email in my application but I'm getting an error saying it can't relay from the address I've specified as the From Address. Is it best to have the send address as an outlook account I was under the impression the From Address was purely for display purposes when sent to an email account. Thanks The importance of the from address is really up to the server to decide where when a new message is received it uses it to determine if that account is able to send mail through the server. While there are certainly good reasons for why someone with say a... @msn.com account might t ...Show All

©2008 Software Development Network