Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vishalmarya
  • Content: Threads
  • Order by date
  1. vishalmarya

    width value as a varable

    i need to set the value to a width element of the style attribute of button control. Like : <input type="submit" name="btn1" value="Button" id="btn1" style="width:100px;" /> But how can i provide the value as a variable instead of hardcoded one. i don't want to achieve this through...
  2. vishalmarya

    first Listitem selection not firing event

    I am dynamically adding a dropdownlist to a webpage and binding its SelectedIndexChanged event to a sub. few listitems are added to the control. the code in written in page_load . the first item comes preselected. changing the listitem fires the associated event. but when the first item is...
  3. vishalmarya

    setting Virtual PC for win98

    I have Installed Virtual PC . but don't know how to set it up. i have created the virtual machine ( for win 98 )using the wizard. it starts , but after a while , it says " Reboot and select proper boot device or Insert Boot media in selected boot device " how to take it forward.
  4. vishalmarya

    Radeon xpress 200 drivers on win98se

    i have a PIV machine . the pc came with ati radeon display card ( ATI radeon xpress 200 series ) and the motherboard drivers suite cd. I have created dual boot , one for win98se and other for winxp . the motherboard drivers were installed successfully on win xp , but they don't work on win98...
  5. vishalmarya

    Height and width of an html control

    how can i set Height and width of an html control from javascript ? say i have a button h_btn1 <script language="javascript"> document.Form1.h_btn1.Width="300px"; alert(document.Form1.h_btn1.Width); </script> alert box is shown with width as 300 , but visually it does not change.
  6. vishalmarya

    com component on aspx page

    have created a simple activex control. it loads successfuly on the aspx page. it displays its user interface as created. ( one text box and a command button ) following is the vb6 code for the activex control Option Explicit Dim displaytext_value As String Private Sub Command1_Click()...
  7. vishalmarya

    listview missing in vb.net conversion

    i have converted a fully compiled visual baic 6 project in to vb.net solution using the conversion utility of visual studio .net 2003 . The listview control on all my forms are missing in the .net project. i haven't found anything in documentation of the compatibility issues related to the...
  8. vishalmarya

    runtime binding

    i have a form ( form2) , which can be called by any other form. all other forms have a sub test. depending on which form has called form2 , sub test is executed ( the procedure of the calling form ). the code below works fine in vb6 , but equivalent vb.net code got problems. ============== Vb...
  9. vishalmarya

    Making a mdichild topmost in vb6

    i want to make a form ( mdichild=true ) as top most form in my application. even if any other mdichild form is loaded , this topmost form should not hide. i am using the api function , but no success , SetWindowPos Me.hWnd, HWND_TOPMOST, 0, 0, 100, 100, SWP_NOACTIVATE Any Suggestions.
  10. vishalmarya

    Creating new table through ADOX

    I am trying to create a new table in mdb file. Here is the code ''********************** Dim cn As New ADODB.Connection Dim cat As New ADOX.Catalog Dim otable As New ADOX.Table, ocol As New ADOX.Column cn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\test.mdb"...
  11. vishalmarya

    graph control

    I want to plot a graph of distance with time using MSCHART control. time at x axis, distance at y axis example: '''****************** dim ponits(2, 0) As Integer points(0, 0) = 0 points(1, 0) = 7 points(2, 0) = 10 Chart1.RowCount = 3 Chart1.ColumnCount = 1 Chart1.ChartData = points...
  12. vishalmarya

    Form templates don't show up

    Adding New form windows in vb6 is not showing form templates although the folder "Program Files\Microsoft Visual Studio\VB98\Template\Forms" contains template forms. Any Suggestions. Thanks.
  13. vishalmarya

    report layout at runtime

    I have been Using crystal reports 7 till now how powerfull is the "XI version" in case i want to change report layout at runtime Thanks
  14. vishalmarya

    duplicate folders in outlook 2003

    I am using Outlook 2003 . On restoring Pst file from backup server, 2 folders were created on left side pane which are just duplicates. When any entry goes into the inbox , that is replicated in both the folders . and it is not letting me delete those folders . Any suggestions Thanks.
  15. vishalmarya

    rights to registry

    I am logging on to win xp client machine in a domain network as a normal user and want have rights to edit my registry . How to do that ? Thanks
  16. vishalmarya

    Active control +dll on windows 2000 server

    We have certain activex controls and dll for our application use registered on each machine . Now we have shifted from workgroup networking to domain network . I want to set up these com components on our server ( win 2000 ) so that any application ( on client machines ) which requires the...
  17. vishalmarya

    setting up clients

    We have 5 machines (3 win xp and 2 win 98 se ) We were using workgroup networking till now and static ip address . Now one of the win 98 se machines has been upgraded to win 2000 server and that is the domain controller. I have changed network settings of all 4 client machines from workgroup...

Part and Inventory Search

Back
Top