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

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

Maarteke

Member List

ostrovia13
roel_1984
NJA
M4tt
Mike Monteith
greggman
ondrej_bohaciak
Jeff E
Sumant Gupta
MMuffett
MrYanda0
Ida
JBKmsdn
newSB
Emrys Mydhrin
Geoff GB
Richardthomas1960
HelpMePl0x
sherrill
tchen
Only Title

Maarteke's Q&A profile

  • .NET Development Convert VB to C# for saving/reading an image from Access DB

    Hi, I am trying to save and read an image from MS Access DB based on the following article: http://www.vbdotnetheaven.com/Code/Sept2003/2175.asp Right now, I saved images without any errors. After reading the ole object from db, I saved it to C: as imageFromDb.BMP and displayed on the web. But it can not be displayed. After I manually sent the file to wordpad, it shows System.Byte [ ] Now I suspect my saving an image might be wrong. The tab ...Show All

  • Visual Studio 2008 (Pre-release) Ink Over Video

    I am trying to allow the user to draw on top of a mediaelement(video) when the clip is paused. I have tried overlaying an inkcanvas over the mediaelement and also placing the mediaelement as a child of an inkcanvas. Using both methods, when the user draws on the video it tears (the underlying video isn't refreshing the current frame). The best solution I have come up with is grabbing the current frame as a bitmap when the user pauses and overlay ...Show All

  • SQL Server rowid equivalence

    Hi All, Is there any equivalent to Oracle's rowid in sqlserver How do you get the row id - I see it listed in the properties when I hover over a variable in debug mode but it never comes up in the intellisense and doesn't work when I try referencing it. ...Show All

  • Software Development for Windows Vista Recording Microphone Input IN VB.net

    How would I go about recording input from my microphone using VB.net I have been all over the internet and cant seem to find any good tutorials ... Can anyone help me Thanks! -Teenprogrammer ...Show All

  • Visual Studio Team System Reading Content of VSTF File without downloading to local machine

    I am using follwoing code to get iems from VSTF. ItemSet objSet = m_vss.GetItems(path, RecursionType .OneLevel); foreach ( Item objChilds in objSet.Items) { if (objChilds.ItemType == ItemType .File) { //From Item, I can find out the contentlength , i can download the file local machine and read content of the file. //Is There any way I can read content, without doing IO to local folder } } Is There any ...Show All

  • SQL Server Access Permissions on server scoped objects for login

    We are having problems with the response times from UPS WorldShip after switching from SQL Server 2000 to 2005. I think that the problem can be fixed from the database end by setting the permissions correctly for the user/role/schema that is being used by WorldShip to connect to the server but, I'm not sure how to do it. The Setup Client UPS WorldShip 8.0 running on XP Pro SP2 Connecting via Sql Native Client via SQL Server Login Connec ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Namespaces Microsoft.DirectX not found

    I've installed the DirectX 9.0 SDK and the runtime and can run the sample executables, but when I try to run the code in the edit or debug mode (using vb.net ver.2003) it can't find Microsoft.DirectX and Microsoft.DirectX.DirectInput namespaces.  I verified it as having 9.0c using dxdiags.exe. It does find DirectX 7 & 8 type libraries in the COM references section... I expect to find the missing namespaces in the .NET reference sections ...Show All

  • Visual Studio selecting whole lines

    I am trying to right a function that takes a multi-line selection, and extends the selection to encompass all of the top line, all of the bottom line, and all of the lines between. The idea being the user can lazily select half of line 2, all of line 3 and 4, and have of line 5.  Running the macro will select all of lines 2 to 5. I tried doing this:     Public Sub SelectWholeLines()        ...Show All

  • Visual Studio Team System Is it possible to queue Team Builds?

    Is there a way to make the build server queue build requests instead of running them simultaneously   We have had several problems with builds hanging during initialization, hanging during building, or completing the build process but failing to drop to the network when two builds are competing. I have considered writing a task that will wait on a mutex at the start of every build, but thought maybe I had better ask if MSFT had ...Show All

  • .NET Development Deployment Issue

    I am experiencing a wierd problem... I have a C#.Net application Server which uses Sockets. It listens on port 11000. and it runs as a Windows Service. If I run it as a consple Application, I can connect to that port/Application from any machine on the network as well as from my local machine. BUT If i install it as a Windows Service, I cannot connect to it from the network though it works just fine form the local machine. And one more ...Show All

  • Visual Basic text formating

    Hi, i would like to ask whether can i format the text in textbox in such a way that whenever there is a bullet, it will display it in a newline. the textbox data is retrieve from a database in the same column. Hi, sorry I wasn't clear. It should be: Private Sub txtDisplay1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtDisplay1.TextChanged txtDisplay1.Text = txtDisplay1.Text.Rep ...Show All

  • SQL Server Maximum number of partitions in AS2005

    Hi, Does AS 2005 have a limit to the number of partitions it can support I am sure some one out there must have asked this before, but I just can't seem to be able to find an answer in the docs or online. Regards, Alex Hi, In standard edition: maximum 3 non-writeback partitions per MeasureGroup. In the other editions (enterprise, developer, evaluation): the limit is 2^32-1, so it's up to how much ...Show All

  • Visual C# How do I clean out the Recycle Bin?

    How can I do that Matt Matt, you can also call the SHEmptyRecycleBin API, that will allow you to select which recycle bins you want to clear, will provide a confirmation prompt, a sound, and the progress dialog (all of which options can be disabled). A rough signature for the API would be: [ DllImport ( "shell32.dll" )] public static extern IntPtr SHEmptyRecycleBin( IntPtr hwnd, [ Mar ...Show All

  • Visual Basic String Formatting

    How do you format strings in VB.Net i.e. In VB6: Format("A1B1C1", "!@@@@") = "B1C1" In .Net: It seems in .Net you can only format numeric data. e.g. String.Format("{0:###0.00}", SomeValue) But I want to format a string text :-) I did read MSDN and it showed me how to format numeric data, but not an alphanumeric string such as in my VB6 example.. For ...Show All

  • Visual C# Save DataGridView to XML.

    Hi, I have a datagridview that is bound at runtime to an XML file via a dataset. I was not sure how to go about saving changes made to the data back to the xml file so I tried. TestDataSet.WriteXml( "C:\\Test.xml" ); This works fine but since "Test.xml" is the file currently bound, is this ok; or is there a better way to do this Thank you, Paul Since the dataset in a ...Show All

©2008 Software Development Network

powered by phorum