Hi All, To deploy .net dll there is requirement of .net framework ? if yes then how can we mange please elobrate it in details . thanks in advance.
ashu
Hi All, To deploy .net dll there is requirement of .net framework ? if yes then how can we mange please elobrate it in details . thanks in advance.
ashu
hello frnds, i need run exe as background process with webapplication wid regards ashutosh sharma
ashu
hi dear all , is it possible to post a page from server side without requesting from client side.here scenario is that one exe is running on server that receive data from exchange( there are many clients login on server and sit ideal to take info from server).i want actually that when server receive data ,then automatically show a popup to on corresponding ip and port (on client) with data sent by server. ashu
hello frnds, i used this code writen below for the purpose to get user dSN. Dim oReg As Microsoft.Win32.Registry Dim oRegKey As Microsoft.Win32.RegistryKey Dim sValue() As String oRegKey = oReg.CurrentUser.OpenSubKey("SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources") sValue = oRegKey.GetValueNames() ////////////////////////////// same code is working in vb.net but problem is that when i used in asp.net "oRegKey = oReg.CurrentUser.OpenSubKey("SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources")" is geting nothing value it is working till the folder " oRegKey = oReg.CurrentUser.OpenSubKey("SOFTWARE")" plz help me out. i need to read till "oRegKey = oReg.CurrentUser.OpenSubKey("SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources")" thanx in advance ashu
hi frnds , i made dll that was in Visual Basic 6.0 for convienice i m giving code of dll file ///////////////for retrieving odbc system dsn and User DSN Public Function findDsn() As String Dim sKey(2) As Long 'Dim arr(100) As String Dim strDsn As String Dim i As Integer, j As Integer Dim lResult As Long Dim lResult1 As Long Dim hKeyHandle As Long Dim sSize As Long Dim sName As String * 50 'On Error GoTo errHandler sKey(0) = HKEY_CURRENT_USER sKey(1) = HKEY_LOCAL_MACHINE sSize = 50 For j = 0 To 1 i = 0 lResult = RegOpenKey(sKey(j), "SOFTWARE\ODBC\ODBC.INI", hKeyHandle) lResult1 = 0 Do Until lResult1 <> 0 lResult1 = RegEnumKey(hKeyHandle, i, sName, sSize) If lResult1 = 0 Then If strDsn = "" Then strDsn = sName Else strDsn = strDsn & "," & sName End If End If i = i + 1 Loop Call RegCloseKey(hKeyHandle) Next fillCombo = strDsn End Function //////////////////////////////// after making dll of this visual basic code and then used this dll in vb.net no doubt it worked well but when i used this same code in asp.net it shows only sytem dsn. not showing user dsn. thnx in advance . with regards ashutosh sharma ashutosh@cube-software.com ashu
hi all, i want to find user dsn and system dsn . with regards ashutosh sharm ashu