Search results for query: *

  1. prem_rajani

    Windows event/status

    Hi, In windows service any way to know if user is logging off or no. If you know user is going to log off, then onstop procedure an IE should open and only after closing IE should windows log-off. Hope my question is clear.
  2. prem_rajani

    Opening IE with help of Windows Service

    Hi, When the service stops I call process to open IE. But as it stops I get message "it cannot stop due to time out something like that" Why does it happen like that? The code is as follows: Protected Overrides Sub OnStop() Dim MyProcess As New Process MyProcess =...
  3. prem_rajani

    how to get relation between two tables?

    Hi, Suppose I have two dataset, is it possible to know if they are related to each other? If so how is it achieved. Awaiting a positive reply.
  4. prem_rajani

    DataGrid && Oracle stored procedure

    Hi, How to populate datagrid with values got from oracle stored procedure. When I bind datagrid nothing seems to be displayed. The code is as follows: Dim cmdQuery As New OleDbCommand(trvSP.SelectedNode.Text, OleConn) cmdQuery.CommandType = CommandType.StoredProcedure 'This if no...
  5. prem_rajani

    Error in OleDbSchemaGUID

    Hi, The connection string is as follows ConnectDatabase("SQLOLEDB.1", lblDataSource.Text, txtUser.Text, txtPwd.Text, , lblDatabase.Text) When I try to retireve views from database I get error as : The type of schema isnt supported by provider SQLOLEDB.1. The code for retrieving views...
  6. prem_rajani

    List of SQL Servers

    Hi guyz, The steps I followed was : 1) In command prompt I executed the line - tlbImp E:\sqldmo.dll /out:vbSqlDMO which creates an instance for SQLDMO. 2) Then I add this dll as a reference in my project. 3) In form load I populate a combobox filling it up with server name. Private...
  7. prem_rajani

    CheckedListBox with addition feature

    Hey, I'm newbie but learning a lot from forums like this. Can anyone tell me hot to go about creating CheckedListBox with Window XP kinda style. What I mean is checkedlistbox with a heading & close button on right top corner. Any ideas or help would be helpful. Or if any component is already...
  8. prem_rajani

    .dll Value problem

    Hi, I have an application which I compile it as class library, to include it as reference in another application. My problem how to get value from the dll file to referring application. To explain more clearly- In first application name it app1 I have richtextbox & 2 buttons - submit &...
  9. prem_rajani

    Spliting problem

    Hi, Is there any way to split a cell diagonally in a grid? Or is there any third party component which allows to split a cell diagonally? Any help would be greatful.
  10. prem_rajani

    DOS based Printouts

    Hi, How do I take DOS based printouts like it happens in VB. Any1 got suggestions how this can be achieved.
  11. prem_rajani

    Backup & Recovery

    Hi, How to take a backup of oracle database and also recvoer it back. Is there any method to get this working without using imp 7 exp of oracle? Please would appreciate immediate help.
  12. prem_rajani

    ListBox behaves funny

    Hi, I dont know if its code or there is really some problem with Listbox. I have developed a project where i add n number of Listbox controls during runtime. Along with it 4 events are added - Doubleclick,MouseDown, DragEnter & DragDrop. 3 events seem to be working but not DoubleClick. My...
  13. prem_rajani

    Change font style during run time

    Hi, Please can any1 help me out with changing the font style of a label. I tried it but it says read only property.
  14. prem_rajani

    How to get lines between two controls?

    Hi all, I would like to know how to add lines at runtime between two controls. Let me explain it to you exactly what this project does. The form has two panels - left & right panel. During design time itself I add listbox in the right panel. Next step is I drag the item from listbox and...
Back
Top