Click here to Skip to main content
15,898,959 members

Comments by ali khanna (Top 6 by date)

ali khanna 17-Jul-18 5:00am View    
Thanks
ali khanna 26-Sep-14 9:24am View    
Ensure the SQL services are properly running. you can try restarting the SQl services
ali khanna 26-Sep-14 9:19am View    
I am using the same kind of code from the below link
http://msdn.microsoft.com/en-us/library/windows/desktop/ee416361%28v=vs.85%29.aspx

hr = lpDirectSound->CreateSoundBuffer(&dsbdesc, &pDsb, NULL);
here I am expecting that pDsb should not be null for multitrack audio file.

I have set the properties of dsbdesc correctly as per the Audio File information.
ali khanna 26-Feb-14 2:51am View    
Exactly. The location is saved in some of the table, and I want to verify if that location is accessible or not from SQL Query only
ali khanna 27-Feb-13 9:40am View    
the code is like
<pre lang="c#">
object rowsAffected = null
object missing = Type.Missing;
command.ActiveConnection = "";
command.CommandText = "Insert into table query**";
command.CommandType = CommandTypeEnum.adCmdText;
command.Execute(out rowsAffected, ref missing, (int)ExecuteOptionEnum.adExecuteNoRecords)
</pre>