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 TouchToneTommy 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
  • Order by date
  1. mkohl

    vb.net 2005 problem

    SavantMan, Sorry I have been kind of busy the last few days. I just want to let you know, that the other day when I had the problem with the button displaying after I deleted it. Was not a naming issue. I always name my buttons, suchas, "btnClose". But the weird thing is when I noticed the...
  2. mkohl

    vb.net 2005 problem

    Very strange, I woke this morning the program is functioning fine, however if anyone knows why this program would have did this let me know, please. I did make one change this morning, in the solution explorer I clicked on my project and in the windows application framework settings I checked...
  3. 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...
  4. mkohl

    Query Statement in VB.net

    Thanks, I think my problem might have been that I declared date as text in the table. After changing the date from text to date and time, I ran this query: "select * from JobsOnHold where [Date] between #6/4/2006# and #6/10/2006#" and it works. Thanks guys.
  5. 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...
  6. mkohl

    Hello World Problem

    yes I am running it from the IDE. It was my assumition that I set the param at run time at the command prompt in the console.
  7. 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...
  8. mkohl

    Running totals with vb.net

    This is a generic display of what my reports are dispaying: report 1: <top of page> Chart (my chart) <group footer> Totals: -------------- item1 total item2 total item3 total Report 2: <top of page> column headings <detail section> //which displays all items in my database Item1 Total...
  9. mkohl

    Running totals with vb.net

    I do have a new question about grouping totals. Thanks to everyones help I did get my problem solved and actually learned a few things about crystal reports. However, even though this next question is not related to a problem I am having, I would like to understand more about why it would...
  10. mkohl

    Running totals with vb.net

    Thanks. I ended up grouping in the group footer, which works great. I think my problem must have been trying to do this in the header and detail section of the report. Thanks! -mk
  11. mkohl

    Running totals with vb.net

    Sorry about misleading information. I believe the version 8.1. My Program: My program searches emails sent to me relating to why jobs are on hold. When the program finds an email relating to a job that has been placed on hold it saves the information into a database. There are several...
  12. 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...
  13. mkohl

    vb.net and crystal reports

    Thanks for your response. I was hoping to give the user the flexability of nameing the tables and databases they will be populating, but I'm really starting to think that this is probably not the best solution since I want to generate a daily report using crystal reports. Thanks again, for...
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. 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...
  20. mkohl

    Data table Question.

    Thanks for the response, I figured since it was doing a postback, the table was being cleared. Also, since I am using Template Columns I could not pull the information I needed from the datagrid. Everytime I tried to reference a cell that was a template column it would appear blank. One...

Part and Inventory Search

Back
Top