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

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

Windsocks

Member List

pchr
GForce
OliverK
Vernay
Jeroen Boiten
Salma Noorunnisa
Prof Bruce
blueray
2005User
JLLemieux
sohman
rumrunner
jcastiarena
delimavi
Umesh.N
Neeraj Pandey
TimothyB
Sridevi113347
Bhupendra Dhande
Igor Nikiforov
Only Title

Windsocks's Q&A profile

  • Visual Studio Express Editions VB DataAdapter Fill Error

    VB DataAdapter Fill Error Hi, I have an access database named Image.mdb and my table name is also Image and I want to add records to it. I have a connection object and dataAdapter. The error occur when I want to fill the data set. Error message reads " Syntax error in FROM clause." I can't figure out why. My SQL statement is valid. My database is valid. I'm at this since this afternoon and it's 3am here now! Please advise. Thanks all! ------------------------------------------------------------------------------------------ Private ...Show All

  • Visual C# Regular expression to read a record in a text(CSV) file

    Hi while parsing the CSV file i need to validate each row or record that it should not contain any special characters outside the double Quotes and the no of fields should be 13. some of the records that i have corrupted from the CSV file are as follows "0323034055","000","2823484","2005/10/17","S","016184","CAROLE CROW","COLUMBIA","SC","29203"," ","1","N" "0323034055","0,0,0,","2823484","2005/10/17","S","016184","CAROLE CROW",&quo ...Show All

  • .NET Development recordset

    i a newbie for asp.net. i been 6 years in vfp . now my company change to developed program using asp.net. i dont know what is recordset is it same with table thanks in advance,. In .NET it is called DataSet or DataTable. Recordsets are from ADO, not from ADO.NET. Basically DataSet is something like a database in a memory that contains multiple DataTables (which are similar to tables in a database). The information in a DataSet/DataTable can contain some rows of data selected from the actual database or generated by the application. You can find more infor about it here http://support.microsoft.com/search/ spid=6242&adv = ...Show All

  • .NET Development Common Language Runtime Debugging Services

    Hi, We have installed a software PCDCTfor window and we are getting error on exe failling Reports. But failed and give following error message whenever we try to run a big reports/processes: PCDCT for Window.exe - Common Language Runtime Debugging Services Application has generated an exception that could not be handled. Process ID=0x710 (1808), Thread Id=0xa8(2688) Click OK to terminate the application. Click CANCEL to debug the application . We have click the cancell and found following detail PCDCT for Window.exe - No debugger found. Registered JIT debugger is not available. An atte ...Show All

  • Windows Forms Accounting Software

    Does anyone know of any ".Net" Open Source Accounting Software package / Source Available Accouning Software package Hi Zonehenge, You may want to take a look at interprise suite.  It is not open source but it is written in .NET as a "smart client" application and has a number of XML web services built in. www.interprisesuite.com Gary I forgot to mention that it is licensed for less than $10,000 for unlimited user license. ...Show All

  • Visual Studio Express Editions Timer Windows Service

    Hi guys. I got a Timer Windows Service that do some importing of txt file to sql server and then run some procedure at the same time. So Every 30 min. the Timer will elapsed and do its work. Now i'm having a issue is when the process could not finish on time then the timer elapse and run the process again... how can i do my code in such a way that to queue it . here and example of my code.. Private Sub InitializeTimer() If timer Is Nothing Then timer = New System.Timers.Timer timer.AutoReset = True timer.Interval = 60000 * 30 '60000 = 1 min ( 30 min ) End If End Sub Private ...Show All

  • Visual Studio Tools for Office Modifying Excel menubar

    Hi group, Modifying the menubar to hide those items not needed within my Excel program. Making visible again those items that I can still use such as Print, Print Preview, Page Setup, Exit, etc. ' "Page Setup" menu item has id = 247 menuControl.CommandBar.FindControl( _ MsoControlType.msoControlButton, 247).Visible = True I have a problem with the Page Setup menubar item. When clicked, the following error message appears. Eventually the message goes away and the Page Setup dialog appears. Windows has triggered a breakpoint in Excel.exe. This may be due to corruption of the heap, and indicates a bug in ...Show All

  • Visual Basic how to disable Enter Key in TextBox Multiline?

    Hi all, I'm just wondering if there is a way to disable the Enter key on a TextBox Multiline Thanks If nothing else works, you can catch the keypress event for the control and set handled to true if the enter key was pressed. ...Show All

  • Visual Basic Hotkey API Question

    I need to make a hook which captures the Printscreen key in any combination (eg Alt+PrintScreen). My application will be running from the taskbar, so there will be no focus. After reading an article (found here: http://www.developerfusion.co.uk/show/271/ ), I was even more confused then before, and was wondering if anyone could explain how I would start I am using Visual Basic .NET. Thank you for your interest. Robert Hoath   That article does have the potential to be confusing. I found a simpler one still in C here: http://www.codeproject.com/system/KeyHook.asp But let's talk abou ...Show All

  • Smart Device Development regarding Waveform recording

    Hi All, I was trying to record a wav file using the code given below (source url is http://www.techmind.org/wave/ ). This i did for pocket pc.What i am not able to do is to save to a file .My problem is to save the data to a wav file.what will be the code for this.thankx any person in advance I have the following code #include <Mmsystem.h> const int NUMPTS = 44100 * 10; // 10 seconds int sampleRate = 44100; short int waveIn[NUMPTS]; // 'short int' is a 16-bit type; I request 16-bit samples below // for 8-bit capture, you'd use 'unsigned char' or 'BYTE' 8-bit types HWAVEIN hWaveIn; WAVEHDR Wav ...Show All

  • Visual Studio Team System TFS Backup Procedures

    I see there has been some docs on backing up TFS. http://msdn2.microsoft.com/en-us/library/ms253151 It looks like this can get tedious. There are 7 SQL Server 2005 databases and a few sharepoint sites. Is there a plan to automate this These are still the instructions for B2. We will be making instructions for B3 avaialble shortly. In B3 all of our data is persisted in SQL so it's merely a matter of backing up the requisite databases using a SQL maintenance plan.  Once you have the plan in place you can use this to have automated nightly full backups (and hourly transaction log backups). Restore is a l ...Show All

  • Visual C++ How to get the size of a double char pointer?

    Basically, I want to get the size of a double char pointer, EG char **x; Not the elements of the individual arrays, but the actual number of elements inside the pointer. I don't want to use vectors or Strings either, I know how to do it that way, but it looks ugly. So if I could get some feedback on this, it would be appreciated. :-) Not sure how you initialize this pointer. But if you do it like this: char **x = new char* [20]; it would have 20 (not yet initialized) elements. ...Show All

  • Windows Forms On Application End (User Initiated)

    I'm currently writing a Windows Console application and I need to determine when the application is closed by the user (by clicking the X button).  There must be an event that I can attach to (like on a Windows from, OnClosing) to determine when the application is ending. I've currently attempted handling AppDomain.CurrentDomain.ProcessExit and AppDomain.CurrentDomain.DomainUnload events, which works when the application is ending by itself, but not when a USER closes the application when it's running.  Does any briliant mind out there know the event I can use or have a better solution In that case you can handle t ...Show All

  • Visual Studio Tools for Office How to add vsto in visual studio 2005 professional edition

    Hi, I am trying to import VSTO-2005 in visual studio 2005 professional. but not succeeded, I installed window xp-service pack 2 Office 2003 professional-service pack 2 visual studio 2005 Professional VSTO 2005-redistributable package VSTO-Run time but I didnt see the office template in my visual studio . Can I use VSTO-2005 with visual studio professional edition OR I have to install visual studio team system for using VSTO-2005  Please help me, Thanks in advance khurram   You need to install the Microsoft Visual Studio 2005 Tools for the Microsoft Office. On MSDN the ISO filename ...Show All

  • Windows Forms TextBox, enter key, shift+ enter problems

    Here is what I basically want to do: I have a multi-line textbox.  When I press enter I want it to fire a button press event ( I am pretty sure that I should not be using the AcceptButton property because of what else I want to do.)  When I press shift + enter, I want to append a "\r\n" to the end of the text. Wh ...Show All

©2008 Software Development Network