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: mkohl
  • Content: Threads
  • Order by date
  1. mkohl

    vb.net 2005 problem

    I am currently experiencing a problem with vb.net (2005) IDE: vs 2005 professional. <problem> There is a button on the form I created, I deleted the button and ran the program in debug mode, but the button is still there. I restarted vs 2005, retarted my machine and still the button will not...
  2. mkohl

    Query Statement in VB.net

    I am having a problem. My records are not populating in the datagrid. Query = "select * from JobsOnHold where [Date] between '6/4/2006%' and '6/10/2006%'" I think the problem is that the data field has a time stamp in the field. example: m/d/yyyy 10:10:21 am database info: microsoft access...
  3. mkohl

    Hello World Problem

    I know this is a simplex problem, but I can't figure this out. This is my first C# console program and it crashes at runtime. I went thru all the code, that was in my book and did not find the error. Error: Index out of range. The error points to: int iChoice = int.Parse(args[0]); 'code...
  4. mkohl

    Running totals with vb.net

    I have a problem I was wondering if someone could help me with. Problem is I can't get a running total of each group item. Exampe in my test database I have data issues - total records 2 Work order issues - total records 1 Audits - total records 1 I need a running total so that it displays...
  5. mkohl

    vb.net and crystal reports

    I wrote a program in vb.net that accesses a microsoft access table. The problem I have is the user creates the database, and table through the vb.net program. So, I would never know what the table name or database name is until runtime. My question is how can I create a report that doesn't...
  6. mkohl

    Print View &amp; Crystal Reports Viewer

    Hi, I can't seem to figure this out, but for some reason all my icons in "print preview" and "Crystal Reports" are are not being displayed. For example, there is no Print Icon ("image") on the print button. Its almost like like if the tool bars appearance is flat with no image. I had...
  7. mkohl

    Windows Service Scan Emails

    I've fighting this all weekend. I'm trying to write a windows service that accesses microsoft outlook. But for some reason, my window service is crashing. I've tried the same code in a windows application and it works fine, my question is. Can I access Microsoft Outlook using a windows...
  8. mkohl

    resizing dataset when form is maximized

    I was wondering if anyone knows how I can resize a ds inside a datagrid when the form is maximized? I tried a few things, which did not really work correctly. On thing I tried to do is set an if statement in my datagrid style that checked to see if the window was maximized, it kind of worked...
  9. mkohl

    general email question need advice

    I have been given a task to create a program that filters emails, and then saves the email information to a data base. The company I work for uses outlook, and my boss receives emails on every job that goes on hold. He wants to take those emails and put the information about the jobs, into a...
  10. mkohl

    connecting to a ms sql server

    Does anyone know the script I can use to connect to a ms sql server. I tried this basic code, and this did not work. <?php <?php $dsn ="dsn"; $uid ="uid"; $pwd ="pwd"; $network="network"; $connect = odbc_connect($dsn,$uid,$pwd); echo "This is a test."; ?> I basically wrote this script just...
  11. mkohl

    Data table Question.

    I am experiencing a slight problem. I loaded information into a data table. But for some reason after I leave the sub routine that populated the table, everything is lost. So when I goto a button click event and try to use the information that is in the table.. it basically gone.. I get "" in...
  12. mkohl

    Trapping Errors

    I am not sure if I changed a setting, but for some reason when I get an error, my browser does not display any error message? Does, any one have a clue on what is going on. My basic code looks someone like this: try 'code catch throw ex finally 'code end try I am not sure what is going on...
  13. mkohl

    Drop Down Combo box Tool Tips

    Is there a way to display a tooltip in a combobox when the user hovers over an item? -mike
  14. mkohl

    strings with commas

    Hello, Is it possible to update a sql table with fields that have commas in it? I am writing a program that takes an excel sheet, and then converts it and uploads it to the sql server. The problem that I am having is that many of these excel sheets come with fields that have commas in them...
  15. mkohl

    Datagrid PreferredRowHeight

    I have a problem I was hoping someone could assist me in solving. Situation: I am using a datagrid with code generated style. Problem: During form load event the PreferredRowHeight is not being adjust to what I have set it to in the code. All other settings for the datagrid are being...
  16. mkohl

    Flow layout panel - Datagrids

    Hello, I have a few datagrids in a html flow layout panel (7 datagrids to be exact) and the problem is the lower datagrids are not flowing to the top of the flow layout control when the top datagrids are set to visable = false. In return the user has to scroll down to the midle of the page to...
  17. mkohl

    General CSS Question

    Hello, I was wondering if any knew if there was a solution to this problem. When I view my page (asp.net) for a split second I see a unformatted display of my page before css kicks in and puts everything in place. for example when my page loads I see all my all my information in the top left...
  18. mkohl

    General Format Question

    I have a problem and was hoping that you guys can assist me with some value advice. The problem is "Browser Compatability" I am using IE 6.0 and my web pages(asp.net) look fine on this side. But the client is using a different browser(I think its the Apple default browser?? safari?) Anyway...
  19. mkohl

    UserControl causes horizontal scroll bar

    Hi, I have a problem, I have a asp.net page that contains a usercontrol(which contains a header). For some reason the user control is causing a horizontal scroll bar to be displayed when the user views the page. If the user scrolls to the right there is nothing to be displayed. I'm sure this...
  20. mkohl

    ASP.Net Javascript vs. ServerControl

    Hi, I am have a task to convert an asp page to an asp.net page. The problem that I am encountering is a html drop down control. Which is running javascript when the user clicks on a button. The problem is the javascript is not working. My assumption is because the <form runat=server> will...

Part and Inventory Search

Back
Top