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 strongm 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. lotharious

    Custom Dialog Layout

    Well, no matter how I seem to put it out, everything comes out as one straight line or multiple lines wrapped. I finally got this to look somewhat like what I wanted but I dont understand why it does unless it is just wrapping the way I want. In other words, I cant get the layout to layout at...
  2. lotharious

    Custom Dialog Layout

    I am trying to get an input dialog that puts labels on the left, input boxes on the right and the ok/cancel on the bottom. Ive gone over almost all ideas Ive ad that I thought would work. labels[] are JLabel and textfields[] are JTextfield This is what I thought would work, or the last thing I...
  3. lotharious

    Stored Procedure Vs App

    Thank you both. As for the logic, it would be just one if statement. In which case it does a delete instead of an update, then updates all the other tables. 99.9% of everything will be in the code. The biggest thing I am working for is to be able to make a windows app later that will work the...
  4. lotharious

    Stored Procedure Vs App

    I have two questions. First, Im basically new to stored procedures having only had experience with informix 8 years ago and dont remember much. Im using php web app and mysql5 First question. In a database, I will need to make an update that will be updating 4 or possibly 5 tables base on an...
  5. lotharious

    TCP/IP and HL-7

    If you have the data layout for the packets, the port for the program(s) it shouldn't be that hard. The big issue here would be to find the HL-7 data layout so you can change the data to/from HL-7 and your new system layout. Ideally you would write a server program and place it on 1 machine...
  6. lotharious

    Clearing Numeric Text Box

    Does the field in the table allow for null fields, if not deleting the text in the box would create an error, thus would change back to the hilighted form.
  7. lotharious

    How Tell if DataTable has been changed

    Other than using the getchanges method is there a way to tell if a datatable has been changed.
  8. lotharious

    Crystal Reports in Vb 2005 Refresh Error

    well, I dont know what I did but I got it to work.
  9. lotharious

    Crystal Reports in Vb 2005 Refresh Error

    Please if anyone has any idea's or info.. Anything...
  10. lotharious

    VB 2005 CRXIR2 Report Refresh Error

    I posted this a few days ago on the VB forums with no response. I am writing a VB program that uses MS Access 2000, and Crystal Reports XI R2/non-embedded reports. I'm not sure what Ive missed. When I use the Report.CrystalReportViewer.RefreshReport() method the crystal report opens up the...
  11. lotharious

    Crystal Reports in Vb 2005 Refresh Error

    I am writing a VB program that uses MS Access 2000, and Crystal Reports XI R2/non-embedded reports. I'm not sure what Ive missed. When I use the Report.CrystalReportViewer.RefreshReport() method the crystal report opens up the login box. This only happens in my program, not in the Crystal...
  12. lotharious

    New to VB - need to create an .exe

    Yah, I have not used that yet so I cant help there. And sorry about the static compile. I don't see that for VB. I'm a C++ programmer. I haven't used VB except for few things recently, in a few years.
  13. lotharious

    ArrayList of Dictionary objects. Cannot find keys.

    without more code, and the fact I dont use dictionary objects for anything, it sounds like you have redeclared the object you are trying to access. So I suggest checking the scope of your variables and objects.
  14. lotharious

    Getting Autonumber from Access DB After Insert

    Thanks, 4 hours later I got it.
  15. lotharious

    New to VB - need to create an .exe

    Possible Easy fix for this would be to compile it as static instead of shared. Most computers don't have required libraries installed by default to run programs compiled as shared. However this doesn't sound like the problem. So, that being said, try compiling the program for release and using...
  16. lotharious

    Getting Autonumber from Access DB After Insert

    I am trying to get the autonumber result of a insert statement immediately after I do the statement. General code JobInsert.ExecuteNonQuery() transaction.Commit() dr = js.ExecuteReader() jobnumber = dr(0).ToString The commit does not do the commit fast enough though and my reader returns 0...
  17. lotharious

    INSERT INTO Access Database shows no changes in table

    Ok, in my program it was writing to the db file it made in the debug directory. So check to see if your is doing the same thing.
  18. lotharious

    vb 2005, Access DB mass data insertion example code needed

    ok, finally found my problem. it was using 2 version of my db. One it was reading data from for my forms, the other it was writing too.
  19. lotharious

    vb 2005, Access DB mass data insertion example code needed

    Bump. Does any else have any ideas? This should be my last major hurdle for my program.
  20. lotharious

    INSERT INTO Access Database shows no changes in table

    well, im having the same problem. I have not been able to figure out why it wont write to it. http://www.tek-tips.com/viewthread.cfm?qid=1425345&page=1

Part and Inventory Search

Back
Top