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 Wanet Telecoms Ltd 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: *

  1. atruhoo

    Rename and save images from SQLSERVER to folder on desktop

    Figured it out soon after posted....Figured post the fix in case someone else has one of those days. Public Function GetExhibitTest() As Boolean Dim fileName As String Dim fileDescription As String Dim oSDR As SafeDataReader Dim oDasl As...
  2. atruhoo

    Rename and save images from SQLSERVER to folder on desktop

    Hey guys I seem to be having one of those days where the brain is on shutdown. What I am trying to do is trying to download images from our SQLSERVER DB, rename them and save them to a folder on the laptop to use when app is disconnected from server. Currently they are brought back and stored...
  3. atruhoo

    batch file/ftp script

    Guess I am special too Rick as having same message
  4. atruhoo

    Trying to Gray out text in ComboBox, ListView & ListBox if status in

    Just wanted to thank all that helped. Actually ended up doing looping through for my ListViews and then used an owner drawn combobox as well
  5. atruhoo

    Trying to Gray out text in ComboBox, ListView & ListBox if status in

    Agree there are tutorials out there but as of yet I have not been able to find one that uses a stored proc to get the data and data bind each indiv record differently (i.e. Black = Active, Gray = Inactive) to a ComboBox/ListView based upon a field in the table (status field) without looping...
  6. atruhoo

    Trying to Gray out text in ComboBox, ListView & ListBox if status in

    Thanks, Hadn't thought of that. However that may not solve all my issues since I am data binding my listviews with stored procs and not looping.......at least for now.
  7. atruhoo

    Trying to Gray out text in ComboBox, ListView & ListBox if status in

    DB for record is inactive. Record still needs to be selectable but user wants to see by color change if is an inactive record. Any help or assistance to point me in right direction would be appreciated as this became a requirement for project after coding on application had begun, thus time for...
  8. atruhoo

    Populate treeview dynamically based on login.....

    Sorry took a few days to reply but out of office and was trying to not think about work. Wanted to thank you both for your input.
  9. atruhoo

    Populate treeview dynamically based on login.....

    Group looking to use treeview as main navigation tool for windows app and want treeview and its nodes to be populated based on users security roles in database. Pretty new to using treeviews and have been playing around some with limited success and was wondering if the gurus here had any...
  10. atruhoo

    Just a quick question. Is there a version of DotNet for Mac

    Know they have Windows and several other apps that have been redone to run on Mac's and didn't know if DotNet was one of them.
  11. atruhoo

    Conversion error trying to display image from SQL Server

    Thanks Christiaan. I though about that late last night, though still had problem with image displaying when started looking at this morning. With a little more research and playing around I got it to work (see changes below). Dim bits() As Byte bits =...
  12. atruhoo

    Conversion error trying to display image from SQL Server

    I am trying to download and display an image that I had previously uploaded to SQL Server database and keep getting this error below. Value of type '1-dimensional array of System.Object' cannot be converted to '1-dimensional array of Byte' because 'System.Object' is not derived from 'Byte'...
  13. atruhoo

    Edit code while debugging.

    According to a Microsoft rep/instructor who spoke to us at work that change was supposed to have been made in the 2005 release to resemble what we had in VB6. Oh well, I guess I was misinformed that only goes to prove Mom was right about not believing everything you hear. Haven't looked at 2005...
  14. atruhoo

    Edit code while debugging.

    Don't think possible in the current release (at least not in VB6 way) though from what I understand it will be included in the next release.
  15. atruhoo

    DataGrid1.VisibleRowCount Question

    Belive it is because it starts counting with 0 not 1
  16. atruhoo

    Changing DefaultBackColor Property

    Was/am trying to change the DefaultBackColor property of the tabcontrol as it is set to systemcolors.control by default. Users had selected Gainsboro Gray as the color for the application. Code you gave above sets the color of the tabpages the same as the default color for the tabpages. The...
  17. atruhoo

    Changing DefaultBackColor Property

    Thought I would share this with the rest of you. Haven't had a chance to test/run this code , but did download the TabcontrolEx (under controls) from this site which does what I needed. http://homepage.ntlworld.com/mdaudi100/alternate/tabcontrols.html
  18. atruhoo

    Changing DefaultBackColor Property

    Trying to change the DefaultBackColor Property in a tabcontrol so that it matches the color of the form my users selected. Know I can change the backcolor of the tabpage but stumped so far with this and since I have been finding limited information on this I hoped some of the experts here could...
  19. atruhoo

    preferredcolumnwidth Questions

    Had issue with settings initially in datagrid properties before I decided to set them at run time and not deign time. Here's how I do it now. Dim ts As New DataGridTableStyle ts.MappingName = "t_Resolution" DataGrid1.TableStyles.Clear()...
  20. atruhoo

    VB.NET or ASP.NET ???

    Thanks BoulderBum. Hadn't considered services oriented architecture will have to bring it up in next meeting.

Part and Inventory Search

Back
Top