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

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

hackmonkey

Member List

Puzzled
Fahad349
HenkeB
Arunkjose
hommer
Kay Chan
Joe Simmonds
Urip
Richard Vaughan
akram badr
Jassim Rahma
RDMarkus
ComputerWhiz
Tryin2Bgood
K. Rose
Al33327
Pablo Alvarez Jalon
Weston Hutchins - MSFT
fibonacci1123
Jonathan Stratford
Only Title

hackmonkey's Q&A profile

  • .NET Development To run a C# Application Without Oracle Client Software.

    Hi, I have created an application using Visual C# and Oracle 9i. Am using System.Data.OracleClient as Provider. I want to run this application(.exe) in the machines,which are not oracle client installed. I tried this, It showing error " System.Data.OracleClient requires Oracle client software version 8.1.7 or greater .". Thanks in Advance, Regards Nataraj.C You're completely right. If you want to read any data from the database you need to have the oracle client software installed. My idea was to deploy the application on a bunch of machines, but only selected machines will have the oracle client installed so that the application will reveal some extra functionality if it detects the in ...Show All

  • Windows Forms Setting PowerPoint slideshow as active window over a form

    HI! I'm trying to realize a simple application that loads PowerPoint presentations over a mask, displaying the name of the presentation ad the time passed. The problem is that I can't manage to set PowerPoint slideshow as the active window. This is the code (I omitted what was not important):  Private Sub playerpresentazioni_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load Me.Activate() Me.WindowState = FormWindowState.Maximized Dim filePath As String = startmenu.DirectoryPath & "PresentationToLoad\" & filePres filePath = Replace(filePath, " ", Chr(32)) Dim returnValue As Boolean returnValue = My.Computer.FileSystem.FileExists(filePath) ... 'initializing componen ...Show All

  • Audio and Video Development how can i transfer audio streams from my own application to any other software without a physical cable?

    Hi, I would like to send a streambuffer (wav file) to line-in (microphone). Is it possible The idea seems quite simple: |sound.wav|-> stream -> LINE_IN The idea is to transfer audio streams from my own application to any other software without a physical cable. Can you help me Alex Try posting your question here: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=351&SiteID=1 ...Show All

  • SQL Server Filter in Table Syntax

    I have several reports where I am trying to use a single sp, and filter some of the paramater selections in reporting services. I can get a single item to work in the filters ie: state.value = SC but i have not been able to get a multivalue scenario to work. ie: State.value in SC,GA,TN or State.value in ('SC','GA','TN') or State.value in ("SC","GA","TN") or State.value in 'SC','GA','TN' or State.value in "SC","GA","TN" I am guessing it is a simple syntax thing, but well obviously I havent found it. Any help would be appreciated Rick I had the same question. I have not tested your solution, FW, but ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Having a little trouble with XNA Spot tutorial...

    I have been doing the How to Draw a 2D Sprite tutorial from xnaspot.com,and I still have a lot to learn and I got all the info inputed and there is one error that I cannot figure out, and that is in the update funtion, I put what I was supposed to, and even tried pasting it, because I have been typing everything to get it down (I would be way past it if I just copied and pasted) and it seems like there should be a }, yet when I put that down it still says }expected, I tried removing it and 9 more errors popped up, so I need to know, what am I doing wrong I would greatly appreciatte any help you guys can give me. Think of braces as a stack. If you use an open brace, add that to the stack. If there's a closing brace, pop a brace off the ...Show All

  • SQL Server Replication scnerio

    Hi all, I have a huge replication task I need to perform. The source table has over 250,000,000 records and everyday approximately 400,000 records are added to the system regularly. Currently, I am running snapshot replication and it's taking 10 to 11 hours to complete (The internet connection between the production and the report server is slow). The reason I am using this method is because the source table does not have a timestamp column (so I can run an incremental replication) and I cannot modify that table because it belongs to a third party software. It does have a field which is linked to another table holding the timestamp. Here is the source table and the other table's structure for reference: DataLog Name ...Show All

  • SQL Server Is Service Broker Enabled?

    Hello, I've been trying for two days now to get SQL Cache Dependencies to work. So far, nothing has worked, and I have been around the block a few times now on this one. So now I'm going back to basics, as I think my code and queries are fine. My first question is how to confirm that I have a Service Broker that is up and running. I am using SSX as my database engine. Other posts mention how the "look at the service broker folder", and I don't see a folder anywhere. Can someone tell me what to look for I've added various SP's based on tutorials on web sites, so I can't tell if those SP's are mine or theirs at this point (I've been at this too long). Where is the "folder" the other posts have mentioned Do I need to do ...Show All

  • SQL Server SSRS and Teradata

    Is anyone out there using SSRS with a Teradata data source R Ron, A couple of things. First off, thanks for the dynamic string. The above code does work for me in VS Designer when I select the 'All' option. Are you running SQL Server SP2 like I am Second, I talked to some of the MS folks at Tech Ed earlier this year. The execute immediately is by design. At that time they recommended we create our own website that wraps the report viewer instead of the default report manager. We were not thrilled with that answer. In short, you are out of luck. Have you run into any other issues with respect to access TD from MSRS I seem to be a few steps behind you which is making my life a little easier ...Show All

  • Visual Studio Tools for Office Download Prerequisites for VS Installer

    I created an Outlook Add-in and it works on my machine because I have all the prerequisites installed but I can't figure out how to add them to my install project. On the prerequisites for the install file it does not list the prerequisites that I need to add. I followed all of the steps in this article ( http://msdn2.microsoft.com/en-us/library/aa537179(office.11).aspx ) and it does works for my machine but not others. In the article it says I need to select Microsoft Office 2003 Primary Interop Assemblies and Microsoft Visual Studio 2005 Tools for Office Runtime but they are not available in my list of prerequisites. Does anyone know where I can download them so they show up in my list of prerequisites I couldn't quite figure out what ...Show All

  • Windows Forms List Of Objects As DataSource for DataGridView and DataGridViewComboBoxColumn

    Hi all, I have a DataGridViewComboBoxColumn: Dim cbCol As New DataGridViewComboBoxColumn With cbCol .DataSource = myCatalogoPOS.SubMenus() ' Private _submenus As New List( Of SubMenu) .ValueMember = "Clave" .DisplayMember = "Nombre" End With ------------------------------------------------------------------------------------------------------------------ The DataSource for cbCol is a List of this Class Public Class SubMenu # Region "Miembros Privados" Private _clave As Integer Private _nombre As String ----------------------------------------------------------------------------------------------------------------- Also I have ...Show All

  • Visual Basic get the system thousands seperator

    Is there a way to determine the user system's thousands seperator and decimal character http://www.vb-helper.com/howto_format_currency.html This should point you in the right direction - GetCurrencyFormat API. ...Show All

  • SQL Server about Db table cell setting

    How do I enable multiline on data table rows (cells) When I press enter the cursor jumps to the next cell and no the next line in the same cell. Thanks ...Show All

  • Visual Studio Tools for Office Word2003/Servlet(JSP)

    Hi, I would like to be able to talk to a Servlet (JSP) on a Tomcat server from my Word add-in. Is it possible And if this is the case, can you give me some hints (I am using VSTO 2005 and coding in C#) Thanks a lot! Claudia You can do this in exactly the same way you would from a WinForms or console application. I'm not familiar with JSP but the obvious way to communicate in a platform agnostic way would be to implement a web service. Does this help or is there some other clarification you're looking for Ade ...Show All

  • SQL Server database corrupt , I want delete some table

    I have database currupt some table , I want to delete / drop table Example 1. databaseTest Have --> table customer , table payment , table sales 2. table Payment can't select / drop / insert /rename (fail) show message error below ERROR (Row 0); Microsoft SQL Server 2000 Windows CE Edition: "The database file is corrupted. (Database name: "" )" 3.How to drop table Payment (I want to drop and create table again and insert data to new table ) Or How to solution for repare table Payment Thank You Suwimol You can try to recover the database file by using SqlCeEngine.Repair method or the native equivalent. Reference: http://msdn2.microsoft.com/en-us/library/ms1724 ...Show All

  • Commerce Server Need MessageManager configuration in Web.Config

    Hi guys i am developing some proof of concepts in the Commerce Server 2007.I done some of the things in cs 2007, now i moved to do some basic things in Pipeline concepts. i created some some code and add the basket.pcf in the Pipelines folder in my project . while i running throgu i got an error message like this, Please configure the MessageManager in the configuration file. How to configure for my basket.pcf file. Hi Vinayak if i given as "CommerceWebApplication" the error comes like this, Unable to load the specified assembly CommerceWebApplication Server Error in '/SampleSite' Application. ...Show All

©2008 Software Development Network