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: saimagulse
  • Order by date
  1. saimagulse

    Data Grid Navigation

    Hi All I want to do navigation through enter key in DataGrid. if user has entered a wrong accountno (Which doest not exist in my database) in first cell of grid then input box window will open and user write accountno this will be validated with accountno in database and if it is correct it...
  2. saimagulse

    Hoe to Clear multiple text boxes?

    In VB6 we can write code like this to clear all text boxes on form For each ctl in me.controls if typeof(ctl) is TEXtBox then ctl.text="" next I want this type of code in VB.Net so that all text boxes on my form will be cleared. How can i do that?
  3. saimagulse

    "Resolution Problem in Crystal Report"

    when I store a picture of size 800*600 pixels in database (SqlServer) field Photo (Image) and load it into crystal report through query by dragging and dropping the field on report it appears well but as its size is too large and when i resize it its resolution become so wrong to can not see...
  4. saimagulse

    Resizing Image in Crsytal Report

    Hi All when I store a picture of size 800*600 pixels in database (SqlServer) field Photo (Image) and load it into crystal report through query by dragging and dropping the field on report it appears well but as its size is too large and when i resize it its resolution become so wrong to can...
  5. saimagulse

    how to bind to html events

    hi all i m creating a dll which create a table dynamically using mshtlml.dll my code is like Public sub CreateTable() Dim tbl,row set tbl=wb.document.createlement("Table") set row=tbl.insertrow set cell=row.insertcell cell.innerText="a" wb.document.body.appendChild(tbl) end sub by this methos...
  6. saimagulse

    MAC Address using VB

    In dos prompt when we run ipconfig we get information about mac address how can i get it using VB? How can i protect my application to run to specifice user? which is the best methood for it?
  7. saimagulse

    SQLServer Identity column removal

    Hi all If we have define a column having identity property=yes and save the table . we can also remove it from Enterprise manager. But i want to know he script to remove identity property of this column. This is not done through alter table statement. How it is possible please help me. ame case...
  8. saimagulse

    Writing Data on CD

    Hi Golom Thanks for your response but solution you have provided can not resolve the problem. Method you have described is used to copy on hard disk drives or on floppy disks but can not be appplied on CD drive. As you have provided i check it with my CD writer by inserting a writeable cd in it...
  9. saimagulse

    Writing Data on CD

    Hi I want to write data on CD through VB. For example if i have a back up folder and i want to write a program in VB so that user press just one button and this data will be write on cd. How it would be done? Please help me as soon as possible

Part and Inventory Search

Back
Top