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 SkipVought 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
  • 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

    can't do it. no of columns are only known at runtime.
  3. vishalmarya

    first Listitem selection not firing event

    thanks for the reply jbenson001 . i have a problem creating this control in the Page_Init event . actually i am creating this control inside a cell of gridview . program flow is like This : 1. gridview gets populated in form_load 2. onclick of a button dropdownlist needs to be added in the...
  4. 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...
  5. vishalmarya

    setting Virtual PC for win98

    thanks jdeane for the reply I believe it requires a bootable cd ( win 98 ) . i have a win98 bootable cd , which does not have the win98 setup. the win98 setup is on my c drive. so i inserted the bootable cd , the virtual pc boots and gives me a command prompt . but after that the keyboard...
  6. 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.
  7. 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...
  8. vishalmarya

    Height and width of an html control

    thanks BillyRayPreachersSon .
  9. 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.
  10. 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()...
  11. 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...
  12. 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...
  13. vishalmarya

    Making a mdichild topmost in vb6

    thanks petermeachem , its working . i am using SWP_NOACTIVATE . still the focus shifts from the other form. this top most windows only contain labels and don't have a title bar
  14. 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.
  15. 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"...
  16. 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...
  17. 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.
  18. 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
  19. 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.
  20. vishalmarya

    rights to registry

    Thanks for your Reply. My xp machine has fat32 . windows 2000 server ( domain server ) has NTFS . Earlier All machines were on workgroup type network . One of the machine was formated and made win 2000 server and settings for other machines were changed to a domain type network ( 3...

Part and Inventory Search

Back
Top