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

    class serialization problem.

    Ok. i'm having issues with serialization and i'm hopin someone can point me in the correct direction. I have a class called Profile <Serializable()> Public Class Profile ..... code........ methods.. blah blah.. End Class and i have a save profile button on a form that uses this code...
  2. jcisco

    datetime stamp in table not showing time in report.

    I have a small problem. inside my table i have a col called EndTime which is a datetime stamp. now then when i bring this table in my crystal report and drop the value on the report it will only show the date not the time. when i go into the Format field of that obj the only options that i have...
  3. jcisco

    finding 2 item in one database

    I have noticed that there is alot of posts on this subject but i'm unable to find a solution that fits my needs. I hope someone can help me :) --background-- I have two tables one that is called tblLocations, and the other is tblLocationsItemsJoin in my tblLocations I have a pkey of...
  4. jcisco

    formating help.

    I am trying to format my report for customer address. Now i found this thread that tells me how to do this but i'm having a small issue with it (thread767-560095). I am using crystal 8.5.0.218 and when i click on my text object and go to the format editor i do not see suppress blank lines, i...
  5. jcisco

    update problem

    I have a question I have a table that i want to be able to update by adding a ItemDescription to it. i have tried this update tbl_TempBillOFLading set ItemDescription = ( select tblItems.ItemDescription FROM tbl_TempBillOFLading INNER JOIN tblItems ON tbl_TempBillOFLading.ItemNumber =...
  6. jcisco

    Snort setup problem.

    I just installed Snort on my windows 2k server device. and i'm having a problem finding the alerts.ids I have searched the C dirve and it's not there, but it looks like one should be do i need to extract it or something? or do i just need to create a blank txt file and change the ext type to...
  7. jcisco

    Smart Device question.

    I'm looking into programing some test app's for a pocket pc. I have vs.net 2003 Ent. ed. and my question is where are the database sqlconnection, and adapter controls? they are not showing on my Toolbox like a windows or asp.net app. How do i add these? do i need a sdk for CE or something...
  8. jcisco

    DateDiff problem.

    I have a problem, and i'm not sure really how to slove it. I have a table that has a datetime stamp in it, and what i need to do is get that date time stamp and compair it to the current time. So I have this. --@time is the datetime stamp in the table. set @difference = (datediff(hour...
  9. jcisco

    Cursor help

    I have a big problem i'm hoping someone can help me. I have a Store procedure that is called by a trigger. and it procedure runs this code. declare md_cursor_1 CURSOR FOR SELECT PWMS..tblUsers.email, PWMS..tbl_EmailLookup.message FROM PWMS..tblUsers INNER JOIN PWMS..tbl_EmailLookup ON...
  10. jcisco

    on the fly grouping

    Question I'm creating a report that needs to be grouped by either a product line, or a product type. and what i'm thinking is this: I want to have a VB form that lets user click a button that says group by product type, and another one that says group by product line. Now is there a way for me...
  11. jcisco

    threading forms

    I'm having a problem with threading forms, and i was wondering if someone can point me in the right direction. I have two forms. 1 and 2. on form 1 i have, form2 has no added code. Private f As Form2 Private thrd As Threading.Thread Private Sub Form1_Load(ByVal sender As System.Object, ByVal...
  12. jcisco

    stored procedure null problem

    I'm having a problem passing in null values to a stored procedure. can someone please point out where i'm going wrong with this. --Procedure def CREATE PROCEDURE sp_rptbl_Fill @inDate SmallDateTime, @sDate smalldateTime, @eDate smalldateTime --VB solution SqlConnection1.Open()...
  13. jcisco

    query help! please.

    Can someone please help me with this query. I have a table that holds Reporting data for items sold. Fields in this table are like CompanyCode, InvoiceDate, CustomerNum, ItemNum, etc.. Now my question is this. I need to write a query that filters on the itemnumbers. An example of this...
  14. jcisco

    odd question I know.

    Here is kinda a odd question, but does have a VS.NET Pro 60 Eval key? I looked everywhere for mine and i can't seem to find it. The only reason why i'm asking is that my new job is wanting me to demo some .NET stuff to them before they make a switch. -------------- :)
  15. jcisco

    ado problem..

    Ok true believers, kudos for anyone that can solve this riddle. Background: Using the adodb ver 7.0.3300.0 .NET object ref. Using foxpro database tables in a local directory. Using this code: Private Sub adoTest() 'create CNN and RecSet Dim cnn As New ADODB.Connection()...
  16. jcisco

    Interop.DAO.dll Help! testing today.

    I'm having some Interop problems. I really need someone's help on this. i have a form with these ref's: Interop.DAO, System,System.Data,System.Drawing,System.windows.forms,System.XML. All that's on this form is a button and when the button is clicked it opens up a fox pro database and gets the...
  17. jcisco

    freezing form

    I have a modual that uses a sub main, and creates my main form. loads just fine. Now the main form calls the mod and does stuff (alot of stuff). Now the problem is my form freezes up until the processes are complete is there a way to prevent this from happing? In vb 6 there was doevents()...
  18. jcisco

    can someone point me in the right d

    can someone point me in the right direction here. i have a very simple asp.net web form. The form has a label, a button, and a dropdown list that fills with words once the button is clicked. after list fills the user can click on a item in the list and it will do a auto post back to the...
  19. jcisco

    I'm in need of some help. I'm play

    I'm in need of some help. I'm playing with the pocket PC emulator on a windows xp pro machine. What i'm trying to do is have my vb.net application on the emulator use a web service located on the same machine. And this is not working i keep getting errors. Now my question is do i need to...
  20. jcisco

    Table question

    i'm coding a forum (just for fun learning sql) and i have a question about tables. I have a table called groups and the table contains two fields groupKey (pkey), and title. In the title field i have: Java, Vb, Vb.NET, and C# Then in another table called Topic_headings I will store all the...

Part and Inventory Search

Back
Top