Search:

Type: Posts; User: jdavison

Page 1 of 9 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    0
    Views
    276

    Getting Data into SQL Server

    Need some help....I am trying to insert a reather long peice of text...couple pages....Into Sql Server 2000. Once it gets so long it refuse to accept it. I have used varchar set to max and text. I...
  2. Replies
    3
    Views
    366

    I'm not getting an error it simply refuses to set...

    I'm not getting an error it simply refuses to set the absolutepage to anything it just stays at one. the rs returns a page count of over 100 so the page and data should be there.
  3. Replies
    3
    Views
    366

    Recordset paging

    I am attempting to page through a recordset but it wount allow me to set the absolutepage. Any ideas?
  4. Thread: SQL Problems

    by jdavison
    Replies
    2
    Views
    399

    I'll work on a way around that then. Thanks

    I'll work on a way around that then. Thanks
  5. Thread: SQL Problems

    by jdavison
    Replies
    2
    Views
    399

    SQL Problems

    I am trying to run this sql statement:


    SELECT min(distinct(a.id)) FROM TBL_NOTEBOOK AS a WHERE Item_Type=1
    AND a.id<>(SELECT d.id FROM tbl_notebook as d inner join tbl_checkout
    as e on...
  6. Replies
    2
    Views
    392

    Try just this. Of course I am assuming rsholding...

    Try just this. Of course I am assuming rsholding is you recordset.

    RSHolding("SubSectionID")
  7. Thread: Edit

    by jdavison
    Replies
    4
    Views
    306

    I think I made the assumption you were trying to...

    I think I made the assumption you were trying to do this in asp. Is that wrong?
  8. Thread: Edit

    by jdavison
    Replies
    4
    Views
    306

    IF i'm understanding you right, You could create...

    IF i'm understanding you right, You could create a form for each row. with a submit. Then you would be able to submit each individual row independently from the other and then just update it
  9. Did you set the odbc connection up?

    Did you set the odbc connection up?
  10. Replies
    4
    Views
    685

    Cool, thanks a bunch:D

    Cool, thanks a bunch:D
  11. Replies
    4
    Views
    685

    Do you have code for that. Dont have a win2k...

    Do you have code for that. Dont have a win2k machine to build the api and as usual msdn doesn't have any useful code that I have found.
    Also what about the getdefaultprinter and setdefaultprinter...
  12. Replies
    4
    Views
    685

    default printer

    Does anybody have the code for getting the default printer and setting it in windows 2000?
  13. Replies
    1
    Views
    414

    Alter table in access

    Can somebody figure out what is wrong with this sql statement for access97. It doesnt seem to acknowledge the default value i set for the column I am adding.


    ALTER TABLE Tbl_Partners ADD...
  14. Replies
    0
    Views
    600

    Writing to temporary internet files

    Is there a trick to writing something in the temporary internet files folder in windows 95? Is there a way to do this through vb?
  15. Thread: Word Object

    by jdavison
    Replies
    4
    Views
    555

    thanks

    thanks
  16. Thread: Word Object

    by jdavison
    Replies
    4
    Views
    555

    But then the macro will only be on my machine...

    But then the macro will only be on my machine wouldnt it? I need to deploy this to multiple machines.
  17. Thread: Word Object

    by jdavison
    Replies
    4
    Views
    555

    Anybody know how to set the margin in word...

    Anybody know how to set the margin in word through the word.application object in vb?
  18. Replies
    5
    Views
    422

    That worked, thanks

    That worked, thanks
  19. Replies
    5
    Views
    422

    Tried that earlier and it still ignored it plus...

    Tried that earlier and it still ignored it plus it doesnt give me the right results. For some reason it just wants to completely ignor it. Here is the whole thing.


    SELECT
    clname1,
    clnum,...
  20. Replies
    5
    Views
    422

    I am running a stored procedure on sql server 7. ...

    I am running a stored procedure on sql server 7. It runs fine so far except its ignoring one of the where clauses, a.mstatus='OP'. any idea why from the code below?



    WHERE
    b.clstatus='C' ...
  21. Thread: removing html

    by jdavison
    Replies
    5
    Views
    464

    I could but the I would have to write a rplace...

    I could but the I would have to write a rplace for every html tag and then parse the text looking for hrefs,img,form... since the tags vary. I was hoping there was a better way to do it
  22. Replies
    5
    Views
    10,082

    could always try: enter...

    could always try:


    <% if 1=2 then %>

    enter blah here

    <% end if %>
  23. Replies
    2
    Views
    525

    You would have to determine in your code whether...

    You would have to determine in your code whether they have admin right. There is no server variables that contain that information. How you do that is upto you. you could set up a admin table and...
  24. Thread: removing html

    by jdavison
    Replies
    5
    Views
    464

    Anybody know how to go about removing all html...

    Anybody know how to go about removing all html from user entered text?
  25. Replies
    0
    Views
    288

    Anybody know if there is a way to access the data...

    Anybody know if there is a way to access the data in a table on another database in a stored procedure. I would like to try and do this so I can reference a users name from another database by the...
  26. Replies
    2
    Views
    362

    Its the safe code from the other thread. I...

    Its the safe code from the other thread. I copied it to a class module and the compiler had a problem with the public const. I just cut thepublic of and it compiled fine. I call to readregeistry...
  27. Replies
    1
    Views
    292

    = might be part of it

    <>= might be part of it
  28. Replies
    2
    Views
    362

    Is there any problems running the api calls to...

    Is there any problems running the api calls to the registry through a dll. I took the code from this thread:

    http://forums.vb-world.net/showthread.php?s=&threadid=59606

    i moved the code into a...
  29. Thread: Registry

    by jdavison
    Replies
    6
    Views
    693

    Figured I would haved to use apis, thanks for the...

    Figured I would haved to use apis, thanks for the code
  30. Thread: Registry

    by jdavison
    Replies
    6
    Views
    693

    Already tried it, there is no app name and that...

    Already tried it, there is no app name and that is not optional. All i have is the key
  31. Thread: Registry

    by jdavison
    Replies
    6
    Views
    693

    Im trying to get data out of the...

    Im trying to get data out of the hkey_current_user. We set a key up under there called logon with a couple settings. now how do i get that info back out?
  32. Replies
    2
    Views
    301

    I think its just cool that they figured out how...

    I think its just cool that they figured out how to do it now. May give linux a real chance now in the app area.
  33. Replies
    6
    Views
    631

    yep, wished i could convince them of that here

    yep, wished i could convince them of that here
  34. Replies
    6
    Views
    631

    Not as far as i know. SQL server runs as a...

    Not as far as i know. SQL server runs as a server so it respond to the request, access has to be connected to directly. Not sure if odbc would allow for that or not since i have never tried it
  35. Replies
    75
    Views
    2,009

    there are no better rps than chronotrigger:)

    there are no better rps than chronotrigger:)
  36. Replies
    2
    Views
    334

    that should be it thanks:)

    that should be it thanks:)
  37. Replies
    75
    Views
    2,009

    My turn: Best rp ever: ChronoTrigger!!! cant...

    My turn:

    Best rp ever: ChronoTrigger!!! cant believe it wasnt mentioned yet

    best PSX Final Fantasy7
    8 had better graphic but the story line and play wasnt as good

    PC stategy...
  38. Thread: html editor

    by jdavison
    Replies
    11
    Views
    576

    interdevs not too bad either. Doesnt put all...

    interdevs not too bad either. Doesnt put all that crap in that frontpage does
  39. Replies
    2
    Views
    334

    i have a popup window on my page. when they...

    i have a popup window on my page. when they click on a link i want the page to open in the main window, not the popup. Anybody remember how to do this?
  40. Replies
    9
    Views
    535

    true but he will get exposed and experience with...

    true but he will get exposed and experience with it anyway. Asp will get him started quicker since its in more demand. Then he can learn xml in the workforce. Its simple enough to pick up and...
Results 1 to 40 of 355
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width