Search:

Type: Posts; User: Quizton

Page 1 of 7 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    5
    Views
    860

    Re: Filtering sqlite properly

    well got that figured out also it seems a bit nutty but it works perfect.



    string someString = test1;

    WHERE Customer='"+someString+"' "
  2. Replies
    5
    Views
    860

    Re: Filtering sqlite properly

    How would someone add a string to that



    string someString = test1;

    WHERE Customer='someString' "
  3. Replies
    5
    Views
    860

    Re: Filtering sqlite properly

    well I added ' to my statement and it works now. Ill add the working version in case someone else has the same question.
    and thanks for the quick reply gnome .. some times some reassurance that it...
  4. Replies
    5
    Views
    860

    [RESOLVED] Filtering sqlite properly

    I have a error when trying to filter a specific customer balance I get the total of all balances pretty easily just pulling the info like so



    using (var db = new SQLiteWinRT.Database(
    ...
  5. Replies
    2
    Views
    1,493

    Re: Loading a saved sqlite db from skydrive

    Is there something I am supposed to do to the Storage file to be able to upload to skydrive?

    Its sqlitedb .. text files go to and from skydrive no problem, pictures no problem also but for some...
  6. Replies
    2
    Views
    1,493

    Loading a saved sqlite db from skydrive

    Hello and great to see c# here ;)
    I've missed these forums since moving to c#

    I re-edited this post cause I am now using the SkyDriveFileHandler class instead of using my own


    private async...
  7. Re: [VS Ultimate 2012] Can't get "Interactive" tooltips.

    Intellisense

    I believe I seen the c++ docs and stuff downloading just now on my new version ill try a c++ app and see if mine works
  8. Replies
    2
    Views
    10,880

    Re: Xaml question - Metro App

    hello,

    i didnt see a click event in the xaml .. maybe throw in a box and add Click event and do onmouseup for action in c#

    im not very advanced as i just began using xaml too but noticed its...
  9. Replies
    3
    Views
    3,226

    Re: Mono for android.Anyone used it?

    Love hearing feedback to mono as I am debating on buying it right now.. I think it will increase the size around 14 mb I think but it wont need .netframework to run it if im correct? but also can...
  10. Re: I'm starting over. Which language should I choose?

    C# is pretty nice
  11. Replies
    3
    Views
    623

    Re: Simple numeric find

    perfect thanks alot ;)

    :thumbs:
  12. Replies
    3
    Views
    623

    [RESOLVED] Simple numeric find

    :wave:
    Hello, I was wondering what the command for activating a number or letter on the keyboard.

    if i programmed it to say "Hello World"
    Id like it to be as if i just typed Hello World?
    ...
  13. Replies
    1
    Views
    552

    [RESOLVED] Establishing A Domain Name

    Is it possible to create your own domain name or host your own webpage without outside help. If I go with a 8block static Ip ?
  14. Replies
    5
    Views
    5,180

    Re: [SHARING] Auto Completing ComboBox without API

    Great code Mike
    can you also do this with listing a recorset out of a table in a db?
  15. Replies
    4
    Views
    685

    Re: Data grid

    just trying to space the columns in the grid to fit the rs's in my db table

    to tell you the truth, it seems the datagrid isn't quite what I expected, I am looking for a grid that has the column...
  16. Replies
    9
    Views
    857

    Re: add two large numbers

    NP, glad it works for ya
    please resolve post by clicking on threadtools


    ___________________________________________________________________
    please rate my post as helpful :thumb: :lol: your...
  17. Re: difference between server side & client side recordset

    The real differences are on the server-side. There, the columns of a DTC data
    grid can be bound to a database’s recordset object

    You have a gateway on the server side that also encodes and...
  18. Replies
    9
    Views
    857

    Re: add two large numbers

    did that work for ya binil?
  19. Replies
    9
    Views
    857

    Re: add two large numbers

    text3.text = Format(Val(text1.Text) * Val(text2.Text), "##.00")



    _____________________________________________________________________
    Please rate if this works :thumb:
  20. Replies
    9
    Views
    857

    Re: add two large numbers

    I thought multiply was * in place of + ;)

    or format , ##.00
  21. Replies
    4
    Views
    685

    Re: Data grid

    each column? I must be missin something it seems I can only set 1 atm?

    oh and when I reset it the data that is usaly there disapeares lol ;)
    any suggestions on the missing data ? :lol:
  22. Replies
    4
    Views
    685

    [RESOLVED] Data grid

    tryin to figure out why this is invalid procedure
    Im just trying to format the spacing in between the data grides columns?

    Private Sub Form_Load()
    txtDate.Text = Date
    With Adodc1
    ...
  23. Re: Question about creation of a DHTML

    Thanks for the help
    Ill take a crash course on codeing html and see what I can do :thumb:
  24. Re: Question about creation of a DHTML

    thanks for the replie

    I am however very new to this , I am looking at the link you posted to check into a few diff things as well

    But would something like Publisher 2002 be ok as well
    could...
  25. [RESOLVED] Question about creation of a DHTML

    I am using visual basic 6.0
    and was wondering if the DHTML is used to creat a webpage

    I have recently got a 25mb storage for my business to run a web page and was wondering if I could use this...
  26. Replies
    12
    Views
    1,093

    Re: Card printing

    :blush: yeah I went to fast as well I should have been using labels with transparent set :blush:
    I edited the original post

    Nice way to do it as well guyvdn :afrog:
  27. Replies
    12
    Views
    1,093

    Re: Card printing

    :wave:
    If youd like to randomly generate the numbers here is a simple sample using a commandbutton1 and a label label1


    Private Sub Command1_Click()
    label1.caption = Int(Rnd * 50)'may change...
  28. Re: subtracting the highlighted record in msflexgrid

    :bigyello:
    hey thanks again SI
    it works perfectly now, I wasnt using VAL is why It didnt work sooner :blush: it will work even on reload I had to change the rows to minus 1 of the actual rows in...
  29. Re: subtracting the highlighted record in msflexgrid

    is there a way to select the format were total amount is in the grid
    because it should subtract it then delete it since it will delete on focus I should be able to subtract on focus as well?

    I...
  30. Re: subtracting the highlighted record in msflexgrid

    Private Sub cmdRemoveEntry_Click()
    With Adodc1.Recordset
    .Move (MSHFlexGrid1.Row - 1)
    .Delete
    .Requery
    End With
    Adodc1.Refresh
    Set...
  31. Re: subtracting the highlighted record in msflexgrid

    Ive been trying to get this to work and it seems I cant use it in the math formula ?
    Ill keep trying :thumb:
    thanks for the replies
  32. Re: subtracting the highlighted record in msflexgrid

    is there a way to just select the highlighted record?
    or do you have to choose the row and column?
  33. Re: subtracting the highlighted record in msflexgrid

    Format(Val(txtEstimateTotal.Text) - rs("TotalAmount"), "##.00")

    the txtestimatetotal needs to subtract the highlighted total in the grid instead of the rs("totalamount")

    I just dont know how to...
  34. Re: subtracting the highlighted record in msflexgrid

    any suggestions would be greatly appreciated :thumb:
  35. [RESOLVED] subtracting the highlighted record in msflexgrid

    :bigyello:
    I am having trouble subtracting the highlighted record in the msflexgrid
    it seems to be subtracting the record in the listbox instead of the highlighted one in the msflexgrid?
    ...
  36. Re: Having Trouble adding a totalamount

    :cool:
    thanks Al and welcome to vbForums :afrog:

    txtCompleteTotal.Text = Format(Val(txtTotalAmount.Text) + Val(txtCompleteTotal.Text), "##.00")

    works great :thumb:

    strange to me that i...
  37. Re: Having Trouble adding a totalamount

    tax rate was a percentage so txtTaxrate /100 * totalprice + totalprice is how I did that
    the code you seen was to easily get the dollar amount of the total tax * the quantity of the service

    I...
  38. [RESOLVED] Having Trouble adding a totalamount

    :bigyello:
    here is what I have so far
    I have a textbox that will add and display the total amount of a service when I click on the services listbox(services a completly different db and code) then...
  39. Re: formatting 0.00 during runtime'

    thanks alot for the replies
    thread resolved :thumb: ;)
  40. [RESOLVED] formatting 0.00 during runtime'

    :bigyello:
    heya everyone,
    I have a piece in my project that will generate tax and then takes the tax and /100 * ItemPrice + itemprice to get a total amount and for the most part it works ok but if...
Results 1 to 40 of 249
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width